This commit is contained in:
Jaco Greeff
2020-12-18 11:50:32 +01:00
parent 3746b608b2
commit f9428ee6d2
16 changed files with 163 additions and 153 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@polkadot/dev": "^0.61.8",
"@polkadot/dev": "^0.61.11",
"@polkadot/ts": "^0.3.58",
"@types/jest": "^26.0.19",
"babel-plugin-transform-vue-template": "^0.4.2",
+3 -3
View File
@@ -12,12 +12,12 @@
"test": "jest"
},
"dependencies": {
"@polkadot/keyring": "^5.0.2-6",
"@polkadot/keyring": "^5.0.2-8",
"@polkadot/reactnative-identicon": "0.63.2-2",
"@polkadot/ui-keyring": "0.63.2-2",
"@polkadot/ui-settings": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"@react-native-community/async-storage": "^1.12.1",
"fast-text-encoding": "^1.0.3",
"get-yarn-workspaces": "^1.0.2",
+1 -1
View File
@@ -12,7 +12,7 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/ledger-transports": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@zondax/ledger-polkadot": "^0.12.0"
},
"peerDependencies": {
+3 -3
View File
@@ -10,11 +10,11 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/keyring": "^5.0.2-6",
"@polkadot/keyring": "^5.0.2-8",
"@polkadot/ui-settings": "0.63.2-2",
"@polkadot/ui-shared": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"color": "^3.1.3",
"ethereum-blockies-base64": "^1.0.2",
"jdenticon": "2.2.0",
+2 -2
View File
@@ -10,8 +10,8 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"qrcode-generator": "^1.4.4",
"react-qr-reader": "^2.2.1",
"styled-components": "^5.2.1"
+2 -2
View File
@@ -11,8 +11,8 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/ui-shared": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"react-native-svg": "^12.1.0"
},
"peerDependencies": {
+4 -4
View File
@@ -14,16 +14,16 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/keyring": "^5.0.2-6",
"@polkadot/keyring": "^5.0.2-8",
"@polkadot/ledger": "^0.63.2-2",
"@polkadot/ui-settings": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/x-rxjs": "^3.0.2-7",
"@polkadot/util": "^5.0.2-8",
"@polkadot/x-rxjs": "^3.0.2-9",
"mkdirp": "^1.0.4",
"store": "^2.0.12"
},
"devDependencies": {
"@polkadot/types": "^3.0.2-7",
"@polkadot/types": "^3.0.2-9",
"@types/mkdirp": "^1.0.1",
"@types/store": "^2.0.2"
},
-6
View File
@@ -1,6 +0,0 @@
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
// SPDX-License-Identifier: Apache-2.0
import packageInfo from './package-info.json';
export { packageInfo };
-10
View File
@@ -1,10 +0,0 @@
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
// SPDX-License-Identifier: Apache-2.0
const util = require('@polkadot/util');
const packageInfo = require('./package-info.json');
util.detectPackage(packageInfo, () => __dirname);
exports.packageInfo = packageInfo;
-10
View File
@@ -1,10 +0,0 @@
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { detectPackage } from '@polkadot/util';
import packageInfo from './package-info.json';
detectPackage(packageInfo, () => import.meta.url);
export { packageInfo };
+25
View File
@@ -0,0 +1,25 @@
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
// SPDX-License-Identifier: Apache-2.0
// For esm, this should be import.meta.url or to get the same behavior as __dirname, we can use
//
// new URL(import.meta.url).pathname)
//
// The issue is the WP4 has "some" issues with import.meta.url. So because of bundlers, we can't have
// nice things... In this case it is even worse since import.meta.url won't even make it compile, so
// there is a complete dead end with usage thereof
//
// When that is fixed, a solution is to have both .js & .mjs files, with the following content -
//
// cjs: util.detectPackage(packageInfo, () => __dirname);
// esm: detectPackage(packageInfo, () => import.meta.url);
//
// With the above we additionally need a .d.ts to just export the packageInfo
import { detectPackage } from '@polkadot/util';
import packageInfo from './package-info.json';
detectPackage(packageInfo, typeof __dirname !== 'undefined' && __dirname);
export { packageInfo };
+11
View File
@@ -0,0 +1,11 @@
// Copyright 2017-2020 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.0
// Be able to import json in TS
// https://stackoverflow.com/questions/49996456/importing-json-file-in-typescript
declare module '*.json' {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const value: any;
export default value;
}
+2 -2
View File
@@ -10,8 +10,8 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/networks": "^5.0.2-6",
"@polkadot/util": "^5.0.2-6",
"@polkadot/networks": "^5.0.2-8",
"@polkadot/util": "^5.0.2-8",
"eventemitter3": "^4.0.7",
"store": "^2.0.12"
},
+2 -2
View File
@@ -17,8 +17,8 @@
"@polkadot/util-crypto": "*"
},
"devDependencies": {
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"@types/color": "^3.0.1",
"@types/xmlserializer": "^0.6.1"
}
+2 -2
View File
@@ -11,8 +11,8 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"@polkadot/ui-shared": "0.63.2-2",
"@polkadot/util": "^5.0.2-6",
"@polkadot/util-crypto": "^5.0.2-6",
"@polkadot/util": "^5.0.2-8",
"@polkadot/util-crypto": "^5.0.2-8",
"jdenticon": "2.2.0"
},
"peerDependencies": {
+105 -105
View File
@@ -2002,9 +2002,9 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/dev@npm:^0.61.8":
version: 0.61.8
resolution: "@polkadot/dev@npm:0.61.8"
"@polkadot/dev@npm:^0.61.11":
version: 0.61.11
resolution: "@polkadot/dev@npm:0.61.11"
dependencies:
"@babel/cli": ^7.12.10
"@babel/core": ^7.12.10
@@ -2091,7 +2091,7 @@ __metadata:
polkadot-exec-typedoc: scripts/polkadot-exec-typedoc.cjs
polkadot-exec-vuepress: scripts/polkadot-exec-vuepress.cjs
polkadot-exec-webpack: scripts/polkadot-exec-webpack.cjs
checksum: 241bc06d7d0602e1c6b21082e744e681323640f39c74aaf9d62d8404c44d105553fd01bb1b82e9e460c4b03b26ae586cabf89c83f460db059b01264f1fec0bbe
checksum: f8ada082831cf62bbf353c1aab5a3e9c3cdef901aede558bb76f22199cf042a9423c4cbb902bb4fc0f5dffd4cd91d7b807dfec8c5742a00ca83412dda0bc5332
languageName: node
linkType: hard
@@ -2111,17 +2111,17 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/keyring@npm:^5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/keyring@npm:5.0.2-6"
"@polkadot/keyring@npm:^5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/keyring@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/util": 5.0.2-6
"@polkadot/util-crypto": 5.0.2-6
"@polkadot/util": 5.0.2-8
"@polkadot/util-crypto": 5.0.2-8
peerDependencies:
"@polkadot/util": 5.0.2-6
"@polkadot/util-crypto": 5.0.2-6
checksum: 5f4e596671f36d708c445eee57c73726234a64771e44c7519d34fb9a7ba1416b0ccd79287aa4528aaf1ec5ebafbce15cea808809d113f493f36fe7f1db43ba1e
"@polkadot/util": 5.0.2-8
"@polkadot/util-crypto": 5.0.2-8
checksum: 04eb21fc262fcb75de2379d4311fd88d9f8cedea4cf3a1b289379c0df0fcac6e0719ab2e23df5b28f1594fb037e353153d51dbb41e91ca2ccdc7736b8bbc5854
languageName: node
linkType: hard
@@ -2146,33 +2146,33 @@ __metadata:
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/ledger-transports": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@zondax/ledger-polkadot": ^0.12.0
peerDependencies:
"@polkadot/util": "*"
languageName: unknown
linkType: soft
"@polkadot/metadata@npm:3.0.2-7":
version: 3.0.2-7
resolution: "@polkadot/metadata@npm:3.0.2-7"
"@polkadot/metadata@npm:3.0.2-9":
version: 3.0.2-9
resolution: "@polkadot/metadata@npm:3.0.2-9"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/types": 3.0.2-7
"@polkadot/types-known": 3.0.2-7
"@polkadot/util": ^5.0.2-5
"@polkadot/util-crypto": ^5.0.2-5
"@polkadot/types": 3.0.2-9
"@polkadot/types-known": 3.0.2-9
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
bn.js: ^4.11.9
checksum: fc209fd3f6fba23d19e069d4ee2d59ca283ed463d35b7d0f16ee6e372e75d1ddf1d11a3e0e22af39fbdf1ce83a4cede1cb5169ef01f6d9512fb14d5d234b8950
checksum: d3cfc0d7c57637a697db99a62e94eb383e19bde4b549e36f88b6b4fe395accf9e248836745438a6bcb5c3daffffd1df625accce0e9d2370c7db535b6a9872673
languageName: node
linkType: hard
"@polkadot/networks@npm:5.0.2-6, @polkadot/networks@npm:^5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/networks@npm:5.0.2-6"
"@polkadot/networks@npm:5.0.2-8, @polkadot/networks@npm:^5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/networks@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 9bd11a548199a834a948231f6fc77ecb5305ee63a6503debca006d68f318d6b7783a51839fcbb87404f8b2243cf7d559edca0f64c4b886bb33bef9102c665ff5
checksum: 1f78a6b8a3bb4c2134031ba60d2ca8bad04a14989cb49a1c279a2f74bb5630ab2eba486728c533390f4e3359c17483bf74602b3cef32a210c7c66a228c7b4a94
languageName: node
linkType: hard
@@ -2181,11 +2181,11 @@ __metadata:
resolution: "@polkadot/react-identicon@workspace:packages/react-identicon"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/keyring": ^5.0.2-6
"@polkadot/keyring": ^5.0.2-8
"@polkadot/ui-settings": 0.63.2-2
"@polkadot/ui-shared": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@types/react-copy-to-clipboard": ^4.3.0
"@types/react-dom": ^17.0.0
"@types/styled-components": ^5.1.5
@@ -2211,8 +2211,8 @@ __metadata:
resolution: "@polkadot/react-qr@workspace:packages/react-qr"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@types/react-qr-reader": ^2.1.3
"@types/styled-components": ^5.1.5
qrcode-generator: ^1.4.4
@@ -2233,8 +2233,8 @@ __metadata:
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/ui-shared": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@types/react-native": ^0.63.41
react-native-svg: ^12.1.0
peerDependencies:
@@ -2254,30 +2254,30 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/types-known@npm:3.0.2-7":
version: 3.0.2-7
resolution: "@polkadot/types-known@npm:3.0.2-7"
"@polkadot/types-known@npm:3.0.2-9":
version: 3.0.2-9
resolution: "@polkadot/types-known@npm:3.0.2-9"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/types": 3.0.2-7
"@polkadot/util": ^5.0.2-5
"@polkadot/types": 3.0.2-9
"@polkadot/util": ^5.0.2-8
bn.js: ^4.11.9
checksum: 1276f039b6d0b8ea7108417142fb024b0aca71c63553085170ae5c1b51198d2caa8a9b974a9578fd1f298ef4d99221a90c378dbb36c9b0b53855f19a245a1056
checksum: 654bbf947d3d322a5347a1e869cb4062d2328ad44af3c246fc750171d08107cb7959f9646b7339449b5c7360b72a11a816c974792a30a0ee513afe6284bfda62
languageName: node
linkType: hard
"@polkadot/types@npm:3.0.2-7, @polkadot/types@npm:^3.0.2-7":
version: 3.0.2-7
resolution: "@polkadot/types@npm:3.0.2-7"
"@polkadot/types@npm:3.0.2-9, @polkadot/types@npm:^3.0.2-9":
version: 3.0.2-9
resolution: "@polkadot/types@npm:3.0.2-9"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/metadata": 3.0.2-7
"@polkadot/util": ^5.0.2-5
"@polkadot/util-crypto": ^5.0.2-5
"@polkadot/x-rxjs": 3.0.2-7
"@polkadot/metadata": 3.0.2-9
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@polkadot/x-rxjs": 3.0.2-9
"@types/bn.js": ^4.11.6
bn.js: ^4.11.9
checksum: e9f66889feabc7996e7b89b268b4953bdd550e3a8c4eb78a5454b2f3a64b3c16a91b2bd6c91a45ed75e4ac6b54fb78a2082994d0645b21dc5b32f60ecf947ab5
checksum: 1ff232b5dd1cfc8be11fa9406121e15478d79f6f8400fb7bd15ddc083b0fdda70926d948773059cba08a5101b12725fe44676f5c53e3e085c08de10b7e9934fa
languageName: node
linkType: hard
@@ -2294,12 +2294,12 @@ __metadata:
resolution: "@polkadot/ui-keyring@workspace:packages/ui-keyring"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/keyring": ^5.0.2-6
"@polkadot/keyring": ^5.0.2-8
"@polkadot/ledger": ^0.63.2-2
"@polkadot/types": ^3.0.2-7
"@polkadot/types": ^3.0.2-9
"@polkadot/ui-settings": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/x-rxjs": ^3.0.2-7
"@polkadot/util": ^5.0.2-8
"@polkadot/x-rxjs": ^3.0.2-9
"@types/mkdirp": ^1.0.1
"@types/store": ^2.0.2
mkdirp: ^1.0.4
@@ -2316,8 +2316,8 @@ __metadata:
resolution: "@polkadot/ui-settings@workspace:packages/ui-settings"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/networks": ^5.0.2-6
"@polkadot/util": ^5.0.2-6
"@polkadot/networks": ^5.0.2-8
"@polkadot/util": ^5.0.2-8
"@types/store": ^2.0.2
eventemitter3: ^4.0.7
store: ^2.0.12
@@ -2332,8 +2332,8 @@ __metadata:
resolution: "@polkadot/ui-shared@workspace:packages/ui-shared"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@types/color": ^3.0.1
"@types/xmlserializer": ^0.6.1
color: ^3.1.3
@@ -2343,15 +2343,15 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/util-crypto@npm:5.0.2-6, @polkadot/util-crypto@npm:^5.0.2-5, @polkadot/util-crypto@npm:^5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/util-crypto@npm:5.0.2-6"
"@polkadot/util-crypto@npm:5.0.2-8, @polkadot/util-crypto@npm:^5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/util-crypto@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/networks": 5.0.2-6
"@polkadot/util": 5.0.2-6
"@polkadot/wasm-crypto": ^3.0.2-4
"@polkadot/x-randomvalues": 5.0.2-6
"@polkadot/networks": 5.0.2-8
"@polkadot/util": 5.0.2-8
"@polkadot/wasm-crypto": ^3.0.2-11
"@polkadot/x-randomvalues": 5.0.2-8
base-x: ^3.0.8
blakejs: ^1.1.0
bn.js: ^4.11.9
@@ -2363,23 +2363,23 @@ __metadata:
tweetnacl: ^1.0.3
xxhashjs: ^0.2.2
peerDependencies:
"@polkadot/util": 5.0.2-6
checksum: c9ec21eca25aaf030f1fb984f7d3ad6cfff78879aa1e550cf1d12cbf96a033d17a29b65a16e4c9aec09a18c1bd670b0d79cc5c761420c8c6927efb61078e37c2
"@polkadot/util": 5.0.2-8
checksum: fecdaf0370a61159800a0d53bc3064f901b5eab8d9028e4e3e21867f14267042ce5c06f31625b456213758e6190c57597dea5fba2c1ecd27105d454130db0640
languageName: node
linkType: hard
"@polkadot/util@npm:5.0.2-6, @polkadot/util@npm:^5.0.2-5, @polkadot/util@npm:^5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/util@npm:5.0.2-6"
"@polkadot/util@npm:5.0.2-8, @polkadot/util@npm:^5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/util@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/x-textdecoder": 5.0.2-6
"@polkadot/x-textencoder": 5.0.2-6
"@polkadot/x-textdecoder": 5.0.2-8
"@polkadot/x-textencoder": 5.0.2-8
"@types/bn.js": ^4.11.6
bn.js: ^4.11.9
camelcase: ^5.3.1
ip-regex: ^4.2.0
checksum: 9b1772b3ab82e17242368c89a7390388da37aac39b5b16ff4ae7d141ea68284264ad69d87e2e2263392fde4731dafc38b68677bede082d2b25c63d55207de216
checksum: b7ababe3f8c039b9bc398dfb806b6b451e3a5946faa72dc722d3b990b894e87c7195e0c53adfdfbe98e01d6370a68547779822673d4b87d228a13f5d277dceb8
languageName: node
linkType: hard
@@ -2389,8 +2389,8 @@ __metadata:
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/ui-shared": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
jdenticon: 2.2.0
vue: ^2.6.12
peerDependencies:
@@ -2400,73 +2400,73 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/wasm-crypto-asmjs@npm:^3.0.2-4":
version: 3.0.2-4
resolution: "@polkadot/wasm-crypto-asmjs@npm:3.0.2-4"
"@polkadot/wasm-crypto-asmjs@npm:^3.0.2-11":
version: 3.0.2-11
resolution: "@polkadot/wasm-crypto-asmjs@npm:3.0.2-11"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 639a7eab493ac63438c0ab100073f681ba66ee91e3eb059222c87b39d3669239bde98c0d5c58e1574df7091a2cd5ab33075170946f093747cae03fae4a317110
checksum: dc84a257169fa4a37b2dd2b0e62fad586659bde2ab23d4a5346779f7865751ee789774c201f7b6ae14530409ca52565d5abb1938eb1a1ef23c922bd117006f28
languageName: node
linkType: hard
"@polkadot/wasm-crypto-wasm@npm:^3.0.2-4":
version: 3.0.2-4
resolution: "@polkadot/wasm-crypto-wasm@npm:3.0.2-4"
"@polkadot/wasm-crypto-wasm@npm:^3.0.2-11":
version: 3.0.2-11
resolution: "@polkadot/wasm-crypto-wasm@npm:3.0.2-11"
dependencies:
"@babel/runtime": ^7.12.5
fflate: ^0.4.2
checksum: d5c703d8096055672dcfa574f5f9c85b3e874da0afd064cdfd9de8e3b95a5606c815363d3703819e86639a934237868b7a9db0f47cc2a2cd9f1da832131f3c07
checksum: 312c9fe938540923150727ab3ea5cec783c6ee0634f5034fd9f5065f7de534e5fb565c5bf56cdf49e20ec2c585117dcb12a343c8aacd406f79a26b63294ad707
languageName: node
linkType: hard
"@polkadot/wasm-crypto@npm:^3.0.2-4":
version: 3.0.2-4
resolution: "@polkadot/wasm-crypto@npm:3.0.2-4"
"@polkadot/wasm-crypto@npm:^3.0.2-11":
version: 3.0.2-11
resolution: "@polkadot/wasm-crypto@npm:3.0.2-11"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/wasm-crypto-asmjs": ^3.0.2-4
"@polkadot/wasm-crypto-wasm": ^3.0.2-4
"@polkadot/wasm-crypto-asmjs": ^3.0.2-11
"@polkadot/wasm-crypto-wasm": ^3.0.2-11
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: b286d352931b09443b422f99039e9c65c09eee9b0001311aa0c1ba8afbbe0a705cbf17680f899955ad164d344d82e6be9da488faaf2e0aa02f57ac6890204d29
checksum: b21a9ea54398ce0503871e56d9054bb77fa1572923d4fd3f74b76fedc3d9c3996f702a69d0ac835090c010993327455c36a29d3ca7f38b7ea7dde0633e8313af
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/x-randomvalues@npm:5.0.2-6"
"@polkadot/x-randomvalues@npm:5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/x-randomvalues@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 5be0483579713851490b3d1b14b82b49e8b7d5d143a4d188477537a1aa23dbab807c257b9ebe75a4d2ac6ec5384b5697f5a922c9e1e77c6a8672b29771c04d5b
checksum: 1692917d99b1e397ce3cee7fab287c7924ade28ac3e06169e13cb31dc68c10c6c01b32428b283206ca8e931528cb07f3ed88a4af88a5ff881107e0fc496c517e
languageName: node
linkType: hard
"@polkadot/x-rxjs@npm:3.0.2-7, @polkadot/x-rxjs@npm:^3.0.2-7":
version: 3.0.2-7
resolution: "@polkadot/x-rxjs@npm:3.0.2-7"
"@polkadot/x-rxjs@npm:3.0.2-9, @polkadot/x-rxjs@npm:^3.0.2-9":
version: 3.0.2-9
resolution: "@polkadot/x-rxjs@npm:3.0.2-9"
dependencies:
"@babel/runtime": ^7.12.5
rxjs: ^6.6.3
checksum: f5177e9f17f4eb7042f545f0b50a7507400678ac669eb092168333d621714c815a22b68a4c813fc7f962054a0df5f54f46302aa956c42d4f373516e66ced454d
checksum: b56a2f9ae6e9900b3dd7b66263b62b268dfe357216803101566dcef3719ccbd4f454cdccf32c071a21a6e77f0f07a36b94672badd77397962ca1a7228582a918
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/x-textdecoder@npm:5.0.2-6"
"@polkadot/x-textdecoder@npm:5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/x-textdecoder@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 3fa55dc5c08b581a8097e640225c4e0921d95d3901f9c2f57b74e2191c1203f7b742dcb9bf45ac9d23691fbe9312484f5fe10c47199c5c73464027a3fae31b88
checksum: b9759a02c078554930cf10f8481102c724765170efcf3ba284dea8b30f5033c443b2823b1fe433821cb2f1102e425361fb350648146f742daeed1845e33fa0ec
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:5.0.2-6":
version: 5.0.2-6
resolution: "@polkadot/x-textencoder@npm:5.0.2-6"
"@polkadot/x-textencoder@npm:5.0.2-8":
version: 5.0.2-8
resolution: "@polkadot/x-textencoder@npm:5.0.2-8"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 25c093b864fc33509984321dccc06deb26acc40d3c41f4c73b08e0c537c55a4fd449144a21ae2e37ae3f659d4663bc39219743a7fa0cc4e3f3552b8a0d5afaff
checksum: 77f669c0aaefcb7abea46b79350b74c0e14b463abd17e081b3b3a88658f79d0741b0710d2dbf6ab2b7e05714483ea7976c5396b93f877f7e4787dd69b17d923b
languageName: node
linkType: hard
@@ -6906,12 +6906,12 @@ __metadata:
dependencies:
"@babel/core": ^7.12.10
"@babel/runtime": ^7.12.5
"@polkadot/keyring": ^5.0.2-6
"@polkadot/keyring": ^5.0.2-8
"@polkadot/reactnative-identicon": 0.63.2-2
"@polkadot/ui-keyring": 0.63.2-2
"@polkadot/ui-settings": 0.63.2-2
"@polkadot/util": ^5.0.2-6
"@polkadot/util-crypto": ^5.0.2-6
"@polkadot/util": ^5.0.2-8
"@polkadot/util-crypto": ^5.0.2-8
"@react-native-community/async-storage": ^1.12.1
"@react-native-community/cli-platform-ios": ^4.13.0
"@types/react-test-renderer": 17.0.0
@@ -13820,7 +13820,7 @@ fsevents@~2.1.2:
dependencies:
"@babel/core": ^7.12.10
"@babel/runtime": ^7.12.5
"@polkadot/dev": ^0.61.8
"@polkadot/dev": ^0.61.11
"@polkadot/ts": ^0.3.58
"@types/jest": ^26.0.19
babel-plugin-transform-vue-template: ^0.4.2