diff --git a/CHANGELOG.md b/CHANGELOG.md index e206767d..c39ec22c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## 0.66.1 Jan 17, 2020 + +- **Important** Users of the `@polkadot/ledger` package should now import `@polkadot/hw-wallet` + +Contributed: + +- Dock Ledger integration (Thanks to https://github.com/lovesh, moved to common) +- Polymesh Ledger integration (https://github.com/adamdossa, moved to common) + +Changes: + +- Remove `@polkadot/ledger` package (Moved to common as `@polkadot/hw-ledger`) +- Keyring options genesis allows a `string` | `Hash` (e.g. `api.genesisHash`) input +- Updated to `@polkadot/{hw-ledger, keyring, util, util-crypto}` 5.3.1 +- Removed `@polkadot/types` dependencies (only interface needed, supplied) + + ## 0.65.1 Dec 28, 2020 Changes: diff --git a/package.json b/package.json index ec69a37a..b05169a2 100644 --- a/package.json +++ b/package.json @@ -45,5 +45,5 @@ "webpack-cli": "^3.3.12", "webpack-serve": "^3.2.0" }, - "version": "0.65.2-5" + "version": "0.66.0" } diff --git a/packages/example-react/package.json b/packages/example-react/package.json index 7ac2ccd1..c8c78cf2 100644 --- a/packages/example-react/package.json +++ b/packages/example-react/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/example-react", - "version": "0.65.2-5", + "version": "0.66.0", "description": "A very basic example with ui-* & react-* packages", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/example-vue/package.json b/packages/example-vue/package.json index c2d12aaa..7e07b8ca 100644 --- a/packages/example-vue/package.json +++ b/packages/example-vue/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/example-vue", - "version": "0.65.2-5", + "version": "0.66.0", "description": "A very basic example with ui-* & vue-* packages", "main": "index.js", "author": "Jaco Greeff ", diff --git a/packages/exampleReactNative/package.json b/packages/exampleReactNative/package.json index 49ec8515..6bf9ba5b 100644 --- a/packages/exampleReactNative/package.json +++ b/packages/exampleReactNative/package.json @@ -1,6 +1,6 @@ { "name": "exampleReactNative", - "version": "0.65.2-5", + "version": "0.66.0", "private": true, "scripts": { "copy-workspace-packages": "yarn copy-identicon && yarn copy-ui-shared", @@ -12,12 +12,12 @@ "test": "jest" }, "dependencies": { - "@polkadot/keyring": "^5.2.4-6", - "@polkadot/reactnative-identicon": "0.65.2-5", - "@polkadot/ui-keyring": "0.65.2-5", - "@polkadot/ui-settings": "0.65.2-5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/keyring": "^5.2.4-7", + "@polkadot/reactnative-identicon": "0.66.0", + "@polkadot/ui-keyring": "0.66.0", + "@polkadot/ui-settings": "0.66.0", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "@react-native-community/async-storage": "^1.12.1", "fast-text-encoding": "^1.0.3", "get-yarn-workspaces": "^1.0.2", diff --git a/packages/react-identicon/package.json b/packages/react-identicon/package.json index 2c391005..6ac1c68b 100644 --- a/packages/react-identicon/package.json +++ b/packages/react-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-identicon", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "module": "index.mjs", @@ -10,11 +10,11 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/keyring": "^5.2.4-6", - "@polkadot/ui-settings": "0.65.2-5", - "@polkadot/ui-shared": "0.65.2-5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/keyring": "^5.2.4-7", + "@polkadot/ui-settings": "0.66.0", + "@polkadot/ui-shared": "0.66.0", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "color": "^3.1.3", "ethereum-blockies-base64": "^1.0.2", "jdenticon": "3.1.0", diff --git a/packages/react-qr/package.json b/packages/react-qr/package.json index 36528b97..c57a5ba3 100644 --- a/packages/react-qr/package.json +++ b/packages/react-qr/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/react-qr", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Generates and reads QR codes", "main": "index.js", "module": "index.mjs", @@ -10,8 +10,8 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "qrcode-generator": "^1.4.4", "react-qr-reader": "^2.2.1", "styled-components": "^5.2.1" diff --git a/packages/reactnative-identicon/package.json b/packages/reactnative-identicon/package.json index 8bd8b51e..86622930 100644 --- a/packages/reactnative-identicon/package.json +++ b/packages/reactnative-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/reactnative-identicon", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Renders an SVG picture representing an address", "main": "index.js", "module": "index.mjs", @@ -10,9 +10,9 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/ui-shared": "0.65.2-5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/ui-shared": "0.66.0", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "react-native-svg": "^12.1.0" }, "peerDependencies": { diff --git a/packages/ui-assets/package.json b/packages/ui-assets/package.json index 04ed2247..51a09435 100644 --- a/packages/ui-assets/package.json +++ b/packages/ui-assets/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-assets", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Static assets shared accross projects", "main": "index.js", "module": "index.mjs", diff --git a/packages/ui-keyring/package.json b/packages/ui-keyring/package.json index bba3dff0..215c897f 100644 --- a/packages/ui-keyring/package.json +++ b/packages/ui-keyring/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-keyring", - "version": "0.65.2-5", + "version": "0.66.0", "main": "index.js", "module": "index.mjs", "sideEffects": [ @@ -14,16 +14,15 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/hw-ledger": "^5.2.4-6", - "@polkadot/keyring": "^5.2.4-6", - "@polkadot/ui-settings": "0.65.2-5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/x-rxjs": "^3.4.2-8", + "@polkadot/hw-ledger": "^5.2.4-7", + "@polkadot/keyring": "^5.2.4-7", + "@polkadot/ui-settings": "0.66.0", + "@polkadot/util": "^5.2.4-7", + "@polkadot/x-rxjs": "^3.4.2-15", "mkdirp": "^1.0.4", "store": "^2.0.12" }, "devDependencies": { - "@polkadot/types": "^3.4.2-8", "@types/mkdirp": "^1.0.1", "@types/store": "^2.0.2" }, diff --git a/packages/ui-keyring/src/Base.ts b/packages/ui-keyring/src/Base.ts index 484c398b..b5103785 100644 --- a/packages/ui-keyring/src/Base.ts +++ b/packages/ui-keyring/src/Base.ts @@ -110,7 +110,11 @@ export class Base { } this.#keyring = keyring; - this._genesisHash = options.genesisHash && options.genesisHash.toHex(); + this._genesisHash = options.genesisHash && ( + isString(options.genesisHash) + ? options.genesisHash.toString() + : options.genesisHash.toHex() + ); this._store = options.store || this._store; this.addAccountPairs(); diff --git a/packages/ui-keyring/src/types.ts b/packages/ui-keyring/src/types.ts index e23ec6c7..a0e237e5 100644 --- a/packages/ui-keyring/src/types.ts +++ b/packages/ui-keyring/src/types.ts @@ -2,7 +2,6 @@ // SPDX-License-Identifier: Apache-2.0 import type { KeyringInstance as BaseKeyringInstance, KeyringOptions as KeyringOptionsBase, KeyringPair, KeyringPair$Json, KeyringPair$Meta } from '@polkadot/keyring/types'; -import type { Hash } from '@polkadot/types/interfaces'; import type { KeypairType } from '@polkadot/util-crypto/types'; import type { AddressSubject, SingleAddress } from './observable/types'; @@ -40,7 +39,7 @@ export interface KeyringStore { export interface KeyringOptions extends KeyringOptionsBase { filter?: (json: KeyringJson) => boolean; - genesisHash?: Hash; + genesisHash?: string | { toHex: () => string }; isDevelopment?: boolean; store?: KeyringStore; } diff --git a/packages/ui-settings/package.json b/packages/ui-settings/package.json index 39485d95..d4c98e2d 100644 --- a/packages/ui-settings/package.json +++ b/packages/ui-settings/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-settings", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Manages app settings", "main": "index.js", "module": "index.mjs", @@ -10,8 +10,8 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/networks": "^5.2.4-6", - "@polkadot/util": "^5.2.4-6", + "@polkadot/networks": "^5.2.4-7", + "@polkadot/util": "^5.2.4-7", "eventemitter3": "^4.0.7", "store": "^2.0.12" }, diff --git a/packages/ui-shared/package.json b/packages/ui-shared/package.json index b62f594e..8d161ace 100644 --- a/packages/ui-shared/package.json +++ b/packages/ui-shared/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/ui-shared", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Shared logic that is usable accross all frameworks-specific areas", "main": "index.js", "module": "index.mjs", @@ -17,8 +17,8 @@ "@polkadot/util-crypto": "*" }, "devDependencies": { - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "@types/color": "^3.0.1", "@types/xmlserializer": "^0.6.2" } diff --git a/packages/vue-identicon/package.json b/packages/vue-identicon/package.json index cfed2f88..b28d1ad0 100644 --- a/packages/vue-identicon/package.json +++ b/packages/vue-identicon/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/vue-identicon", - "version": "0.65.2-5", + "version": "0.66.0", "description": "Renders an SVG picture representing an address", "author": "Jaco Greeff ", "maintainers": [], @@ -10,9 +10,9 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", - "@polkadot/ui-shared": "0.65.2-5", - "@polkadot/util": "^5.2.4-6", - "@polkadot/util-crypto": "^5.2.4-6", + "@polkadot/ui-shared": "0.66.0", + "@polkadot/util": "^5.2.4-7", + "@polkadot/util-crypto": "^5.2.4-7", "jdenticon": "3.1.0" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 17f2a090..340ab391 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2040,9 +2040,9 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/hw-ledger-transports@npm:5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/hw-ledger-transports@npm:5.2.4-6" +"@polkadot/hw-ledger-transports@npm:5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/hw-ledger-transports@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 "@ledgerhq/hw-transport-node-hid-singleton": ^5.38.0 @@ -2050,65 +2050,42 @@ __metadata: dependenciesMeta: "@ledgerhq/hw-transport-node-hid-singleton": optional: true - checksum: 6e5c0cd9fa00d4b52da820dc7e152e24594728d54a25170eeb24bad893491e3dadaf5dd5c7a0d26a009c31c56a05d0b7a28eb5040c9a65ad150e01dd096bdc33 + checksum: 369e2961221ee838cd07cc7959f0c0f088c3e672e1e33d02a1dbe2436e9f32b3e58a23540295a68be7cbbdf2650adc724b6e98b143c8430ea4c50f446cdf7e27 languageName: node linkType: hard -"@polkadot/hw-ledger@npm:^5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/hw-ledger@npm:5.2.4-6" +"@polkadot/hw-ledger@npm:^5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/hw-ledger@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/hw-ledger-transports": 5.2.4-6 - "@polkadot/util": ^5.2.4-6 + "@polkadot/hw-ledger-transports": 5.2.4-7 + "@polkadot/util": ^5.2.4-7 "@zondax/ledger-polkadot": ^0.13.0 - checksum: 0fac5b941ba56f6ad86bf210083b4e3436eef81b96b6f247aec27d2c588915ca6f9d394493080688cf5dacb570117beb39a0cdcda071af8f3d9cb2c95c6910db + checksum: 65e04253f75373f77cd5d2da15d37fff6b0f941e26f0b880ac760cbb3bae81550c71b4e8e1faba645e519f1809082c0025224a6bd0947ebd773bfd7ae41913c2 languageName: node linkType: hard -"@polkadot/keyring@npm:^5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/keyring@npm:5.2.4-6" +"@polkadot/keyring@npm:^5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/keyring@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/util": 5.2.4-6 - "@polkadot/util-crypto": 5.2.4-6 + "@polkadot/util": 5.2.4-7 + "@polkadot/util-crypto": 5.2.4-7 peerDependencies: - "@polkadot/util": 5.2.4-6 - "@polkadot/util-crypto": 5.2.4-6 - checksum: 12aee20425e4d8a2f8e3c56849d427ca6311e94d543c37e5ea37b9ae3d082c3f69e0a3fd3af3d59ef5e7903016901e504304dba78a69cfc6a537cd81d99ab0ca + "@polkadot/util": 5.2.4-7 + "@polkadot/util-crypto": 5.2.4-7 + checksum: d38cb585dc218631d3b63ebe384fd69f52f0397c320c72715fdefe95177cc722feaba0911f52f027146d5a59d0ef9eb31a4219d19b46141b0b005653f5d0cd38 languageName: node linkType: hard -"@polkadot/metadata@npm:3.4.2-8": - version: 3.4.2-8 - resolution: "@polkadot/metadata@npm:3.4.2-8" +"@polkadot/networks@npm:5.2.4-7, @polkadot/networks@npm:^5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/networks@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/types": 3.4.2-8 - "@polkadot/types-known": 3.4.2-8 - "@polkadot/util": ^5.2.3 - "@polkadot/util-crypto": ^5.2.3 - bn.js: ^4.11.9 - checksum: 25133a571c220f0e4c24a6b6736b63d8890926de91785946f8121c1f6a6559ecf095070a1becd70a4225534b31da342d87e0f829f1b82f30f3fb9c7caab39196 - languageName: node - linkType: hard - -"@polkadot/networks@npm:5.2.3": - version: 5.2.3 - resolution: "@polkadot/networks@npm:5.2.3" - dependencies: - "@babel/runtime": ^7.12.5 - checksum: 106a087b8add2f6cfc5d6974e09b1cb328d541fdae575283b33cd1e0fcb0d194a20c63f825e75932096dec73ec0efca9a5e88130f0507cb165bfca266da815e4 - languageName: node - linkType: hard - -"@polkadot/networks@npm:5.2.4-6, @polkadot/networks@npm:^5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/networks@npm:5.2.4-6" - dependencies: - "@babel/runtime": ^7.12.5 - checksum: 3acd5815c463e65c465b818bb61de8e5a13192127c2a9c62834dbf10e6af0d85abfec0b3084314de33e9b4780f8b7ae6e491f5efaa7580500b1c6428b8af9a39 + checksum: fd97ed8b2f7724f97c8065bec4760e95b5612f794d4356c0e8ff26166f43f8188dbcfe5e3f7b575c490491da3a632368d17bb4098376271f3c80f7c8ef59502e languageName: node linkType: hard @@ -2117,11 +2094,11 @@ __metadata: resolution: "@polkadot/react-identicon@workspace:packages/react-identicon" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/keyring": ^5.2.4-6 - "@polkadot/ui-settings": 0.65.2-5 - "@polkadot/ui-shared": 0.65.2-5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/keyring": ^5.2.4-7 + "@polkadot/ui-settings": 0.66.0 + "@polkadot/ui-shared": 0.66.0 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 "@types/react-copy-to-clipboard": ^5.0.0 "@types/react-dom": ^17.0.0 "@types/styled-components": ^5.1.7 @@ -2147,8 +2124,8 @@ __metadata: resolution: "@polkadot/react-qr@workspace:packages/react-qr" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 "@types/react-qr-reader": ^2.1.3 "@types/styled-components": ^5.1.7 qrcode-generator: ^1.4.4 @@ -2163,14 +2140,14 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/reactnative-identicon@0.65.2-5, @polkadot/reactnative-identicon@workspace:packages/reactnative-identicon": +"@polkadot/reactnative-identicon@0.66.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.12.5 - "@polkadot/ui-shared": 0.65.2-5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/ui-shared": 0.66.0 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 "@types/react-native": ^0.63.45 react-native-svg: ^12.1.0 peerDependencies: @@ -2190,33 +2167,6 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-known@npm:3.4.2-8": - version: 3.4.2-8 - resolution: "@polkadot/types-known@npm:3.4.2-8" - dependencies: - "@babel/runtime": ^7.12.5 - "@polkadot/types": 3.4.2-8 - "@polkadot/util": ^5.2.3 - bn.js: ^4.11.9 - checksum: 3562c4eae3b67373228afa0843f831ed6c3560711a575eb58d8caa722a84b7ad630e35dba2d61aa7988c41c122bf7e2934a762c7234efb98dd207c951880ad90 - languageName: node - linkType: hard - -"@polkadot/types@npm:3.4.2-8, @polkadot/types@npm:^3.4.2-8": - version: 3.4.2-8 - resolution: "@polkadot/types@npm:3.4.2-8" - dependencies: - "@babel/runtime": ^7.12.5 - "@polkadot/metadata": 3.4.2-8 - "@polkadot/util": ^5.2.3 - "@polkadot/util-crypto": ^5.2.3 - "@polkadot/x-rxjs": 3.4.2-8 - "@types/bn.js": ^4.11.6 - bn.js: ^4.11.9 - checksum: 6f103b1a4ef1cd2d00b8ea667509cf6b9dad569a61a944cf50592ed449af9c1748e1e8f9e76d05def307871ebe5216b18871eb7f9220a1f0aa2b160f88a2c8b3 - languageName: node - linkType: hard - "@polkadot/ui-assets@workspace:packages/ui-assets": version: 0.0.0-use.local resolution: "@polkadot/ui-assets@workspace:packages/ui-assets" @@ -2225,17 +2175,16 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-keyring@0.65.2-5, @polkadot/ui-keyring@workspace:packages/ui-keyring": +"@polkadot/ui-keyring@0.66.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.12.5 - "@polkadot/hw-ledger": ^5.2.4-6 - "@polkadot/keyring": ^5.2.4-6 - "@polkadot/types": ^3.4.2-8 - "@polkadot/ui-settings": 0.65.2-5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/x-rxjs": ^3.4.2-8 + "@polkadot/hw-ledger": ^5.2.4-7 + "@polkadot/keyring": ^5.2.4-7 + "@polkadot/ui-settings": 0.66.0 + "@polkadot/util": ^5.2.4-7 + "@polkadot/x-rxjs": ^3.4.2-15 "@types/mkdirp": ^1.0.1 "@types/store": ^2.0.2 mkdirp: ^1.0.4 @@ -2247,13 +2196,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-settings@0.65.2-5, @polkadot/ui-settings@workspace:packages/ui-settings": +"@polkadot/ui-settings@0.66.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.12.5 - "@polkadot/networks": ^5.2.4-6 - "@polkadot/util": ^5.2.4-6 + "@polkadot/networks": ^5.2.4-7 + "@polkadot/util": ^5.2.4-7 "@types/store": ^2.0.2 eventemitter3: ^4.0.7 store: ^2.0.12 @@ -2263,13 +2212,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-shared@0.65.2-5, @polkadot/ui-shared@workspace:packages/ui-shared": +"@polkadot/ui-shared@0.66.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.12.5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 "@types/color": ^3.0.1 "@types/xmlserializer": ^0.6.2 color: ^3.1.3 @@ -2279,15 +2228,15 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/util-crypto@npm:5.2.4-6, @polkadot/util-crypto@npm:^5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/util-crypto@npm:5.2.4-6" +"@polkadot/util-crypto@npm:5.2.4-7, @polkadot/util-crypto@npm:^5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/util-crypto@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/networks": 5.2.4-6 - "@polkadot/util": 5.2.4-6 + "@polkadot/networks": 5.2.4-7 + "@polkadot/util": 5.2.4-7 "@polkadot/wasm-crypto": ^3.1.1 - "@polkadot/x-randomvalues": 5.2.4-6 + "@polkadot/x-randomvalues": 5.2.4-7 base-x: ^3.0.8 blakejs: ^1.1.0 bn.js: ^4.11.9 @@ -2299,63 +2248,23 @@ __metadata: tweetnacl: ^1.0.3 xxhashjs: ^0.2.2 peerDependencies: - "@polkadot/util": 5.2.4-6 - checksum: a435d8c121e79ada4bac928bc936249238dc2268b36c04cf68bda4654e54d9945c0f45af1c5e124240207a76838d0f1bce50e710ab291d4ec6a8ddb734842937 + "@polkadot/util": 5.2.4-7 + checksum: abb2929597ec7f50d6e59e1370307660ab2232cd5799b4fa46c20ab2884cc2ecec11b855484a94dce500a9c1f17c8cba060effdee8ae7eb36c767c3839f9dbaa languageName: node linkType: hard -"@polkadot/util-crypto@npm:^5.2.3": - version: 5.2.3 - resolution: "@polkadot/util-crypto@npm:5.2.3" +"@polkadot/util@npm:5.2.4-7, @polkadot/util@npm:^5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/util@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/networks": 5.2.3 - "@polkadot/util": 5.2.3 - "@polkadot/wasm-crypto": ^3.1.1 - "@polkadot/x-randomvalues": 5.2.3 - base-x: ^3.0.8 - blakejs: ^1.1.0 - bn.js: ^4.11.9 - create-hash: ^1.2.0 - elliptic: ^6.5.3 - hash.js: ^1.1.7 - js-sha3: ^0.8.0 - scryptsy: ^2.1.0 - tweetnacl: ^1.0.3 - xxhashjs: ^0.2.2 - peerDependencies: - "@polkadot/util": 5.2.3 - checksum: ff7c83a775e4abc4386a5b211008a3c8ca1f81769f76d5997f5bee51059a256465478f8bfb63c6823437ee3fa5c3453c12b8ff5e230def96f0f4292944162fc8 - languageName: node - linkType: hard - -"@polkadot/util@npm:5.2.3, @polkadot/util@npm:^5.2.3": - version: 5.2.3 - resolution: "@polkadot/util@npm:5.2.3" - dependencies: - "@babel/runtime": ^7.12.5 - "@polkadot/x-textdecoder": 5.2.3 - "@polkadot/x-textencoder": 5.2.3 + "@polkadot/x-textdecoder": 5.2.4-7 + "@polkadot/x-textencoder": 5.2.4-7 "@types/bn.js": ^4.11.6 bn.js: ^4.11.9 camelcase: ^5.3.1 ip-regex: ^4.2.0 - checksum: 4202023ce5309cf662481ac1fb616385c6515397a91331862348cd01974c12c5f521d36f95e94385f72f0ab8e2c35ff532043105ba969dac075e3a79b70d65a3 - languageName: node - linkType: hard - -"@polkadot/util@npm:5.2.4-6, @polkadot/util@npm:^5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/util@npm:5.2.4-6" - dependencies: - "@babel/runtime": ^7.12.5 - "@polkadot/x-textdecoder": 5.2.4-6 - "@polkadot/x-textencoder": 5.2.4-6 - "@types/bn.js": ^4.11.6 - bn.js: ^4.11.9 - camelcase: ^5.3.1 - ip-regex: ^4.2.0 - checksum: b079d1dbb29eefb5c416ef36e6b5c4d369ff211721e077e9592f6cd2de77acc0a88b51257f266a4c396add2123bc1f7dbf05a39ba83d1ae50702dd3e23596d60 + checksum: ecf9967f3b6825878da9a66ff1308f8e3e26217902822dbb666a0d0e086bc3a171ac6397a2b5ccadbf0d311ac470a58c7ce190bebb112febffd20c50a279ad59 languageName: node linkType: hard @@ -2364,9 +2273,9 @@ __metadata: resolution: "@polkadot/vue-identicon@workspace:packages/vue-identicon" dependencies: "@babel/runtime": ^7.12.5 - "@polkadot/ui-shared": 0.65.2-5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/ui-shared": 0.66.0 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 jdenticon: 3.1.0 vue: ^2.6.12 peerDependencies: @@ -2408,67 +2317,40 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:5.2.3": - version: 5.2.3 - resolution: "@polkadot/x-randomvalues@npm:5.2.3" +"@polkadot/x-randomvalues@npm:5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/x-randomvalues@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - checksum: 7fa8da4b2fd9e7700158480b38d5e0b59f4327d173a6871d265d27d8b1527e4acba9f9784c95336cc8f3af82ee7048f6c4247a282f0089447c0ec4d789a816f7 + checksum: ed21078aef11c022fa72a8055daa9ed6846c1e999ddb252bebab57cd4911bf6eda8baf5d8433307af20d1566ccaee5765f2a1061e16d31f974c73efd027799a0 languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/x-randomvalues@npm:5.2.4-6" - dependencies: - "@babel/runtime": ^7.12.5 - checksum: 04d266331dc1dbc049e0c54c93143e0bf9a77e256227f076620ddef08d835149c14e8a21bb388ed9edbf0c6bd3e847815bb15bbd5993edaef761be35ef2f5615 - languageName: node - linkType: hard - -"@polkadot/x-rxjs@npm:3.4.2-8, @polkadot/x-rxjs@npm:^3.4.2-8": - version: 3.4.2-8 - resolution: "@polkadot/x-rxjs@npm:3.4.2-8" +"@polkadot/x-rxjs@npm:^3.4.2-15": + version: 3.4.2-15 + resolution: "@polkadot/x-rxjs@npm:3.4.2-15" dependencies: "@babel/runtime": ^7.12.5 rxjs: ^6.6.3 - checksum: c70ea5e9c5b5956367e9295432f49dcb317241f49fdf6a1d0a0511d8a30dc67a594a0b1697a90a4c3fcb8c81d225345f280d4bdb8080b33cb82e0e8a590b784f + checksum: 2c8ca8cc3aa97a29bbd5a0e6aeb707052507854ab4b8ef33a3d722b7640f1ece9408f5f8a2ba15c9223b86c8e0ed5357b97882eac757772900bdc99b3eb64154 languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:5.2.3": - version: 5.2.3 - resolution: "@polkadot/x-textdecoder@npm:5.2.3" +"@polkadot/x-textdecoder@npm:5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/x-textdecoder@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - checksum: e035e78c582edd996c87028ed9a289a128ab88813a6f270f76193b963f6713a1530eb1803a31dd486fed8491ad92a2c8326335b7765ff4b5230b9b6b66898039 + checksum: 5c10a997f742d77e9963a511416262c3d56b301375ba45d4b68965d6cfc6e6797bef546e5dd649f0dd5c75f6622bc213d79203f9f2bd624887fe7234c42f7a9d languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/x-textdecoder@npm:5.2.4-6" +"@polkadot/x-textencoder@npm:5.2.4-7": + version: 5.2.4-7 + resolution: "@polkadot/x-textencoder@npm:5.2.4-7" dependencies: "@babel/runtime": ^7.12.5 - checksum: 968e3ee0005c8d1c5183ff068cbfc68b674894363516cd08f0a121f6bd93434e6043bbae941974d7d06852730538b5c89c1c20498009f865b601624311f628fb - languageName: node - linkType: hard - -"@polkadot/x-textencoder@npm:5.2.3": - version: 5.2.3 - resolution: "@polkadot/x-textencoder@npm:5.2.3" - dependencies: - "@babel/runtime": ^7.12.5 - checksum: 0716ddcf47434459238cdea8b38a1f574d576d36fc0b774635b7b8ca487eace510ecbb74c18a5ad1c47033c3428ce540a3abfbea6740d0c96a123ed7971e4c33 - languageName: node - linkType: hard - -"@polkadot/x-textencoder@npm:5.2.4-6": - version: 5.2.4-6 - resolution: "@polkadot/x-textencoder@npm:5.2.4-6" - dependencies: - "@babel/runtime": ^7.12.5 - checksum: ce60ca66f10a2ad2aad6e8e96e1a0e424e9032e8a1d0c32d432704618e0e27b3a72c1ff78e1832f0f12e7699ae03637841ccf23f46ecdee9b51e3d70f185afd6 + checksum: 349f79084923f587db69a4cdaa1b1aad0b8c913e31e9af9fac96b5e550487df82c22ebe21a8ff669ab3cf6db5a0509b42b68bec9e651236c113e419e31642f61 languageName: node linkType: hard @@ -6917,12 +6799,12 @@ __metadata: dependencies: "@babel/core": ^7.12.10 "@babel/runtime": ^7.12.5 - "@polkadot/keyring": ^5.2.4-6 - "@polkadot/reactnative-identicon": 0.65.2-5 - "@polkadot/ui-keyring": 0.65.2-5 - "@polkadot/ui-settings": 0.65.2-5 - "@polkadot/util": ^5.2.4-6 - "@polkadot/util-crypto": ^5.2.4-6 + "@polkadot/keyring": ^5.2.4-7 + "@polkadot/reactnative-identicon": 0.66.0 + "@polkadot/ui-keyring": 0.66.0 + "@polkadot/ui-settings": 0.66.0 + "@polkadot/util": ^5.2.4-7 + "@polkadot/util-crypto": ^5.2.4-7 "@react-native-community/async-storage": ^1.12.1 "@react-native-community/cli-platform-ios": ^4.13.0 "@types/react-test-renderer": 17.0.0