This commit is contained in:
Jaco
2021-06-26 11:06:47 +03:00
committed by GitHub
parent 120fe69329
commit 9393bb9b3f
14 changed files with 144 additions and 131 deletions
+13
View File
@@ -1,5 +1,18 @@
# CHANGELOG
## 0.82.1, Jun 26, 2021
Contributed:
- Adjust Qr address imports (Thanks to https://github.com/joelamouche)
- Bubble errors on Qr scanning (Thanks to https://github.com/joelamouche)
Changes:
- Fix `keyring.setSS58Format` to correctly set for prefix 0
- Updated to `@polkadot/{hw-ledger, keyring, util, util-crypto}` 6.10.1
## 0.81.1, Jun 20, 2021
Contributed:
+1 -1
View File
@@ -43,5 +43,5 @@
"webpack-cli": "^3.3.12",
"webpack-serve": "^3.2.0"
},
"version": "0.81.2-5"
"version": "0.82.0"
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/example-react",
"version": "0.81.2-5",
"version": "0.82.0",
"description": "A very basic example with ui-* & react-* packages",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/example-vue",
"version": "0.81.2-5",
"version": "0.82.0",
"description": "A very basic example with ui-* & vue-* packages",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "exampleReactNative",
"version": "0.81.2-5",
"version": "0.82.0",
"private": true,
"scripts": {
"copy-workspace-packages": "yarn copy-identicon && yarn copy-ui-shared",
@@ -12,12 +12,12 @@
"test": "jest"
},
"dependencies": {
"@polkadot/keyring": "^6.9.2-11",
"@polkadot/reactnative-identicon": "0.81.2-5",
"@polkadot/ui-keyring": "0.81.2-5",
"@polkadot/ui-settings": "0.81.2-5",
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/keyring": "^6.10.1",
"@polkadot/reactnative-identicon": "0.82.0",
"@polkadot/ui-keyring": "0.82.0",
"@polkadot/ui-settings": "0.82.0",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"@react-native-community/async-storage": "^1.12.1",
"fast-text-encoding": "^1.0.3",
"get-yarn-workspaces": "^1.0.2",
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/react-identicon",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"main": "index.js",
@@ -13,11 +13,11 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/keyring": "^6.9.2-11",
"@polkadot/ui-settings": "0.81.2-5",
"@polkadot/ui-shared": "0.81.2-5",
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/keyring": "^6.10.1",
"@polkadot/ui-settings": "0.82.0",
"@polkadot/ui-shared": "0.82.0",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"color": "^3.1.3",
"ethereum-blockies-base64": "^1.0.2",
"jdenticon": "3.1.0",
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/react-qr",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Generates and reads QR codes",
"main": "index.js",
@@ -10,8 +10,8 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"qrcode-generator": "^1.4.4",
"react-qr-reader": "^2.2.1",
"styled-components": "^5.3.0"
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/reactnative-identicon",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"main": "index.js",
@@ -13,9 +13,9 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/ui-shared": "0.81.2-5",
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/ui-shared": "0.82.0",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"react-native-svg": "^12.1.1"
},
"peerDependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-assets",
"version": "0.81.2-5",
"version": "0.82.0",
"description": "Static assets shared accross projects",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-keyring",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"main": "index.js",
"sideEffects": [
@@ -14,11 +14,11 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/hw-ledger": "^6.9.2-11",
"@polkadot/keyring": "^6.9.2-11",
"@polkadot/ui-settings": "0.81.2-5",
"@polkadot/util": "^6.9.2-11",
"@polkadot/x-rxjs": "^6.9.2-11",
"@polkadot/hw-ledger": "^6.10.1",
"@polkadot/keyring": "^6.10.1",
"@polkadot/ui-settings": "0.82.0",
"@polkadot/util": "^6.10.1",
"@polkadot/x-rxjs": "^6.10.1",
"mkdirp": "^1.0.4",
"store": "^2.0.12"
},
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-settings",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Manages app settings",
"main": "index.js",
@@ -10,8 +10,8 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/networks": "^6.9.2-11",
"@polkadot/util": "^6.9.2-11",
"@polkadot/networks": "^6.10.1",
"@polkadot/util": "^6.10.1",
"eventemitter3": "^4.0.7",
"store": "^2.0.12"
},
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/ui-shared",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Shared logic that is usable accross all frameworks-specific areas",
"main": "index.js",
@@ -17,8 +17,8 @@
"@polkadot/util-crypto": "*"
},
"devDependencies": {
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"@types/color": "^3.0.1",
"@types/xmlserializer": "^0.6.2"
}
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/vue-identicon",
"version": "0.81.2-5",
"version": "0.82.0",
"type": "module",
"description": "Renders an SVG picture representing an address",
"author": "Jaco Greeff <jacogr@gmail.com>",
@@ -13,9 +13,9 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@polkadot/ui-shared": "0.81.2-5",
"@polkadot/util": "^6.9.2-11",
"@polkadot/util-crypto": "^6.9.2-11",
"@polkadot/ui-shared": "0.82.0",
"@polkadot/util": "^6.10.1",
"@polkadot/util-crypto": "^6.10.1",
"jdenticon": "3.1.0"
},
"peerDependencies": {
+91 -91
View File
@@ -2283,9 +2283,9 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/hw-ledger-transports@npm:6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/hw-ledger-transports@npm:6.9.2-11"
"@polkadot/hw-ledger-transports@npm:6.10.1":
version: 6.10.1
resolution: "@polkadot/hw-ledger-transports@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@ledgerhq/hw-transport": ^6.0.2
@@ -2295,42 +2295,42 @@ __metadata:
dependenciesMeta:
"@ledgerhq/hw-transport-node-hid-singleton":
optional: true
checksum: f902035d9562faaf330c99810466b71427e241bbc302cf56d19f936c7229533ff0e7034044649573f0792833b66889e63dc537d9e8fdd535aa8425504c80039f
checksum: 88c065414b7e0b8f011f25fa49ba10755ea5c08c8cd9b37da711f04a4bc24e5ede6d8cef2b2553097bb1c8bb1455debc934d76bd4593bbe57b1da55a82b80c90
languageName: node
linkType: hard
"@polkadot/hw-ledger@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/hw-ledger@npm:6.9.2-11"
"@polkadot/hw-ledger@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/hw-ledger@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/hw-ledger-transports": 6.9.2-11
"@polkadot/util": ^6.9.2-11
"@polkadot/hw-ledger-transports": 6.10.1
"@polkadot/util": ^6.10.1
"@zondax/ledger-substrate": ^0.15.0
checksum: aee28d2d4391fc9838dca41653532c20fbf740e14b8e634a00b63cf0bf33337e1fad253581d7e3dd9d6737ae4c9bea770235279ee7b3d0dc5d8520a48ebe93bd
checksum: 5319082326a059db5ba6fb8e476b8d8c99389a370affdf4e125e38e624362c8868db202b944872efb02427241973cade2c1555435201111fd2e176ddc9198e52
languageName: node
linkType: hard
"@polkadot/keyring@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/keyring@npm:6.9.2-11"
"@polkadot/keyring@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/keyring@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/util": 6.9.2-11
"@polkadot/util-crypto": 6.9.2-11
"@polkadot/util": 6.10.1
"@polkadot/util-crypto": 6.10.1
peerDependencies:
"@polkadot/util": 6.9.2-11
"@polkadot/util-crypto": 6.9.2-11
checksum: 999f0aa8a0259e24385aedf4326d3aa4ba4aa9f37f9779b425c34e73b96bb8107125810c3eab2c45bac4fd7377de5faa1eb3a618f2848c993d175e6f1edaff1a
"@polkadot/util": 6.10.1
"@polkadot/util-crypto": 6.10.1
checksum: b225d8e33738b82dff74c348f685520009ab000586a6462a8add0d6395e1a7cb7e069983e3836289fd3d62d0037c14d0da459933117ecbd858b61809dc4ae9d6
languageName: node
linkType: hard
"@polkadot/networks@npm:6.9.2-11, @polkadot/networks@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/networks@npm:6.9.2-11"
"@polkadot/networks@npm:6.10.1, @polkadot/networks@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/networks@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
checksum: 128570c25753625a9f2182c81afdfe0965564577599f004fb2ac52aab741a6e44406abdb63156d0041c8b840856bb743349195cded1ec9923f31911afc54634a
checksum: 4633182c13def8e9cc1b477b721b18341b596c4cbd3864ba81d0a6c49f0b7a1c666502b7108a20c6f0579ec4059e995940501c1ab998209a332a3116c0cf3257
languageName: node
linkType: hard
@@ -2339,11 +2339,11 @@ __metadata:
resolution: "@polkadot/react-identicon@workspace:packages/react-identicon"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/keyring": ^6.9.2-11
"@polkadot/ui-settings": 0.81.2-5
"@polkadot/ui-shared": 0.81.2-5
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/keyring": ^6.10.1
"@polkadot/ui-settings": 0.82.0
"@polkadot/ui-shared": 0.82.0
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
"@types/react-copy-to-clipboard": ^5.0.0
"@types/react-dom": ^17.0.8
"@types/styled-components": ^5.1.10
@@ -2369,8 +2369,8 @@ __metadata:
resolution: "@polkadot/react-qr@workspace:packages/react-qr"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
"@types/react-qr-reader": ^2.1.3
"@types/styled-components": ^5.1.10
qrcode-generator: ^1.4.4
@@ -2385,14 +2385,14 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/reactnative-identicon@0.81.2-5, @polkadot/reactnative-identicon@workspace:packages/reactnative-identicon":
"@polkadot/reactnative-identicon@0.82.0, @polkadot/reactnative-identicon@workspace:packages/reactnative-identicon":
version: 0.0.0-use.local
resolution: "@polkadot/reactnative-identicon@workspace:packages/reactnative-identicon"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/ui-shared": 0.81.2-5
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/ui-shared": 0.82.0
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
"@types/react-native": ^0.64.10
react-native-svg: ^12.1.1
peerDependencies:
@@ -2420,16 +2420,16 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/ui-keyring@0.81.2-5, @polkadot/ui-keyring@workspace:packages/ui-keyring":
"@polkadot/ui-keyring@0.82.0, @polkadot/ui-keyring@workspace:packages/ui-keyring":
version: 0.0.0-use.local
resolution: "@polkadot/ui-keyring@workspace:packages/ui-keyring"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/hw-ledger": ^6.9.2-11
"@polkadot/keyring": ^6.9.2-11
"@polkadot/ui-settings": 0.81.2-5
"@polkadot/util": ^6.9.2-11
"@polkadot/x-rxjs": ^6.9.2-11
"@polkadot/hw-ledger": ^6.10.1
"@polkadot/keyring": ^6.10.1
"@polkadot/ui-settings": 0.82.0
"@polkadot/util": ^6.10.1
"@polkadot/x-rxjs": ^6.10.1
"@types/mkdirp": ^1.0.1
"@types/store": ^2.0.2
mkdirp: ^1.0.4
@@ -2441,13 +2441,13 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/ui-settings@0.81.2-5, @polkadot/ui-settings@workspace:packages/ui-settings":
"@polkadot/ui-settings@0.82.0, @polkadot/ui-settings@workspace:packages/ui-settings":
version: 0.0.0-use.local
resolution: "@polkadot/ui-settings@workspace:packages/ui-settings"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/networks": ^6.9.2-11
"@polkadot/util": ^6.9.2-11
"@polkadot/networks": ^6.10.1
"@polkadot/util": ^6.10.1
"@types/store": ^2.0.2
eventemitter3: ^4.0.7
store: ^2.0.12
@@ -2457,13 +2457,13 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/ui-shared@0.81.2-5, @polkadot/ui-shared@workspace:packages/ui-shared":
"@polkadot/ui-shared@0.82.0, @polkadot/ui-shared@workspace:packages/ui-shared":
version: 0.0.0-use.local
resolution: "@polkadot/ui-shared@workspace:packages/ui-shared"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
"@types/color": ^3.0.1
"@types/xmlserializer": ^0.6.2
color: ^3.1.3
@@ -2473,15 +2473,15 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/util-crypto@npm:6.9.2-11, @polkadot/util-crypto@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/util-crypto@npm:6.9.2-11"
"@polkadot/util-crypto@npm:6.10.1, @polkadot/util-crypto@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/util-crypto@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/networks": 6.9.2-11
"@polkadot/util": 6.9.2-11
"@polkadot/networks": 6.10.1
"@polkadot/util": 6.10.1
"@polkadot/wasm-crypto": ^4.0.2
"@polkadot/x-randomvalues": 6.9.2-11
"@polkadot/x-randomvalues": 6.10.1
base-x: ^3.0.8
base64-js: ^1.5.1
blakejs: ^1.1.1
@@ -2494,23 +2494,23 @@ __metadata:
tweetnacl: ^1.0.3
xxhashjs: ^0.2.2
peerDependencies:
"@polkadot/util": 6.9.2-11
checksum: d6934f255f8d5a735077d97461552d425820f54828f690b6f77c3bf790d190e5bb2a1400c607de9fab2f24b1cad90e21aff5e0ac5d59478efe79474795fe9760
"@polkadot/util": 6.10.1
checksum: 2b43d6090c8bed0ff638a951a9d450b6317c0906c65d6aac607019675ddb88bae43614773980432e3da61bf49856009d3c3405ca7f8b2d83391412db78519c12
languageName: node
linkType: hard
"@polkadot/util@npm:6.9.2-11, @polkadot/util@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/util@npm:6.9.2-11"
"@polkadot/util@npm:6.10.1, @polkadot/util@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/util@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/x-textdecoder": 6.9.2-11
"@polkadot/x-textencoder": 6.9.2-11
"@polkadot/x-textdecoder": 6.10.1
"@polkadot/x-textencoder": 6.10.1
"@types/bn.js": ^4.11.6
bn.js: ^4.11.9
camelcase: ^5.3.1
ip-regex: ^4.3.0
checksum: aee6faa574a83ff167784ce48294278d124a23c483b726c5e22209297c5c6dcdc69a8ef80445602ad2e68206343e7d8e1671301d23de96b1bc5ff68d3797fe2c
checksum: 743aaf87e1df8aab313a64a3dc46e67692a21bd3d02e611b918817cc74bbd6705e217cea5c5f786d9c753b656a595b2ad4d26d1b04fc922dcf6271fc6990b5cf
languageName: node
linkType: hard
@@ -2519,9 +2519,9 @@ __metadata:
resolution: "@polkadot/vue-identicon@workspace:packages/vue-identicon"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/ui-shared": 0.81.2-5
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/ui-shared": 0.82.0
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
jdenticon: 3.1.0
vue: ^2.6.14
peerDependencies:
@@ -2563,54 +2563,54 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/x-global@npm:6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/x-global@npm:6.9.2-11"
"@polkadot/x-global@npm:6.10.1":
version: 6.10.1
resolution: "@polkadot/x-global@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@types/node-fetch": ^2.5.10
node-fetch: ^2.6.1
checksum: 874e64769a035e9baf8562ad0322954ff0f451dcbe5925837f3a37c03f8152d722e1096aece16b06068e5b3364a891792d24ac77ec1a61fe7dd406a2376aae54
checksum: 8f07dfe18f902cc329a7fce2721dce4c59e041b936f4f16fe3c2283c8dc3385d83218c635febb8cdbb6a4c66b0c81677b53cbf20967dd7c872001606af968306
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/x-randomvalues@npm:6.9.2-11"
"@polkadot/x-randomvalues@npm:6.10.1":
version: 6.10.1
resolution: "@polkadot/x-randomvalues@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/x-global": 6.9.2-11
checksum: fc0a0003694e890807dda75fcbd3cc9c5f53fe4dd31fd3477245a3c4dbe49b34bf46ec2b3da6c9fce854b408d4c2ea4e72c6c63659d423becf3bee062a3367bc
"@polkadot/x-global": 6.10.1
checksum: 51c0b1d6db9616a2122151de4478921506ab023f75ddbd775da7501b70f8af118a44d5624484ead8b71451d804e5ebde2747f77595b40e66e5760e1006baa505
languageName: node
linkType: hard
"@polkadot/x-rxjs@npm:^6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/x-rxjs@npm:6.9.2-11"
"@polkadot/x-rxjs@npm:^6.10.1":
version: 6.10.1
resolution: "@polkadot/x-rxjs@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
rxjs: ^6.6.7
checksum: 932958b17b41d40ccfca33cebf2cb78595d5dda2b0544a0f19cdf5375aa0d9318bb216edefa260181f93d935d0a9b4060349198d8f9f438b39e75faf0438fa65
checksum: d549ca184388823498c7330c3801ba2f1e3bdbe38651d10aa676ddab9c5ce31f3bc7523da74562dd8946614be62e9057559ff8ba49ee14958247fc9df5a08a72
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/x-textdecoder@npm:6.9.2-11"
"@polkadot/x-textdecoder@npm:6.10.1":
version: 6.10.1
resolution: "@polkadot/x-textdecoder@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/x-global": 6.9.2-11
checksum: 62979cd506911c9e478fd0ecba5ea63f50b729dadc49de220cd0ac11bba9ddaf92ef9279451ba616851730b798f0730acb554b253b91915fb86482a0c94c01e2
"@polkadot/x-global": 6.10.1
checksum: 788622e3130d669eb39dff768c869c081cf5f832e40388689a61570e1a529711f62db01ab6ece607d7527279911758c02b09971bcc44fe3922bfe8b6752dc348
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:6.9.2-11":
version: 6.9.2-11
resolution: "@polkadot/x-textencoder@npm:6.9.2-11"
"@polkadot/x-textencoder@npm:6.10.1":
version: 6.10.1
resolution: "@polkadot/x-textencoder@npm:6.10.1"
dependencies:
"@babel/runtime": ^7.14.6
"@polkadot/x-global": 6.9.2-11
checksum: 9531a0b52734d033b78a1c7a0892dadd61a5eb11529f8ab4205061788f141083bd631a21d0fdd85e4249c3ad92812dbc3a016368b53ad95dadc3ca7e5ea69fef
"@polkadot/x-global": 6.10.1
checksum: b78050528ba6f7ee331caf9c0ff8490b4e7504410c2cceca5fac4941626f97819da9804eae5a4aa79bf9a7186473468923c959561e695c9cb9a226e5042015a2
languageName: node
linkType: hard
@@ -7182,12 +7182,12 @@ __metadata:
dependencies:
"@babel/core": ^7.14.6
"@babel/runtime": ^7.14.6
"@polkadot/keyring": ^6.9.2-11
"@polkadot/reactnative-identicon": 0.81.2-5
"@polkadot/ui-keyring": 0.81.2-5
"@polkadot/ui-settings": 0.81.2-5
"@polkadot/util": ^6.9.2-11
"@polkadot/util-crypto": ^6.9.2-11
"@polkadot/keyring": ^6.10.1
"@polkadot/reactnative-identicon": 0.82.0
"@polkadot/ui-keyring": 0.82.0
"@polkadot/ui-settings": 0.82.0
"@polkadot/util": ^6.10.1
"@polkadot/util-crypto": ^6.10.1
"@react-native-community/async-storage": ^1.12.1
"@react-native-community/cli-platform-ios": ^5.0.1
"@types/react-test-renderer": 17.0.1