11.0.2 (#1760)
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 11.0.2 Mar 11, 2023
|
||||
|
||||
Changes:
|
||||
|
||||
- Use consistent `.js` imports in source files (TS moduleResolution)
|
||||
- Remove TS resolveJsonModule option
|
||||
- Upgrade to `@polkadot/wasm-crypto` 7.0.3
|
||||
|
||||
|
||||
## 11.0.1 Mar 4, 2023
|
||||
|
||||
Changes:
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"versions": {
|
||||
"git": "11.0.2-4-x",
|
||||
"npm": "11.0.1"
|
||||
@@ -35,8 +35,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.21.0",
|
||||
"@polkadot/dev": "^0.71.1",
|
||||
"@types/node": "^18.14.6"
|
||||
"@polkadot/dev": "^0.71.4",
|
||||
"@types/node": "^18.15.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"typescript": "^4.9.5"
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
@@ -24,7 +24,7 @@
|
||||
"@ledgerhq/hw-transport": "^6.28.1",
|
||||
"@ledgerhq/hw-transport-webhid": "^6.27.12",
|
||||
"@ledgerhq/hw-transport-webusb": "^6.27.12",
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
|
||||
@@ -19,12 +19,12 @@
|
||||
"./detectPackage.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@ledgerhq/hw-transport": "^6.28.1",
|
||||
"@polkadot/hw-ledger-transports": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/hw-ledger-transports": "11.0.2",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@zondax/ledger-substrate": "^0.40.5",
|
||||
"tslib": "^2.5.0"
|
||||
}
|
||||
|
||||
@@ -20,15 +20,15 @@
|
||||
"./detectPackage.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util-crypto": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@polkadot/util-crypto": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util-crypto": "11.0.2-4-x"
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@polkadot/util-crypto": "11.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@substrate/ss58-registry": "^1.39.0",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/hw-ledger": "11.0.2-4-x"
|
||||
"@polkadot/hw-ledger": "11.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ import known from '@substrate/ss58-registry';
|
||||
import fs from 'node:fs';
|
||||
import path from 'node:path';
|
||||
|
||||
import other from './test/ss58registry.test.json' assert { type: 'json' };
|
||||
const other = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'packages/networks/src/test/ss58registry.test.json'), 'utf-8')) as unknown;
|
||||
|
||||
describe('@substrate/ss58-registry', (): void => {
|
||||
it('has known values', (): void => {
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
"compilerOptions": {
|
||||
"baseUrl": "..",
|
||||
"outDir": "./build",
|
||||
"resolveJsonModule": true,
|
||||
"rootDir": "./src"
|
||||
},
|
||||
"include": [
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"./detectPackage.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": {
|
||||
"crypto": false,
|
||||
"stream": false
|
||||
@@ -31,11 +31,11 @@
|
||||
"dependencies": {
|
||||
"@noble/hashes": "1.2.0",
|
||||
"@noble/secp256k1": "1.7.1",
|
||||
"@polkadot/networks": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/wasm-crypto": "^7.0.2",
|
||||
"@polkadot/x-bigint": "11.0.2-4-x",
|
||||
"@polkadot/x-randomvalues": "11.0.2-4-x",
|
||||
"@polkadot/networks": "11.0.2",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@polkadot/wasm-crypto": "^7.0.3",
|
||||
"@polkadot/x-bigint": "11.0.2",
|
||||
"@polkadot/x-randomvalues": "11.0.2",
|
||||
"@scure/base": "1.1.1",
|
||||
"ed2curve": "^0.3.0",
|
||||
"tslib": "^2.5.0",
|
||||
@@ -45,6 +45,6 @@
|
||||
"@types/ed2curve": "^0.2.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x"
|
||||
"@polkadot/util": "11.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"./detectPackage.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"exports": {
|
||||
"./hex/toU8a": {
|
||||
@@ -37,15 +37,15 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@polkadot/x-bigint": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-textdecoder": "11.0.2-4-x",
|
||||
"@polkadot/x-textencoder": "11.0.2-4-x",
|
||||
"@polkadot/x-bigint": "11.0.2",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"@polkadot/x-textdecoder": "11.0.2",
|
||||
"@polkadot/x-textencoder": "11.0.2",
|
||||
"@types/bn.js": "^5.1.1",
|
||||
"bn.js": "^5.2.1",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/x-randomvalues": "11.0.2-4-x"
|
||||
"@polkadot/x-randomvalues": "11.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
"./shim.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"buffer-es6": "^4.9.3",
|
||||
"tslib": "^2.5.0"
|
||||
}
|
||||
|
||||
@@ -17,12 +17,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"node-fetch": "^3.3.0",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"tslib": "^2.5.0"
|
||||
|
||||
@@ -17,16 +17,16 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/util": "11.0.2-4-x",
|
||||
"@polkadot/util": "11.0.2",
|
||||
"@types/react-native": "^0.71.3"
|
||||
},
|
||||
"denoDependencies": {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
"baseUrl": "..",
|
||||
"outDir": "./build",
|
||||
"rootDir": "./src",
|
||||
"resolveJsonModule": true,
|
||||
"emitDeclarationOnly": false,
|
||||
"noEmit": true
|
||||
},
|
||||
|
||||
@@ -17,12 +17,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"denoDependencies": {
|
||||
|
||||
@@ -17,12 +17,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"denoDependencies": {
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "11.0.2-4-x",
|
||||
"version": "11.0.2",
|
||||
"browser": "browser.js",
|
||||
"main": "node.js",
|
||||
"react-native": "react-native.js",
|
||||
"dependencies": {
|
||||
"@polkadot/x-global": "11.0.2-4-x",
|
||||
"@polkadot/x-global": "11.0.2",
|
||||
"tslib": "^2.5.0",
|
||||
"ws": "^8.12.1"
|
||||
"ws": "^8.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/ws": "^8.5.4"
|
||||
|
||||
@@ -30,7 +30,6 @@
|
||||
"@polkadot/x-textencoder": ["x-textencoder/src/browser.ts"],
|
||||
"@polkadot/x-ws": ["x-ws/src/browser.ts"]
|
||||
},
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true
|
||||
}
|
||||
}
|
||||
|
||||
192
yarn.lock
192
yarn.lock
@@ -661,9 +661,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/dev@npm:^0.71.1":
|
||||
version: 0.71.1
|
||||
resolution: "@polkadot/dev@npm:0.71.1"
|
||||
"@polkadot/dev@npm:^0.71.4":
|
||||
version: 0.71.4
|
||||
resolution: "@polkadot/dev@npm:0.71.4"
|
||||
dependencies:
|
||||
"@eslint/js": ^8.35.0
|
||||
"@rollup/plugin-alias": ^4.0.3
|
||||
@@ -693,12 +693,12 @@ __metadata:
|
||||
gh-release: ^7.0.2
|
||||
jsdom: ^21.1.0
|
||||
madge: ^6.0.0
|
||||
rollup: ^3.18.0
|
||||
rollup: ^3.19.1
|
||||
rollup-plugin-cleanup: ^3.2.1
|
||||
tap-parser: ^12.0.1
|
||||
tslib: ^2.5.0
|
||||
typescript: ^4.9.5
|
||||
webpack: ^5.75.0
|
||||
webpack: ^5.76.0
|
||||
webpack-cli: ^5.0.1
|
||||
webpack-dev-server: ^4.11.1
|
||||
webpack-merge: ^5.8.0
|
||||
@@ -728,11 +728,11 @@ __metadata:
|
||||
polkadot-exec-rollup: scripts/polkadot-exec-rollup.mjs
|
||||
polkadot-exec-tsc: scripts/polkadot-exec-tsc.mjs
|
||||
polkadot-exec-webpack: scripts/polkadot-exec-webpack.mjs
|
||||
checksum: 18505f604cd99a6fa858fe0dd6f9f09f6ae46bc3428616dd8df6f4533b4854de1c517f1c0ede5f7c11a881ffea2175ffd48c8526ea16f7da3320595d0ae67cf8
|
||||
checksum: 11b8cc42bd637245dd972a5c740b02fa5bf1dcd5a3a849af1b34c3d3bd21cb2a654d423eeceee79b29d3327ba47b9066cd11f73ee1df9751e0928f611721852c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/hw-ledger-transports@11.0.2-4-x, @polkadot/hw-ledger-transports@workspace:packages/hw-ledger-transports":
|
||||
"@polkadot/hw-ledger-transports@11.0.2, @polkadot/hw-ledger-transports@workspace:packages/hw-ledger-transports":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/hw-ledger-transports@workspace:packages/hw-ledger-transports"
|
||||
dependencies:
|
||||
@@ -740,7 +740,7 @@ __metadata:
|
||||
"@ledgerhq/hw-transport-node-hid-singleton": ^6.28.9
|
||||
"@ledgerhq/hw-transport-webhid": ^6.27.12
|
||||
"@ledgerhq/hw-transport-webusb": ^6.27.12
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
tslib: ^2.5.0
|
||||
dependenciesMeta:
|
||||
"@ledgerhq/hw-transport-node-hid-singleton":
|
||||
@@ -748,13 +748,13 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/hw-ledger@11.0.2-4-x, @polkadot/hw-ledger@workspace:packages/hw-ledger":
|
||||
"@polkadot/hw-ledger@11.0.2, @polkadot/hw-ledger@workspace:packages/hw-ledger":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/hw-ledger@workspace:packages/hw-ledger"
|
||||
dependencies:
|
||||
"@ledgerhq/hw-transport": ^6.28.1
|
||||
"@polkadot/hw-ledger-transports": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/hw-ledger-transports": 11.0.2
|
||||
"@polkadot/util": 11.0.2
|
||||
"@zondax/ledger-substrate": ^0.40.5
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
@@ -764,145 +764,145 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/keyring@workspace:packages/keyring"
|
||||
dependencies:
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/util-crypto": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
"@polkadot/util-crypto": 11.0.2
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/util-crypto": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
"@polkadot/util-crypto": 11.0.2
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/networks@11.0.2-4-x, @polkadot/networks@workspace:packages/networks":
|
||||
"@polkadot/networks@11.0.2, @polkadot/networks@workspace:packages/networks":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/networks@workspace:packages/networks"
|
||||
dependencies:
|
||||
"@polkadot/hw-ledger": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/hw-ledger": 11.0.2
|
||||
"@polkadot/util": 11.0.2
|
||||
"@substrate/ss58-registry": ^1.39.0
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/util-crypto@11.0.2-4-x, @polkadot/util-crypto@workspace:packages/util-crypto":
|
||||
"@polkadot/util-crypto@11.0.2, @polkadot/util-crypto@workspace:packages/util-crypto":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/util-crypto@workspace:packages/util-crypto"
|
||||
dependencies:
|
||||
"@noble/hashes": 1.2.0
|
||||
"@noble/secp256k1": 1.7.1
|
||||
"@polkadot/networks": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/wasm-crypto": ^7.0.2
|
||||
"@polkadot/x-bigint": 11.0.2-4-x
|
||||
"@polkadot/x-randomvalues": 11.0.2-4-x
|
||||
"@polkadot/networks": 11.0.2
|
||||
"@polkadot/util": 11.0.2
|
||||
"@polkadot/wasm-crypto": ^7.0.3
|
||||
"@polkadot/x-bigint": 11.0.2
|
||||
"@polkadot/x-randomvalues": 11.0.2
|
||||
"@scure/base": 1.1.1
|
||||
"@types/ed2curve": ^0.2.2
|
||||
ed2curve: ^0.3.0
|
||||
tslib: ^2.5.0
|
||||
tweetnacl: ^1.0.3
|
||||
peerDependencies:
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/util@11.0.2-4-x, @polkadot/util@workspace:packages/util":
|
||||
"@polkadot/util@11.0.2, @polkadot/util@workspace:packages/util":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/util@workspace:packages/util"
|
||||
dependencies:
|
||||
"@polkadot/x-bigint": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-randomvalues": 11.0.2-4-x
|
||||
"@polkadot/x-textdecoder": 11.0.2-4-x
|
||||
"@polkadot/x-textencoder": 11.0.2-4-x
|
||||
"@polkadot/x-bigint": 11.0.2
|
||||
"@polkadot/x-global": 11.0.2
|
||||
"@polkadot/x-randomvalues": 11.0.2
|
||||
"@polkadot/x-textdecoder": 11.0.2
|
||||
"@polkadot/x-textencoder": 11.0.2
|
||||
"@types/bn.js": ^5.1.1
|
||||
bn.js: ^5.2.1
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/wasm-bridge@npm:7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-bridge@npm:7.0.2"
|
||||
"@polkadot/wasm-bridge@npm:7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-bridge@npm:7.0.3"
|
||||
dependencies:
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
"@polkadot/x-randomvalues": "*"
|
||||
checksum: 328412bd6898dd69e53fd0f9b7afb5dbad4da22bd6cf6b6c06bbe0684ea4154bbd435873df3bc963d551422f243f8f9ad182980e2aba7edf9fd41a6b788431ca
|
||||
checksum: 9603e0bfca80e0fbe1192783653c095990d34e4eb0b187f8fedd97abaeee4a3147e4f5e66e910b63f024030b0e7e21aedf118c0c58407a4464837ca7f2355809
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/wasm-crypto-asmjs@npm:7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-crypto-asmjs@npm:7.0.2"
|
||||
"@polkadot/wasm-crypto-asmjs@npm:7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-crypto-asmjs@npm:7.0.3"
|
||||
dependencies:
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
checksum: 7308e2afc92aea1af24c8c856ba1928f51f86844f9504bff0931e3ac77ca01721c7bef932496438246b2c3cb5310068aa24bd1ffa5856cfaf0280be9b820c1be
|
||||
checksum: 6f819ba35612c475b3b14f286efa432086bdb9599ddb034c1abf448f0ad6e376ae81bac0ad4984564f6d5f82691ed5c4b74735ebc75dfdecf8f96f2e4bfcd5a3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/wasm-crypto-init@npm:7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-crypto-init@npm:7.0.2"
|
||||
"@polkadot/wasm-crypto-init@npm:7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-crypto-init@npm:7.0.3"
|
||||
dependencies:
|
||||
"@polkadot/wasm-bridge": 7.0.2
|
||||
"@polkadot/wasm-crypto-asmjs": 7.0.2
|
||||
"@polkadot/wasm-crypto-wasm": 7.0.2
|
||||
"@polkadot/wasm-bridge": 7.0.3
|
||||
"@polkadot/wasm-crypto-asmjs": 7.0.3
|
||||
"@polkadot/wasm-crypto-wasm": 7.0.3
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
"@polkadot/x-randomvalues": "*"
|
||||
checksum: 158cc427c994e2e1ed02e903055259b69956b1ebab5e20c755dfd5615faf675420baa2827fedfd68433e20bcd6c25e5d18b7517af6257c89d0ffcf8893ef806f
|
||||
checksum: ee5957c0b2297e58d913e59a5eecde10c8272a2bfc6e072e669ee8ada0105444f8d9cae535948849406fd696941620094daea12cc2950e18a0439d7fba2e19d8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/wasm-crypto-wasm@npm:7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-crypto-wasm@npm:7.0.2"
|
||||
"@polkadot/wasm-crypto-wasm@npm:7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-crypto-wasm@npm:7.0.3"
|
||||
dependencies:
|
||||
"@polkadot/wasm-util": 7.0.2
|
||||
"@polkadot/wasm-util": 7.0.3
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
checksum: 03cf91b9cef636449707b10d92adbea77a472ac0aa8339891e321ec33b31de71928798ecbc7ad6189af7ec183d5dbc00ee56b162a5b81947b984540761261d91
|
||||
checksum: ef9e6e88e066762e3803b8b0f4276035b835b2eaab86c53f004f977073442b6e51d7baf4c7bc308913c091975056c1b64ef1c00085e31f9988e12155b24111fb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/wasm-crypto@npm:^7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-crypto@npm:7.0.2"
|
||||
"@polkadot/wasm-crypto@npm:^7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-crypto@npm:7.0.3"
|
||||
dependencies:
|
||||
"@polkadot/wasm-bridge": 7.0.2
|
||||
"@polkadot/wasm-crypto-asmjs": 7.0.2
|
||||
"@polkadot/wasm-crypto-init": 7.0.2
|
||||
"@polkadot/wasm-crypto-wasm": 7.0.2
|
||||
"@polkadot/wasm-util": 7.0.2
|
||||
"@polkadot/wasm-bridge": 7.0.3
|
||||
"@polkadot/wasm-crypto-asmjs": 7.0.3
|
||||
"@polkadot/wasm-crypto-init": 7.0.3
|
||||
"@polkadot/wasm-crypto-wasm": 7.0.3
|
||||
"@polkadot/wasm-util": 7.0.3
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
"@polkadot/x-randomvalues": "*"
|
||||
checksum: 00b14394371f15af4b6a893c1f525e454714aa4b4c59376e89014c292e7c707e031b86e4efc3871b4632d882bd6f94537de3b579ab5ea710cf8dfa8699b44511
|
||||
checksum: e63fefca98685ea5ef488304e5aa7c30b1c483d7f633cda1efebfc95f8255faaf62fbaba439d81e57fadc11e53d3033a5b71272742cbdc0207f4ba617dba8123
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/wasm-util@npm:7.0.2":
|
||||
version: 7.0.2
|
||||
resolution: "@polkadot/wasm-util@npm:7.0.2"
|
||||
"@polkadot/wasm-util@npm:7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "@polkadot/wasm-util@npm:7.0.3"
|
||||
dependencies:
|
||||
tslib: ^2.5.0
|
||||
peerDependencies:
|
||||
"@polkadot/util": "*"
|
||||
checksum: 8f314f9b651a789a7cfb06bacd4b84409ccd8f5b415454e9cb3bb732ffbb8f3e3ef44e6aee7883856b7edf7ad49c36643419fcdba1c4c8d9329e893147a32347
|
||||
checksum: b20414290bbc9f67523c5180345f20ea8ef6244c90768936e0a25cce642448b086374869b99e6f2f7c071c0dea318ac9fb9761b8efefdeb24b75828c5d8bec3d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/x-bigint@11.0.2-4-x, @polkadot/x-bigint@workspace:packages/x-bigint":
|
||||
"@polkadot/x-bigint@11.0.2, @polkadot/x-bigint@workspace:packages/x-bigint":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-bigint@workspace:packages/x-bigint"
|
||||
dependencies:
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@@ -911,7 +911,7 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-bundle@workspace:packages/x-bundle"
|
||||
dependencies:
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
buffer-es6: ^4.9.3
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
@@ -921,14 +921,14 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-fetch@workspace:packages/x-fetch"
|
||||
dependencies:
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2
|
||||
"@types/node-fetch": ^2.6.2
|
||||
node-fetch: ^3.3.0
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/x-global@11.0.2-4-x, @polkadot/x-global@workspace:packages/x-global":
|
||||
"@polkadot/x-global@11.0.2, @polkadot/x-global@workspace:packages/x-global":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-global@workspace:packages/x-global"
|
||||
dependencies:
|
||||
@@ -936,31 +936,31 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/x-randomvalues@11.0.2-4-x, @polkadot/x-randomvalues@workspace:packages/x-randomvalues":
|
||||
"@polkadot/x-randomvalues@11.0.2, @polkadot/x-randomvalues@workspace:packages/x-randomvalues":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-randomvalues@workspace:packages/x-randomvalues"
|
||||
dependencies:
|
||||
"@polkadot/util": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/util": 11.0.2
|
||||
"@polkadot/x-global": 11.0.2
|
||||
"@types/react-native": ^0.71.3
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/x-textdecoder@11.0.2-4-x, @polkadot/x-textdecoder@workspace:packages/x-textdecoder":
|
||||
"@polkadot/x-textdecoder@11.0.2, @polkadot/x-textdecoder@workspace:packages/x-textdecoder":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-textdecoder@workspace:packages/x-textdecoder"
|
||||
dependencies:
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/x-textencoder@11.0.2-4-x, @polkadot/x-textencoder@workspace:packages/x-textencoder":
|
||||
"@polkadot/x-textencoder@11.0.2, @polkadot/x-textencoder@workspace:packages/x-textencoder":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-textencoder@workspace:packages/x-textencoder"
|
||||
dependencies:
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2
|
||||
tslib: ^2.5.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@@ -969,10 +969,10 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/x-ws@workspace:packages/x-ws"
|
||||
dependencies:
|
||||
"@polkadot/x-global": 11.0.2-4-x
|
||||
"@polkadot/x-global": 11.0.2
|
||||
"@types/ws": ^8.5.4
|
||||
tslib: ^2.5.0
|
||||
ws: ^8.12.1
|
||||
ws: ^8.13.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -1297,10 +1297,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/node@npm:*, @types/node@npm:^18.14.6":
|
||||
version: 18.14.6
|
||||
resolution: "@types/node@npm:18.14.6"
|
||||
checksum: 2f88f482cabadc6dbddd627a1674239e68c3c9beab56eb4ae2309fb96fd17fc3a509d99b0309bafe13b58529574f49ecf3a583f2ebe2896dd32fe4be436dc96e
|
||||
"@types/node@npm:*, @types/node@npm:^18.15.0":
|
||||
version: 18.15.0
|
||||
resolution: "@types/node@npm:18.15.0"
|
||||
checksum: d81372276dd5053b1743338b61a2178ff9722dc609189d01fc7d1c2acd539414039e0e4780678730514390dad3f29c366a28c29e8dbd5b0025651181f6dd6669
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7926,9 +7926,9 @@ fsevents@~2.3.2:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rollup@npm:^3.18.0":
|
||||
version: 3.18.0
|
||||
resolution: "rollup@npm:3.18.0"
|
||||
"rollup@npm:^3.19.1":
|
||||
version: 3.19.1
|
||||
resolution: "rollup@npm:3.19.1"
|
||||
dependencies:
|
||||
fsevents: ~2.3.2
|
||||
dependenciesMeta:
|
||||
@@ -7936,7 +7936,7 @@ fsevents@~2.3.2:
|
||||
optional: true
|
||||
bin:
|
||||
rollup: dist/bin/rollup
|
||||
checksum: 0bcd1abb1cc383abdd09b5594de862ecb2f946e950954bb472a370289bdc4499aea8d04477be55ce205450d973d38ad255f0dc6926162500a251d73bf0e60e6f
|
||||
checksum: f78198c6de224b26650c70b16db156762d1fcceeb375d34fb2c76fc5b23a78f712c3c881d3248e6f277a511589e20d50c247bcf5c7920f1ddc0a43cadf9f0140
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7945,8 +7945,8 @@ fsevents@~2.3.2:
|
||||
resolution: "root-workspace-0b6124@workspace:."
|
||||
dependencies:
|
||||
"@babel/core": ^7.21.0
|
||||
"@polkadot/dev": ^0.71.1
|
||||
"@types/node": ^18.14.6
|
||||
"@polkadot/dev": ^0.71.4
|
||||
"@types/node": ^18.15.0
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -9399,9 +9399,9 @@ fsevents@~2.3.2:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"webpack@npm:^5.75.0":
|
||||
version: 5.75.0
|
||||
resolution: "webpack@npm:5.75.0"
|
||||
"webpack@npm:^5.76.0":
|
||||
version: 5.76.1
|
||||
resolution: "webpack@npm:5.76.1"
|
||||
dependencies:
|
||||
"@types/eslint-scope": ^3.7.3
|
||||
"@types/estree": ^0.0.51
|
||||
@@ -9432,7 +9432,7 @@ fsevents@~2.3.2:
|
||||
optional: true
|
||||
bin:
|
||||
webpack: bin/webpack.js
|
||||
checksum: 2bcc5f3c195f375944e8af2f00bf2feea39cb9fda5f763b0d1b00077f1c51783db25c94d3fae96a07dead9fa085e6ae7474417e5ab31719c9776ea5969ceb83a
|
||||
checksum: b01fe0bc2dbca0e10d290ddb0bf81e807a031de48028176e2b21afd696b4d3f25ab9accdad888ef4a1f7c7f4d41f13d5bf2395b7653fdf3e5e3dafa54e56dab2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -9599,9 +9599,9 @@ fsevents@~2.3.2:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ws@npm:^8.11.0, ws@npm:^8.12.1, ws@npm:^8.4.2":
|
||||
version: 8.12.1
|
||||
resolution: "ws@npm:8.12.1"
|
||||
"ws@npm:^8.11.0, ws@npm:^8.13.0, ws@npm:^8.4.2":
|
||||
version: 8.13.0
|
||||
resolution: "ws@npm:8.13.0"
|
||||
peerDependencies:
|
||||
bufferutil: ^4.0.1
|
||||
utf-8-validate: ">=5.0.2"
|
||||
@@ -9610,7 +9610,7 @@ fsevents@~2.3.2:
|
||||
optional: true
|
||||
utf-8-validate:
|
||||
optional: true
|
||||
checksum: 97301c1c4d838fc81bd413f370f75c12aabe44527b31323b761eab3043a9ecb7e32ffd668548382c9a6a5ad3a1c3a9249608e8338e6b939f2f9540f1e21970b5
|
||||
checksum: 53e991bbf928faf5dc6efac9b8eb9ab6497c69feeb94f963d648b7a3530a720b19ec2e0ec037344257e05a4f35bd9ad04d9de6f289615ffb133282031b18c61c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user