From 179642b38057a8eecf5bb74dd33d26d48d55aaaf Mon Sep 17 00:00:00 2001 From: Zeke Mostov <32168567+emostov@users.noreply.github.com> Date: Wed, 10 Mar 2021 09:51:28 -0800 Subject: [PATCH] feat(types)!: camelCase enum serialization; Bump polkadot/api@v4 w. ESM (#467) BREAKING CHANGE Enums in responses serialize with [camelCase variants](https://github.com/polkadot-js/api/pull/3024). Check spec diffs for details Other changes - Reverses regressions in decoding blocks with [sudo proxy variants](https://github.com/polkadot-js/api/pull/3286) - Updates jest.config to treat `.js` files as ESM - transforming @polkadot/* packages from ESM to CJS. - Bump deps --- babel.config.js | 3 + jest.config.js | 5 +- package.json | 13 +- src/sanitize/sanitizeNumbers.spec.ts | 30 +- src/sanitize/sanitizeNumbers.ts | 8 +- .../responses/accounts/stakingInfo789629.json | 4 +- .../responses/blocks/blocks789629.json | 2 +- .../test-helpers/responses/node/network.json | 2 +- .../responses/pallets/fetchStorage789629.json | 28 +- .../pallets/fetchStorageItemMeta789629.json | 2 +- .../pallets/stakingProgress789629.json | 2 +- .../responses/runtime/metadata789629.json | 392 +++++----- .../test-helpers/responses/runtime/spec.json | 2 +- .../metadata/polkadotMetadataV16.json | 392 +++++----- yarn.lock | 698 +++++++++++------- 15 files changed, 892 insertions(+), 691 deletions(-) create mode 100644 babel.config.js diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 000000000..78ce3d2c8 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + "plugins": ["@babel/plugin-transform-modules-commonjs"] +} diff --git a/jest.config.js b/jest.config.js index c4b759ebe..594baa9de 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,4 +1,5 @@ module.exports = { - preset: 'ts-jest', - testPathIgnorePatterns: ['/build/', '/node_modules/', '/docs/'] + preset: 'ts-jest/presets/js-with-babel', + transformIgnorePatterns: ['/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)'], + testPathIgnorePatterns: ['/build/', '/node_modules/', '/docs/'], }; diff --git a/package.json b/package.json index 7f6325e34..59845a198 100644 --- a/package.json +++ b/package.json @@ -36,9 +36,9 @@ "test": "jest --silent" }, "dependencies": { - "@polkadot/api": "^3.11.1", + "@polkadot/api": "^4.0.3", "@polkadot/apps-config": "^0.83.1", - "@polkadot/util-crypto": "^5.9.2", + "@polkadot/util-crypto": "^6.0.5", "@substrate/calc": "^0.2.0", "confmgr": "^1.0.6", "express": "^4.17.1", @@ -47,14 +47,15 @@ "winston": "^3.3.3" }, "devDependencies": { + "@babel/plugin-transform-modules-commonjs": "^7.13.8", "@types/express": "^4.17.11", "@types/express-serve-static-core": "^4.17.18", "@types/http-errors": "^1.6.3", "@types/jest": "^26.0.20", "@types/morgan": "^1.9.2", "@types/triple-beam": "^1.3.2", - "@typescript-eslint/eslint-plugin": "4.16.1", - "@typescript-eslint/parser": "4.16.1", + "@typescript-eslint/eslint-plugin": "4.17.0", + "@typescript-eslint/parser": "4.17.0", "eslint": "^7.21.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^3.3.1", @@ -63,9 +64,9 @@ "prettier": "^2.2.1", "rimraf": "^3.0.2", "standard-version": "^9.1.1", - "ts-jest": "^26.5.1", + "ts-jest": "^26.5.3", "tsc-watch": "^4.2.9", - "typescript": "4.1.4" + "typescript": "4.2.3" }, "resolutions": { "node-forge": ">=0.10.0", diff --git a/src/sanitize/sanitizeNumbers.spec.ts b/src/sanitize/sanitizeNumbers.spec.ts index 55fc7572c..b7e6e51ca 100644 --- a/src/sanitize/sanitizeNumbers.spec.ts +++ b/src/sanitize/sanitizeNumbers.spec.ts @@ -303,7 +303,7 @@ describe('sanitizeNumbers', () => { '0x0102030405060708091011121314151617181920212223242526272829303132', }); expect(sanitizeNumbers(data)).toStrictEqual({ - Keccak256: + keccak256: '0x0102030405060708091011121314151617181920212223242526272829303132', }); }); @@ -570,8 +570,8 @@ describe('sanitizeNumbers', () => { ); expect(sanitizeNumbers(test)).toStrictEqual({ - B: { - D: MAX_U64, + b: { + d: MAX_U64, }, }); }); @@ -641,7 +641,7 @@ describe('sanitizeNumbers', () => { // }); it('handles Ok()', () => { const ok = kusamaRegistry.createType('DispatchResult'); - expect(sanitizeNumbers(ok)).toStrictEqual({ Ok: [] }); + expect(sanitizeNumbers(ok)).toStrictEqual({ ok: [] }); }); // it('converts Error(u128)', () => { @@ -655,7 +655,7 @@ describe('sanitizeNumbers', () => { Err: maxU128, }); expect(sanitizeNumbers(error)).toStrictEqual({ - Err: MAX_U128, + err: MAX_U128, }); }); @@ -667,10 +667,10 @@ describe('sanitizeNumbers', () => { // }); it('handles Error(Text)', () => { const error = new ResultConstructor(kusamaRegistry, { - Err: message, + err: message, }); expect(sanitizeNumbers(error)).toStrictEqual({ - Err: message.toString(), + err: message.toString(), }); }); @@ -686,7 +686,7 @@ describe('sanitizeNumbers', () => { ok: maxU128, }); - expect(sanitizeNumbers(ok)).toStrictEqual({ Ok: MAX_U128 }); + expect(sanitizeNumbers(ok)).toStrictEqual({ ok: MAX_U128 }); }); // it('handles Ok(Text)', () => { @@ -699,10 +699,10 @@ describe('sanitizeNumbers', () => { it('handles Ok(Text)', () => { const R = Result.with({ Err: 'Text', Ok: 'Text' }); const ok = new R(kusamaRegistry, { - Ok: message, + ok: message, }); expect(sanitizeNumbers(ok)).toStrictEqual({ - Ok: message.toString(), + ok: message.toString(), }); }); }); @@ -924,12 +924,12 @@ describe('sanitizeNumbers', () => { ], index: '0x0000', }, - phase: { ApplyExtrinsic: '0' }, + phase: { applyExtrinsic: '0' }, topics: [], }, { event: { data: null, index: '0x0000' }, - phase: { ApplyExtrinsic: '0' }, + phase: { applyExtrinsic: '0' }, topics: [], }, ]); @@ -951,7 +951,7 @@ describe('sanitizeNumbers', () => { '0x6502' ); expect(sanitizeNumbers(extrinsicEra)).toStrictEqual({ - MortalEra: ['64', '38'], + mortalEra: ['64', '38'], }); }); @@ -1170,10 +1170,10 @@ describe('sanitizeNumbers', () => { const open = kusamaRegistry.createType('ElectionStatus', { open: 420420, }); - expect(sanitizeNumbers(open)).toStrictEqual({ Open: '420420' }); + expect(sanitizeNumbers(open)).toStrictEqual({ open: '420420' }); const close = kusamaRegistry.createType('ElectionStatus', 'close'); - expect(sanitizeNumbers(close)).toStrictEqual({ Close: null }); + expect(sanitizeNumbers(close)).toStrictEqual({ close: null }); }); }); diff --git a/src/sanitize/sanitizeNumbers.ts b/src/sanitize/sanitizeNumbers.ts index a825521d7..769068456 100644 --- a/src/sanitize/sanitizeNumbers.ts +++ b/src/sanitize/sanitizeNumbers.ts @@ -10,7 +10,7 @@ import { AbstractArray } from '@polkadot/types/codec/AbstractArray'; import { AbstractInt } from '@polkadot/types/codec/AbstractInt'; import { Json } from '@polkadot/types/codec/Json'; import { CodecMap } from '@polkadot/types/codec/Map'; -import { isObject } from '@polkadot/util'; +import { isObject, stringCamelCase } from '@polkadot/util'; import * as BN from 'bn.js'; import { InternalServerError } from 'http-errors'; @@ -68,7 +68,11 @@ function sanitizeCodec(value: Codec): AnyJson { return value.toJSON(); } - return { [value.type]: sanitizeNumbers(value.value) }; + return { + // Replicating camelCaseing introduced in https://github.com/polkadot-js/api/pull/3024 + // Specifically see: https://github.com/polkadot-js/api/blob/516fbd4a90652841d4e81636e74ca472e2dc5621/packages/types/src/codec/Enum.ts#L346 + [stringCamelCase(value.type)]: sanitizeNumbers(value.value), + }; } if (value instanceof BTreeSet) { diff --git a/src/services/test-helpers/responses/accounts/stakingInfo789629.json b/src/services/test-helpers/responses/accounts/stakingInfo789629.json index 149d0e150..279a5afd6 100644 --- a/src/services/test-helpers/responses/accounts/stakingInfo789629.json +++ b/src/services/test-helpers/responses/accounts/stakingInfo789629.json @@ -4,7 +4,9 @@ "height": "789629" }, "controller": "1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE", - "rewardDestination": "Controller", + "rewardDestination": { + "controller": null + }, "numSlashingSpans": "0", "staking": { "stash": "1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE", diff --git a/src/services/test-helpers/responses/blocks/blocks789629.json b/src/services/test-helpers/responses/blocks/blocks789629.json index 57e74a6a7..4c6ca1bdd 100644 --- a/src/services/test-helpers/responses/blocks/blocks789629.json +++ b/src/services/test-helpers/responses/blocks/blocks789629.json @@ -1259,7 +1259,7 @@ }, "data": [ { - "Ok": [] + "ok": [] } ], "docs": " A proxy was executed correctly, with the given [result]." diff --git a/src/services/test-helpers/responses/node/network.json b/src/services/test-helpers/responses/node/network.json index a38dd5546..8010b6006 100644 --- a/src/services/test-helpers/responses/node/network.json +++ b/src/services/test-helpers/responses/node/network.json @@ -1,7 +1,7 @@ { "nodeRoles": [ { - "Full": null + "full": null } ], "isSyncing": false, diff --git a/src/services/test-helpers/responses/pallets/fetchStorage789629.json b/src/services/test-helpers/responses/pallets/fetchStorage789629.json index 6081a8962..7151bc3f8 100644 --- a/src/services/test-helpers/responses/pallets/fetchStorage789629.json +++ b/src/services/test-helpers/responses/pallets/fetchStorage789629.json @@ -10,7 +10,7 @@ "name": "PublicPropCount", "modifier": "Default", "type": { - "Plain": "PropIndex" + "plain": "PropIndex" }, "fallback": "0x00000000", "documentation": " The number of (public) proposals that have been made so far." @@ -19,7 +19,7 @@ "name": "PublicProps", "modifier": "Default", "type": { - "Plain": "Vec<(PropIndex,Hash,AccountId)>" + "plain": "Vec<(PropIndex,Hash,AccountId)>" }, "fallback": "0x00", "documentation": " The public proposals. Unsorted. The second item is the proposal's hash." @@ -28,7 +28,7 @@ "name": "DepositOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "PropIndex", "value": "(Vec,BalanceOf)", @@ -42,7 +42,7 @@ "name": "Preimages", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "PreimageStatus", @@ -56,7 +56,7 @@ "name": "ReferendumCount", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": " The next free referendum index, aka the number of referenda started so far." @@ -65,7 +65,7 @@ "name": "LowestUnbaked", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": " The lowest referendum index representing an unbaked referendum. Equal to\n `ReferendumCount` if there isn't a unbaked referendum." @@ -74,7 +74,7 @@ "name": "ReferendumInfoOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReferendumIndex", "value": "ReferendumInfo", @@ -88,7 +88,7 @@ "name": "VotingOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Voting", @@ -102,7 +102,7 @@ "name": "Locks", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "BlockNumber", @@ -116,7 +116,7 @@ "name": "LastTabledWasExternal", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": " True if the last referendum tabled was submitted externally. False if it was a public\n proposal." @@ -125,7 +125,7 @@ "name": "NextExternal", "modifier": "Optional", "type": { - "Plain": "(Hash,VoteThreshold)" + "plain": "(Hash,VoteThreshold)" }, "fallback": "0x00", "documentation": " The referendum to be tabled whenever it would be valid to table an external proposal.\n This happens when a referendum needs to be tabled and one of two conditions are met:\n - `LastTabledWasExternal` is `false`; or\n - `PublicProps` is empty." @@ -134,7 +134,7 @@ "name": "Blacklist", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "(BlockNumber,Vec)", @@ -148,7 +148,7 @@ "name": "Cancellations", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "bool", @@ -162,7 +162,7 @@ "name": "StorageVersion", "modifier": "Optional", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": " Storage version of the pallet.\n\n New networks start with last version." diff --git a/src/services/test-helpers/responses/pallets/fetchStorageItemMeta789629.json b/src/services/test-helpers/responses/pallets/fetchStorageItemMeta789629.json index 111b59e73..e0e0c5660 100644 --- a/src/services/test-helpers/responses/pallets/fetchStorageItemMeta789629.json +++ b/src/services/test-helpers/responses/pallets/fetchStorageItemMeta789629.json @@ -11,7 +11,7 @@ "name": "ReferendumInfoOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReferendumIndex", "value": "ReferendumInfo", diff --git a/src/services/test-helpers/responses/pallets/stakingProgress789629.json b/src/services/test-helpers/responses/pallets/stakingProgress789629.json index cb4757dc5..c19b5384c 100644 --- a/src/services/test-helpers/responses/pallets/stakingProgress789629.json +++ b/src/services/test-helpers/responses/pallets/stakingProgress789629.json @@ -10,7 +10,7 @@ "nextActiveEraEstimate": "803868", "electionStatus": { "status": { - "Close": null + "close": null }, "toggleEstimate": "801318" }, diff --git a/src/services/test-helpers/responses/runtime/metadata789629.json b/src/services/test-helpers/responses/runtime/metadata789629.json index 00113e490..e5638827d 100644 --- a/src/services/test-helpers/responses/runtime/metadata789629.json +++ b/src/services/test-helpers/responses/runtime/metadata789629.json @@ -1,7 +1,7 @@ { "magicNumber": "1635018093", "metadata": { - "V11": { + "v11": { "modules": [ { "name": "System", @@ -12,7 +12,7 @@ "name": "Account", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountInfo", @@ -28,7 +28,7 @@ "name": "ExtrinsicCount", "modifier": "Optional", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00", "documentation": [ @@ -39,7 +39,7 @@ "name": "BlockWeight", "modifier": "Default", "type": { - "Plain": "ExtrinsicsWeight" + "plain": "ExtrinsicsWeight" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -50,7 +50,7 @@ "name": "AllExtrinsicsLen", "modifier": "Optional", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00", "documentation": [ @@ -61,7 +61,7 @@ "name": "BlockHash", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "Hash", @@ -77,7 +77,7 @@ "name": "ExtrinsicData", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "u32", "value": "Bytes", @@ -93,7 +93,7 @@ "name": "Number", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -104,7 +104,7 @@ "name": "ParentHash", "modifier": "Default", "type": { - "Plain": "Hash" + "plain": "Hash" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -115,7 +115,7 @@ "name": "ExtrinsicsRoot", "modifier": "Default", "type": { - "Plain": "Hash" + "plain": "Hash" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -126,7 +126,7 @@ "name": "Digest", "modifier": "Default", "type": { - "Plain": "DigestOf" + "plain": "DigestOf" }, "fallback": "0x00", "documentation": [ @@ -137,7 +137,7 @@ "name": "Events", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -148,7 +148,7 @@ "name": "EventCount", "modifier": "Default", "type": { - "Plain": "EventIndex" + "plain": "EventIndex" }, "fallback": "0x00000000", "documentation": [ @@ -159,7 +159,7 @@ "name": "EventTopics", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "Hash", "value": "Vec<(BlockNumber,EventIndex)>", @@ -184,7 +184,7 @@ "name": "LastRuntimeUpgrade", "modifier": "Optional", "type": { - "Plain": "LastRuntimeUpgradeInfo" + "plain": "LastRuntimeUpgradeInfo" }, "fallback": "0x00", "documentation": [ @@ -195,7 +195,7 @@ "name": "ExecutionPhase", "modifier": "Optional", "type": { - "Plain": "Phase" + "plain": "Phase" }, "fallback": "0x00", "documentation": [ @@ -538,7 +538,7 @@ "name": "RandomMaterial", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -563,7 +563,7 @@ "name": "Agenda", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "Vec>", @@ -579,7 +579,7 @@ "name": "Lookup", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Bytes", "value": "TaskAddress", @@ -595,7 +595,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -848,7 +848,7 @@ "name": "EpochIndex", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -859,7 +859,7 @@ "name": "Authorities", "modifier": "Default", "type": { - "Plain": "Vec<(AuthorityId,BabeAuthorityWeight)>" + "plain": "Vec<(AuthorityId,BabeAuthorityWeight)>" }, "fallback": "0x00", "documentation": [ @@ -870,7 +870,7 @@ "name": "GenesisSlot", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -882,7 +882,7 @@ "name": "CurrentSlot", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -893,7 +893,7 @@ "name": "Randomness", "modifier": "Default", "type": { - "Plain": "Randomness" + "plain": "Randomness" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -913,7 +913,7 @@ "name": "NextEpochConfig", "modifier": "Optional", "type": { - "Plain": "NextConfigDescriptor" + "plain": "NextConfigDescriptor" }, "fallback": "0x00", "documentation": [ @@ -924,7 +924,7 @@ "name": "NextRandomness", "modifier": "Default", "type": { - "Plain": "Randomness" + "plain": "Randomness" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -935,7 +935,7 @@ "name": "SegmentIndex", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -954,7 +954,7 @@ "name": "UnderConstruction", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "u32", "value": "Vec", @@ -970,7 +970,7 @@ "name": "Initialized", "modifier": "Optional", "type": { - "Plain": "MaybeRandomness" + "plain": "MaybeRandomness" }, "fallback": "0x00", "documentation": [ @@ -982,7 +982,7 @@ "name": "Lateness", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -1074,7 +1074,7 @@ "name": "Now", "modifier": "Default", "type": { - "Plain": "Moment" + "plain": "Moment" }, "fallback": "0x0000000000000000", "documentation": [ @@ -1085,7 +1085,7 @@ "name": "DidUpdate", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -1150,7 +1150,7 @@ "name": "Accounts", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountIndex", "value": "(AccountId,BalanceOf,bool)", @@ -1375,7 +1375,7 @@ "name": "TotalIssuance", "modifier": "Default", "type": { - "Plain": "Balance" + "plain": "Balance" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -1386,7 +1386,7 @@ "name": "Account", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountData", @@ -1404,7 +1404,7 @@ "name": "Locks", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "Vec", @@ -1421,7 +1421,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -1723,7 +1723,7 @@ "name": "NextFeeMultiplier", "modifier": "Default", "type": { - "Plain": "Multiplier" + "plain": "Multiplier" }, "fallback": "0x000064a7b3b6e00d0000000000000000", "documentation": [] @@ -1732,7 +1732,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [] @@ -1770,7 +1770,7 @@ "name": "Uncles", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -1781,7 +1781,7 @@ "name": "Author", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -1792,7 +1792,7 @@ "name": "DidSetUncles", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -1871,7 +1871,7 @@ "name": "HistoryDepth", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x54000000", "documentation": [ @@ -1888,7 +1888,7 @@ "name": "ValidatorCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -1899,7 +1899,7 @@ "name": "MinimumValidatorCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x04000000", "documentation": [ @@ -1910,7 +1910,7 @@ "name": "Invulnerables", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -1923,7 +1923,7 @@ "name": "Bonded", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "AccountId", @@ -1939,7 +1939,7 @@ "name": "Ledger", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "StakingLedger", @@ -1955,7 +1955,7 @@ "name": "Payee", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "RewardDestination", @@ -1971,7 +1971,7 @@ "name": "Validators", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "ValidatorPrefs", @@ -1987,7 +1987,7 @@ "name": "Nominators", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Nominations", @@ -2003,7 +2003,7 @@ "name": "CurrentEra", "modifier": "Optional", "type": { - "Plain": "EraIndex" + "plain": "EraIndex" }, "fallback": "0x00", "documentation": [ @@ -2017,7 +2017,7 @@ "name": "ActiveEra", "modifier": "Optional", "type": { - "Plain": "ActiveEraInfo" + "plain": "ActiveEraInfo" }, "fallback": "0x00", "documentation": [ @@ -2031,7 +2031,7 @@ "name": "ErasStartSessionIndex", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "SessionIndex", @@ -2047,7 +2047,7 @@ "name": "ErasStakers", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2069,7 +2069,7 @@ "name": "ErasStakersClipped", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2096,7 +2096,7 @@ "name": "ErasValidatorPrefs", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2117,7 +2117,7 @@ "name": "ErasValidatorReward", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "BalanceOf", @@ -2135,7 +2135,7 @@ "name": "ErasRewardPoints", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "EraRewardPoints", @@ -2152,7 +2152,7 @@ "name": "ErasTotalStake", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "BalanceOf", @@ -2169,7 +2169,7 @@ "name": "ForceEra", "modifier": "Default", "type": { - "Plain": "Forcing" + "plain": "Forcing" }, "fallback": "0x00", "documentation": [ @@ -2180,7 +2180,7 @@ "name": "SlashRewardFraction", "modifier": "Default", "type": { - "Plain": "Perbill" + "plain": "Perbill" }, "fallback": "0x00000000", "documentation": [ @@ -2193,7 +2193,7 @@ "name": "CanceledSlashPayout", "modifier": "Default", "type": { - "Plain": "BalanceOf" + "plain": "BalanceOf" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -2205,7 +2205,7 @@ "name": "UnappliedSlashes", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "Vec", @@ -2221,7 +2221,7 @@ "name": "BondedEras", "modifier": "Default", "type": { - "Plain": "Vec<(EraIndex,SessionIndex)>" + "plain": "Vec<(EraIndex,SessionIndex)>" }, "fallback": "0x00", "documentation": [ @@ -2235,7 +2235,7 @@ "name": "ValidatorSlashInEra", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2253,7 +2253,7 @@ "name": "NominatorSlashInEra", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2270,7 +2270,7 @@ "name": "SlashingSpans", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "SlashingSpans", @@ -2286,7 +2286,7 @@ "name": "SpanSlash", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(AccountId,SpanIndex)", "value": "SpanRecord", @@ -2303,7 +2303,7 @@ "name": "EarliestUnappliedSlash", "modifier": "Optional", "type": { - "Plain": "EraIndex" + "plain": "EraIndex" }, "fallback": "0x00", "documentation": [ @@ -2314,7 +2314,7 @@ "name": "SnapshotValidators", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -2326,7 +2326,7 @@ "name": "SnapshotNominators", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -2338,7 +2338,7 @@ "name": "QueuedElected", "modifier": "Optional", "type": { - "Plain": "ElectionResult" + "plain": "ElectionResult" }, "fallback": "0x00", "documentation": [ @@ -2351,7 +2351,7 @@ "name": "QueuedScore", "modifier": "Optional", "type": { - "Plain": "ElectionScore" + "plain": "ElectionScore" }, "fallback": "0x00", "documentation": [ @@ -2362,7 +2362,7 @@ "name": "EraElectionStatus", "modifier": "Default", "type": { - "Plain": "ElectionStatus" + "plain": "ElectionStatus" }, "fallback": "0x00", "documentation": [ @@ -2374,7 +2374,7 @@ "name": "IsCurrentSessionFinal", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -2386,7 +2386,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x03", "documentation": [ @@ -3485,7 +3485,7 @@ "name": "Reports", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReportIdOf", "value": "OffenceDetails", @@ -3501,7 +3501,7 @@ "name": "DeferredOffences", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3513,7 +3513,7 @@ "name": "ConcurrentReportsIndex", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "Kind", "key2": "OpaqueTimeSlot", @@ -3530,7 +3530,7 @@ "name": "ReportsByKindIndex", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Kind", "value": "Bytes", @@ -3586,7 +3586,7 @@ "name": "Validators", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3597,7 +3597,7 @@ "name": "CurrentIndex", "modifier": "Default", "type": { - "Plain": "SessionIndex" + "plain": "SessionIndex" }, "fallback": "0x00000000", "documentation": [ @@ -3608,7 +3608,7 @@ "name": "QueuedChanged", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -3620,7 +3620,7 @@ "name": "QueuedKeys", "modifier": "Default", "type": { - "Plain": "Vec<(ValidatorId,Keys)>" + "plain": "Vec<(ValidatorId,Keys)>" }, "fallback": "0x00", "documentation": [ @@ -3632,7 +3632,7 @@ "name": "DisabledValidators", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3645,7 +3645,7 @@ "name": "NextKeys", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ValidatorId", "value": "Keys", @@ -3661,7 +3661,7 @@ "name": "KeyOwner", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(KeyTypeId,Bytes)", "value": "ValidatorId", @@ -3773,7 +3773,7 @@ "name": "RecentHints", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3784,7 +3784,7 @@ "name": "OrderedHints", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3795,7 +3795,7 @@ "name": "Median", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -3806,7 +3806,7 @@ "name": "Update", "modifier": "Optional", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00", "documentation": [ @@ -3817,7 +3817,7 @@ "name": "Initialized", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [] @@ -3882,7 +3882,7 @@ "name": "State", "modifier": "Default", "type": { - "Plain": "StoredState" + "plain": "StoredState" }, "fallback": "0x00", "documentation": [ @@ -3893,7 +3893,7 @@ "name": "PendingChange", "modifier": "Optional", "type": { - "Plain": "StoredPendingChange" + "plain": "StoredPendingChange" }, "fallback": "0x00", "documentation": [ @@ -3904,7 +3904,7 @@ "name": "NextForced", "modifier": "Optional", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00", "documentation": [ @@ -3915,7 +3915,7 @@ "name": "Stalled", "modifier": "Optional", "type": { - "Plain": "(BlockNumber,BlockNumber)" + "plain": "(BlockNumber,BlockNumber)" }, "fallback": "0x00", "documentation": [ @@ -3926,7 +3926,7 @@ "name": "CurrentSetId", "modifier": "Default", "type": { - "Plain": "SetId" + "plain": "SetId" }, "fallback": "0x0000000000000000", "documentation": [ @@ -3938,7 +3938,7 @@ "name": "SetIdSession", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "SetId", "value": "SessionIndex", @@ -4082,7 +4082,7 @@ "name": "HeartbeatAfter", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -4098,7 +4098,7 @@ "name": "Keys", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -4109,7 +4109,7 @@ "name": "ReceivedHeartbeats", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "SessionIndex", "key2": "AuthIndex", @@ -4127,7 +4127,7 @@ "name": "AuthoredBlocks", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "SessionIndex", "key2": "ValidatorId", @@ -4230,7 +4230,7 @@ "name": "PublicPropCount", "modifier": "Default", "type": { - "Plain": "PropIndex" + "plain": "PropIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4241,7 +4241,7 @@ "name": "PublicProps", "modifier": "Default", "type": { - "Plain": "Vec<(PropIndex,Hash,AccountId)>" + "plain": "Vec<(PropIndex,Hash,AccountId)>" }, "fallback": "0x00", "documentation": [ @@ -4252,7 +4252,7 @@ "name": "DepositOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "PropIndex", "value": "(Vec,BalanceOf)", @@ -4270,7 +4270,7 @@ "name": "Preimages", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "PreimageStatus", @@ -4287,7 +4287,7 @@ "name": "ReferendumCount", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4298,7 +4298,7 @@ "name": "LowestUnbaked", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4310,7 +4310,7 @@ "name": "ReferendumInfoOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReferendumIndex", "value": "ReferendumInfo", @@ -4328,7 +4328,7 @@ "name": "VotingOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Voting", @@ -4347,7 +4347,7 @@ "name": "Locks", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "BlockNumber", @@ -4366,7 +4366,7 @@ "name": "LastTabledWasExternal", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -4378,7 +4378,7 @@ "name": "NextExternal", "modifier": "Optional", "type": { - "Plain": "(Hash,VoteThreshold)" + "plain": "(Hash,VoteThreshold)" }, "fallback": "0x00", "documentation": [ @@ -4392,7 +4392,7 @@ "name": "Blacklist", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "(BlockNumber,Vec)", @@ -4409,7 +4409,7 @@ "name": "Cancellations", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "bool", @@ -4425,7 +4425,7 @@ "name": "StorageVersion", "modifier": "Optional", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -5509,7 +5509,7 @@ "name": "Proposals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5520,7 +5520,7 @@ "name": "ProposalOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Proposal", @@ -5536,7 +5536,7 @@ "name": "Voting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Votes", @@ -5552,7 +5552,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -5563,7 +5563,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5574,7 +5574,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -5964,7 +5964,7 @@ "name": "Proposals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5975,7 +5975,7 @@ "name": "ProposalOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Proposal", @@ -5991,7 +5991,7 @@ "name": "Voting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Votes", @@ -6007,7 +6007,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -6018,7 +6018,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6029,7 +6029,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -6419,7 +6419,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec<(AccountId,BalanceOf)>" + "plain": "Vec<(AccountId,BalanceOf)>" }, "fallback": "0x00", "documentation": [ @@ -6430,7 +6430,7 @@ "name": "RunnersUp", "modifier": "Default", "type": { - "Plain": "Vec<(AccountId,BalanceOf)>" + "plain": "Vec<(AccountId,BalanceOf)>" }, "fallback": "0x00", "documentation": [ @@ -6441,7 +6441,7 @@ "name": "ElectionRounds", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -6452,7 +6452,7 @@ "name": "Voting", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(BalanceOf,Vec)", @@ -6470,7 +6470,7 @@ "name": "Candidates", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6898,7 +6898,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6909,7 +6909,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -7080,7 +7080,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "ProposalIndex" + "plain": "ProposalIndex" }, "fallback": "0x00000000", "documentation": [ @@ -7091,7 +7091,7 @@ "name": "Proposals", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ProposalIndex", "value": "Proposal", @@ -7107,7 +7107,7 @@ "name": "Approvals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7118,7 +7118,7 @@ "name": "Tips", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Hash", "value": "OpenTip", @@ -7136,7 +7136,7 @@ "name": "Reasons", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Bytes", @@ -7632,7 +7632,7 @@ "name": "Authorities", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7643,7 +7643,7 @@ "name": "Code", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ValidationCode", @@ -7659,7 +7659,7 @@ "name": "PastCodeMeta", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaPastCodeMeta", @@ -7677,7 +7677,7 @@ "name": "PastCode", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(ParaId,BlockNumber)", "value": "ValidationCode", @@ -7694,7 +7694,7 @@ "name": "PastCodePruning", "modifier": "Default", "type": { - "Plain": "Vec<(ParaId,BlockNumber)>" + "plain": "Vec<(ParaId,BlockNumber)>" }, "fallback": "0x00", "documentation": [ @@ -7705,7 +7705,7 @@ "name": "FutureCodeUpgrades", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "BlockNumber", @@ -7719,7 +7719,7 @@ "name": "FutureCode", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ValidationCode", @@ -7733,7 +7733,7 @@ "name": "Heads", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "HeadData", @@ -7749,7 +7749,7 @@ "name": "RelayDispatchQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -7766,7 +7766,7 @@ "name": "RelayDispatchQueueSize", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "(u32,u32)", @@ -7784,7 +7784,7 @@ "name": "NeedsDispatch", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7795,7 +7795,7 @@ "name": "DidUpdate", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7809,7 +7809,7 @@ "name": "DownwardMessageQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -8024,7 +8024,7 @@ "name": "RecentParaBlocks", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "IncludedBlocks", @@ -8041,7 +8041,7 @@ "name": "ParaBlockAttestations", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "BlockNumber", "key2": "Hash", @@ -8058,7 +8058,7 @@ "name": "DidUpdate", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [] @@ -8099,7 +8099,7 @@ "name": "AuctionCounter", "modifier": "Default", "type": { - "Plain": "AuctionIndex" + "plain": "AuctionIndex" }, "fallback": "0x00000000", "documentation": [ @@ -8110,7 +8110,7 @@ "name": "ManagedIds", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -8122,7 +8122,7 @@ "name": "Deposits", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -8150,7 +8150,7 @@ "name": "AuctionInfo", "modifier": "Optional", "type": { - "Plain": "(LeasePeriodOf,BlockNumber)" + "plain": "(LeasePeriodOf,BlockNumber)" }, "fallback": "0x00", "documentation": [ @@ -8165,7 +8165,7 @@ "name": "Winning", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "WinningData", @@ -8183,7 +8183,7 @@ "name": "ReservedAmounts", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Bidder", "value": "BalanceOf", @@ -8200,7 +8200,7 @@ "name": "OnboardQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "LeasePeriodOf", "value": "Vec", @@ -8217,7 +8217,7 @@ "name": "Onboarding", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "(LeasePeriodOf,IncomingParachain)", @@ -8236,7 +8236,7 @@ "name": "Offboarding", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "AccountId", @@ -8601,7 +8601,7 @@ "name": "Parachains", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [] @@ -8610,7 +8610,7 @@ "name": "ThreadCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -8621,7 +8621,7 @@ "name": "SelectedThreads", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -8633,7 +8633,7 @@ "name": "Active", "modifier": "Default", "type": { - "Plain": "Vec<(ParaId,Option<(CollatorId,Retriable)>)>" + "plain": "Vec<(ParaId,Option<(CollatorId,Retriable)>)>" }, "fallback": "0x00", "documentation": [ @@ -8649,7 +8649,7 @@ "name": "NextFreeId", "modifier": "Default", "type": { - "Plain": "ParaId" + "plain": "ParaId" }, "fallback": "0xe8030000", "documentation": [ @@ -8661,7 +8661,7 @@ "name": "PendingSwap", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaId", @@ -8677,7 +8677,7 @@ "name": "Paras", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaInfo", @@ -8693,7 +8693,7 @@ "name": "RetryQueue", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -8704,7 +8704,7 @@ "name": "Debtors", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "AccountId", @@ -8918,7 +8918,7 @@ "name": "Claims", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "BalanceOf", @@ -8932,7 +8932,7 @@ "name": "Total", "modifier": "Default", "type": { - "Plain": "BalanceOf" + "plain": "BalanceOf" }, "fallback": "0x00000000000000000000000000000000", "documentation": [] @@ -8941,7 +8941,7 @@ "name": "Vesting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "(BalanceOf,BalanceOf,BlockNumber)", @@ -8960,7 +8960,7 @@ "name": "Signing", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "StatementKind", @@ -8976,7 +8976,7 @@ "name": "Preclaims", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "AccountId", "value": "EthereumAddress", @@ -9272,7 +9272,7 @@ "name": "Vesting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "VestingInfo", @@ -9567,7 +9567,7 @@ "name": "Key", "modifier": "Default", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -9718,7 +9718,7 @@ "name": "IdentityOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Registration", @@ -9736,7 +9736,7 @@ "name": "SuperOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "(AccountId,Data)", @@ -9753,7 +9753,7 @@ "name": "SubsOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(BalanceOf,Vec)", @@ -9773,7 +9773,7 @@ "name": "Registrars", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -10457,7 +10457,7 @@ "name": "Proxies", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(Vec<(AccountId,ProxyType)>,BalanceOf)", @@ -10767,7 +10767,7 @@ "name": "Multisigs", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "AccountId", "key2": "[u8;32]", @@ -10784,7 +10784,7 @@ "name": "Calls", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "[u8;32]", "value": "(OpaqueCall,AccountId,BalanceOf)", @@ -11175,7 +11175,7 @@ "name": "VoteOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(Approvals,BalanceOf)", @@ -11191,7 +11191,7 @@ "name": "Totals", "modifier": "Default", "type": { - "Plain": "[BalanceOf;4]" + "plain": "[BalanceOf;4]" }, "fallback": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -11253,7 +11253,7 @@ "name": "Accounts", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountStatus", @@ -11267,7 +11267,7 @@ "name": "PaymentAccount", "modifier": "Default", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [] @@ -11276,7 +11276,7 @@ "name": "Statement", "modifier": "Default", "type": { - "Plain": "Bytes" + "plain": "Bytes" }, "fallback": "0x00", "documentation": [] @@ -11285,7 +11285,7 @@ "name": "UnlockBlock", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [] diff --git a/src/services/test-helpers/responses/runtime/spec.json b/src/services/test-helpers/responses/runtime/spec.json index 0005ca4be..703395140 100644 --- a/src/services/test-helpers/responses/runtime/spec.json +++ b/src/services/test-helpers/responses/runtime/spec.json @@ -9,7 +9,7 @@ "specName": "polkadot", "specVersion": "16", "chainType": { - "Live": null + "live": null }, "properties": { "ss58Format": "0", diff --git a/src/test-helpers/metadata/polkadotMetadataV16.json b/src/test-helpers/metadata/polkadotMetadataV16.json index 8e67258b3..23bd7577d 100644 --- a/src/test-helpers/metadata/polkadotMetadataV16.json +++ b/src/test-helpers/metadata/polkadotMetadataV16.json @@ -1,7 +1,7 @@ { "magicNumber": 1635018093, "metadata": { - "V11": { + "v11": { "modules": [ { "name": "System", @@ -12,7 +12,7 @@ "name": "Account", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountInfo", @@ -28,7 +28,7 @@ "name": "ExtrinsicCount", "modifier": "Optional", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00", "documentation": [ @@ -39,7 +39,7 @@ "name": "BlockWeight", "modifier": "Default", "type": { - "Plain": "ExtrinsicsWeight" + "plain": "ExtrinsicsWeight" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -50,7 +50,7 @@ "name": "AllExtrinsicsLen", "modifier": "Optional", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00", "documentation": [ @@ -61,7 +61,7 @@ "name": "BlockHash", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "Hash", @@ -77,7 +77,7 @@ "name": "ExtrinsicData", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "u32", "value": "Bytes", @@ -93,7 +93,7 @@ "name": "Number", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -104,7 +104,7 @@ "name": "ParentHash", "modifier": "Default", "type": { - "Plain": "Hash" + "plain": "Hash" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -115,7 +115,7 @@ "name": "ExtrinsicsRoot", "modifier": "Default", "type": { - "Plain": "Hash" + "plain": "Hash" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -126,7 +126,7 @@ "name": "Digest", "modifier": "Default", "type": { - "Plain": "DigestOf" + "plain": "DigestOf" }, "fallback": "0x00", "documentation": [ @@ -137,7 +137,7 @@ "name": "Events", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -148,7 +148,7 @@ "name": "EventCount", "modifier": "Default", "type": { - "Plain": "EventIndex" + "plain": "EventIndex" }, "fallback": "0x00000000", "documentation": [ @@ -159,7 +159,7 @@ "name": "EventTopics", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "Hash", "value": "Vec<(BlockNumber,EventIndex)>", @@ -184,7 +184,7 @@ "name": "LastRuntimeUpgrade", "modifier": "Optional", "type": { - "Plain": "LastRuntimeUpgradeInfo" + "plain": "LastRuntimeUpgradeInfo" }, "fallback": "0x00", "documentation": [ @@ -195,7 +195,7 @@ "name": "ExecutionPhase", "modifier": "Optional", "type": { - "Plain": "Phase" + "plain": "Phase" }, "fallback": "0x00", "documentation": [ @@ -538,7 +538,7 @@ "name": "RandomMaterial", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -563,7 +563,7 @@ "name": "Agenda", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "Vec>", @@ -579,7 +579,7 @@ "name": "Lookup", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Bytes", "value": "TaskAddress", @@ -595,7 +595,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -848,7 +848,7 @@ "name": "EpochIndex", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -859,7 +859,7 @@ "name": "Authorities", "modifier": "Default", "type": { - "Plain": "Vec<(AuthorityId,BabeAuthorityWeight)>" + "plain": "Vec<(AuthorityId,BabeAuthorityWeight)>" }, "fallback": "0x00", "documentation": [ @@ -870,7 +870,7 @@ "name": "GenesisSlot", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -882,7 +882,7 @@ "name": "CurrentSlot", "modifier": "Default", "type": { - "Plain": "u64" + "plain": "u64" }, "fallback": "0x0000000000000000", "documentation": [ @@ -893,7 +893,7 @@ "name": "Randomness", "modifier": "Default", "type": { - "Plain": "Randomness" + "plain": "Randomness" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -913,7 +913,7 @@ "name": "NextEpochConfig", "modifier": "Optional", "type": { - "Plain": "NextConfigDescriptor" + "plain": "NextConfigDescriptor" }, "fallback": "0x00", "documentation": [ @@ -924,7 +924,7 @@ "name": "NextRandomness", "modifier": "Default", "type": { - "Plain": "Randomness" + "plain": "Randomness" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -935,7 +935,7 @@ "name": "SegmentIndex", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -954,7 +954,7 @@ "name": "UnderConstruction", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "u32", "value": "Vec", @@ -970,7 +970,7 @@ "name": "Initialized", "modifier": "Optional", "type": { - "Plain": "MaybeRandomness" + "plain": "MaybeRandomness" }, "fallback": "0x00", "documentation": [ @@ -982,7 +982,7 @@ "name": "Lateness", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -1074,7 +1074,7 @@ "name": "Now", "modifier": "Default", "type": { - "Plain": "Moment" + "plain": "Moment" }, "fallback": "0x0000000000000000", "documentation": [ @@ -1085,7 +1085,7 @@ "name": "DidUpdate", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -1150,7 +1150,7 @@ "name": "Accounts", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountIndex", "value": "(AccountId,BalanceOf,bool)", @@ -1375,7 +1375,7 @@ "name": "TotalIssuance", "modifier": "Default", "type": { - "Plain": "Balance" + "plain": "Balance" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -1386,7 +1386,7 @@ "name": "Account", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountData", @@ -1404,7 +1404,7 @@ "name": "Locks", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "Vec", @@ -1421,7 +1421,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -1723,7 +1723,7 @@ "name": "NextFeeMultiplier", "modifier": "Default", "type": { - "Plain": "Multiplier" + "plain": "Multiplier" }, "fallback": "0x000064a7b3b6e00d0000000000000000", "documentation": [] @@ -1732,7 +1732,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [] @@ -1770,7 +1770,7 @@ "name": "Uncles", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -1781,7 +1781,7 @@ "name": "Author", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -1792,7 +1792,7 @@ "name": "DidSetUncles", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -1871,7 +1871,7 @@ "name": "HistoryDepth", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x54000000", "documentation": [ @@ -1888,7 +1888,7 @@ "name": "ValidatorCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -1899,7 +1899,7 @@ "name": "MinimumValidatorCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x04000000", "documentation": [ @@ -1910,7 +1910,7 @@ "name": "Invulnerables", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -1923,7 +1923,7 @@ "name": "Bonded", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "AccountId", @@ -1939,7 +1939,7 @@ "name": "Ledger", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "StakingLedger", @@ -1955,7 +1955,7 @@ "name": "Payee", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "RewardDestination", @@ -1971,7 +1971,7 @@ "name": "Validators", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "ValidatorPrefs", @@ -1987,7 +1987,7 @@ "name": "Nominators", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Nominations", @@ -2003,7 +2003,7 @@ "name": "CurrentEra", "modifier": "Optional", "type": { - "Plain": "EraIndex" + "plain": "EraIndex" }, "fallback": "0x00", "documentation": [ @@ -2017,7 +2017,7 @@ "name": "ActiveEra", "modifier": "Optional", "type": { - "Plain": "ActiveEraInfo" + "plain": "ActiveEraInfo" }, "fallback": "0x00", "documentation": [ @@ -2031,7 +2031,7 @@ "name": "ErasStartSessionIndex", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "SessionIndex", @@ -2047,7 +2047,7 @@ "name": "ErasStakers", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2069,7 +2069,7 @@ "name": "ErasStakersClipped", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2096,7 +2096,7 @@ "name": "ErasValidatorPrefs", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2117,7 +2117,7 @@ "name": "ErasValidatorReward", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "BalanceOf", @@ -2135,7 +2135,7 @@ "name": "ErasRewardPoints", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "EraRewardPoints", @@ -2152,7 +2152,7 @@ "name": "ErasTotalStake", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "BalanceOf", @@ -2169,7 +2169,7 @@ "name": "ForceEra", "modifier": "Default", "type": { - "Plain": "Forcing" + "plain": "Forcing" }, "fallback": "0x00", "documentation": [ @@ -2180,7 +2180,7 @@ "name": "SlashRewardFraction", "modifier": "Default", "type": { - "Plain": "Perbill" + "plain": "Perbill" }, "fallback": "0x00000000", "documentation": [ @@ -2193,7 +2193,7 @@ "name": "CanceledSlashPayout", "modifier": "Default", "type": { - "Plain": "BalanceOf" + "plain": "BalanceOf" }, "fallback": "0x00000000000000000000000000000000", "documentation": [ @@ -2205,7 +2205,7 @@ "name": "UnappliedSlashes", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "EraIndex", "value": "Vec", @@ -2221,7 +2221,7 @@ "name": "BondedEras", "modifier": "Default", "type": { - "Plain": "Vec<(EraIndex,SessionIndex)>" + "plain": "Vec<(EraIndex,SessionIndex)>" }, "fallback": "0x00", "documentation": [ @@ -2235,7 +2235,7 @@ "name": "ValidatorSlashInEra", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2253,7 +2253,7 @@ "name": "NominatorSlashInEra", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "EraIndex", "key2": "AccountId", @@ -2270,7 +2270,7 @@ "name": "SlashingSpans", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "SlashingSpans", @@ -2286,7 +2286,7 @@ "name": "SpanSlash", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(AccountId,SpanIndex)", "value": "SpanRecord", @@ -2303,7 +2303,7 @@ "name": "EarliestUnappliedSlash", "modifier": "Optional", "type": { - "Plain": "EraIndex" + "plain": "EraIndex" }, "fallback": "0x00", "documentation": [ @@ -2314,7 +2314,7 @@ "name": "SnapshotValidators", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -2326,7 +2326,7 @@ "name": "SnapshotNominators", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -2338,7 +2338,7 @@ "name": "QueuedElected", "modifier": "Optional", "type": { - "Plain": "ElectionResult" + "plain": "ElectionResult" }, "fallback": "0x00", "documentation": [ @@ -2351,7 +2351,7 @@ "name": "QueuedScore", "modifier": "Optional", "type": { - "Plain": "ElectionScore" + "plain": "ElectionScore" }, "fallback": "0x00", "documentation": [ @@ -2362,7 +2362,7 @@ "name": "EraElectionStatus", "modifier": "Default", "type": { - "Plain": "ElectionStatus" + "plain": "ElectionStatus" }, "fallback": "0x00", "documentation": [ @@ -2374,7 +2374,7 @@ "name": "IsCurrentSessionFinal", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -2386,7 +2386,7 @@ "name": "StorageVersion", "modifier": "Default", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x03", "documentation": [ @@ -3485,7 +3485,7 @@ "name": "Reports", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReportIdOf", "value": "OffenceDetails", @@ -3501,7 +3501,7 @@ "name": "DeferredOffences", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3513,7 +3513,7 @@ "name": "ConcurrentReportsIndex", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "Kind", "key2": "OpaqueTimeSlot", @@ -3530,7 +3530,7 @@ "name": "ReportsByKindIndex", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Kind", "value": "Bytes", @@ -3586,7 +3586,7 @@ "name": "Validators", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3597,7 +3597,7 @@ "name": "CurrentIndex", "modifier": "Default", "type": { - "Plain": "SessionIndex" + "plain": "SessionIndex" }, "fallback": "0x00000000", "documentation": [ @@ -3608,7 +3608,7 @@ "name": "QueuedChanged", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -3620,7 +3620,7 @@ "name": "QueuedKeys", "modifier": "Default", "type": { - "Plain": "Vec<(ValidatorId,Keys)>" + "plain": "Vec<(ValidatorId,Keys)>" }, "fallback": "0x00", "documentation": [ @@ -3632,7 +3632,7 @@ "name": "DisabledValidators", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3645,7 +3645,7 @@ "name": "NextKeys", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ValidatorId", "value": "Keys", @@ -3661,7 +3661,7 @@ "name": "KeyOwner", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(KeyTypeId,Bytes)", "value": "ValidatorId", @@ -3773,7 +3773,7 @@ "name": "RecentHints", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3784,7 +3784,7 @@ "name": "OrderedHints", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -3795,7 +3795,7 @@ "name": "Median", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -3806,7 +3806,7 @@ "name": "Update", "modifier": "Optional", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00", "documentation": [ @@ -3817,7 +3817,7 @@ "name": "Initialized", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [] @@ -3882,7 +3882,7 @@ "name": "State", "modifier": "Default", "type": { - "Plain": "StoredState" + "plain": "StoredState" }, "fallback": "0x00", "documentation": [ @@ -3893,7 +3893,7 @@ "name": "PendingChange", "modifier": "Optional", "type": { - "Plain": "StoredPendingChange" + "plain": "StoredPendingChange" }, "fallback": "0x00", "documentation": [ @@ -3904,7 +3904,7 @@ "name": "NextForced", "modifier": "Optional", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00", "documentation": [ @@ -3915,7 +3915,7 @@ "name": "Stalled", "modifier": "Optional", "type": { - "Plain": "(BlockNumber,BlockNumber)" + "plain": "(BlockNumber,BlockNumber)" }, "fallback": "0x00", "documentation": [ @@ -3926,7 +3926,7 @@ "name": "CurrentSetId", "modifier": "Default", "type": { - "Plain": "SetId" + "plain": "SetId" }, "fallback": "0x0000000000000000", "documentation": [ @@ -3938,7 +3938,7 @@ "name": "SetIdSession", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "SetId", "value": "SessionIndex", @@ -4082,7 +4082,7 @@ "name": "HeartbeatAfter", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [ @@ -4098,7 +4098,7 @@ "name": "Keys", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -4109,7 +4109,7 @@ "name": "ReceivedHeartbeats", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "SessionIndex", "key2": "AuthIndex", @@ -4127,7 +4127,7 @@ "name": "AuthoredBlocks", "modifier": "Default", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "SessionIndex", "key2": "ValidatorId", @@ -4230,7 +4230,7 @@ "name": "PublicPropCount", "modifier": "Default", "type": { - "Plain": "PropIndex" + "plain": "PropIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4241,7 +4241,7 @@ "name": "PublicProps", "modifier": "Default", "type": { - "Plain": "Vec<(PropIndex,Hash,AccountId)>" + "plain": "Vec<(PropIndex,Hash,AccountId)>" }, "fallback": "0x00", "documentation": [ @@ -4252,7 +4252,7 @@ "name": "DepositOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "PropIndex", "value": "(Vec,BalanceOf)", @@ -4270,7 +4270,7 @@ "name": "Preimages", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "PreimageStatus", @@ -4287,7 +4287,7 @@ "name": "ReferendumCount", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4298,7 +4298,7 @@ "name": "LowestUnbaked", "modifier": "Default", "type": { - "Plain": "ReferendumIndex" + "plain": "ReferendumIndex" }, "fallback": "0x00000000", "documentation": [ @@ -4310,7 +4310,7 @@ "name": "ReferendumInfoOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ReferendumIndex", "value": "ReferendumInfo", @@ -4328,7 +4328,7 @@ "name": "VotingOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Voting", @@ -4347,7 +4347,7 @@ "name": "Locks", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "BlockNumber", @@ -4366,7 +4366,7 @@ "name": "LastTabledWasExternal", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [ @@ -4378,7 +4378,7 @@ "name": "NextExternal", "modifier": "Optional", "type": { - "Plain": "(Hash,VoteThreshold)" + "plain": "(Hash,VoteThreshold)" }, "fallback": "0x00", "documentation": [ @@ -4392,7 +4392,7 @@ "name": "Blacklist", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "(BlockNumber,Vec)", @@ -4409,7 +4409,7 @@ "name": "Cancellations", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "bool", @@ -4425,7 +4425,7 @@ "name": "StorageVersion", "modifier": "Optional", "type": { - "Plain": "Releases" + "plain": "Releases" }, "fallback": "0x00", "documentation": [ @@ -5509,7 +5509,7 @@ "name": "Proposals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5520,7 +5520,7 @@ "name": "ProposalOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Proposal", @@ -5536,7 +5536,7 @@ "name": "Voting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Votes", @@ -5552,7 +5552,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -5563,7 +5563,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5574,7 +5574,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -5964,7 +5964,7 @@ "name": "Proposals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -5975,7 +5975,7 @@ "name": "ProposalOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Proposal", @@ -5991,7 +5991,7 @@ "name": "Voting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Votes", @@ -6007,7 +6007,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -6018,7 +6018,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6029,7 +6029,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -6419,7 +6419,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec<(AccountId,BalanceOf)>" + "plain": "Vec<(AccountId,BalanceOf)>" }, "fallback": "0x00", "documentation": [ @@ -6430,7 +6430,7 @@ "name": "RunnersUp", "modifier": "Default", "type": { - "Plain": "Vec<(AccountId,BalanceOf)>" + "plain": "Vec<(AccountId,BalanceOf)>" }, "fallback": "0x00", "documentation": [ @@ -6441,7 +6441,7 @@ "name": "ElectionRounds", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -6452,7 +6452,7 @@ "name": "Voting", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(BalanceOf,Vec)", @@ -6470,7 +6470,7 @@ "name": "Candidates", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6898,7 +6898,7 @@ "name": "Members", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -6909,7 +6909,7 @@ "name": "Prime", "modifier": "Optional", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x00", "documentation": [ @@ -7080,7 +7080,7 @@ "name": "ProposalCount", "modifier": "Default", "type": { - "Plain": "ProposalIndex" + "plain": "ProposalIndex" }, "fallback": "0x00000000", "documentation": [ @@ -7091,7 +7091,7 @@ "name": "Proposals", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ProposalIndex", "value": "TreasuryProposal", @@ -7107,7 +7107,7 @@ "name": "Approvals", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7118,7 +7118,7 @@ "name": "Tips", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Hash", "value": "OpenTip", @@ -7136,7 +7136,7 @@ "name": "Reasons", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "Hash", "value": "Bytes", @@ -7632,7 +7632,7 @@ "name": "Authorities", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7643,7 +7643,7 @@ "name": "Code", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ValidationCode", @@ -7659,7 +7659,7 @@ "name": "PastCodeMeta", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaPastCodeMeta", @@ -7677,7 +7677,7 @@ "name": "PastCode", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "(ParaId,BlockNumber)", "value": "ValidationCode", @@ -7694,7 +7694,7 @@ "name": "PastCodePruning", "modifier": "Default", "type": { - "Plain": "Vec<(ParaId,BlockNumber)>" + "plain": "Vec<(ParaId,BlockNumber)>" }, "fallback": "0x00", "documentation": [ @@ -7705,7 +7705,7 @@ "name": "FutureCodeUpgrades", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "BlockNumber", @@ -7719,7 +7719,7 @@ "name": "FutureCode", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ValidationCode", @@ -7733,7 +7733,7 @@ "name": "Heads", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "HeadData", @@ -7749,7 +7749,7 @@ "name": "RelayDispatchQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -7766,7 +7766,7 @@ "name": "RelayDispatchQueueSize", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "(u32,u32)", @@ -7784,7 +7784,7 @@ "name": "NeedsDispatch", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7795,7 +7795,7 @@ "name": "DidUpdate", "modifier": "Optional", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -7809,7 +7809,7 @@ "name": "DownwardMessageQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -8024,7 +8024,7 @@ "name": "RecentParaBlocks", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "IncludedBlocks", @@ -8041,7 +8041,7 @@ "name": "ParaBlockAttestations", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "BlockNumber", "key2": "Hash", @@ -8058,7 +8058,7 @@ "name": "DidUpdate", "modifier": "Default", "type": { - "Plain": "bool" + "plain": "bool" }, "fallback": "0x00", "documentation": [] @@ -8099,7 +8099,7 @@ "name": "AuctionCounter", "modifier": "Default", "type": { - "Plain": "AuctionIndex" + "plain": "AuctionIndex" }, "fallback": "0x00000000", "documentation": [ @@ -8110,7 +8110,7 @@ "name": "ManagedIds", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [ @@ -8122,7 +8122,7 @@ "name": "Deposits", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "Vec", @@ -8150,7 +8150,7 @@ "name": "AuctionInfo", "modifier": "Optional", "type": { - "Plain": "(LeasePeriodOf,BlockNumber)" + "plain": "(LeasePeriodOf,BlockNumber)" }, "fallback": "0x00", "documentation": [ @@ -8165,7 +8165,7 @@ "name": "Winning", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "BlockNumber", "value": "WinningData", @@ -8183,7 +8183,7 @@ "name": "ReservedAmounts", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "Bidder", "value": "BalanceOf", @@ -8200,7 +8200,7 @@ "name": "OnboardQueue", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "LeasePeriodOf", "value": "Vec", @@ -8217,7 +8217,7 @@ "name": "Onboarding", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "(LeasePeriodOf,IncomingParachain)", @@ -8236,7 +8236,7 @@ "name": "Offboarding", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "AccountId", @@ -8601,7 +8601,7 @@ "name": "Parachains", "modifier": "Default", "type": { - "Plain": "Vec" + "plain": "Vec" }, "fallback": "0x00", "documentation": [] @@ -8610,7 +8610,7 @@ "name": "ThreadCount", "modifier": "Default", "type": { - "Plain": "u32" + "plain": "u32" }, "fallback": "0x00000000", "documentation": [ @@ -8621,7 +8621,7 @@ "name": "SelectedThreads", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -8633,7 +8633,7 @@ "name": "Active", "modifier": "Default", "type": { - "Plain": "Vec<(ParaId,Option<(CollatorId,Retriable)>)>" + "plain": "Vec<(ParaId,Option<(CollatorId,Retriable)>)>" }, "fallback": "0x00", "documentation": [ @@ -8649,7 +8649,7 @@ "name": "NextFreeId", "modifier": "Default", "type": { - "Plain": "ParaId" + "plain": "ParaId" }, "fallback": "0xe8030000", "documentation": [ @@ -8661,7 +8661,7 @@ "name": "PendingSwap", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaId", @@ -8677,7 +8677,7 @@ "name": "Paras", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "ParaInfo", @@ -8693,7 +8693,7 @@ "name": "RetryQueue", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -8704,7 +8704,7 @@ "name": "Debtors", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "ParaId", "value": "AccountId", @@ -8918,7 +8918,7 @@ "name": "Claims", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "BalanceOf", @@ -8932,7 +8932,7 @@ "name": "Total", "modifier": "Default", "type": { - "Plain": "BalanceOf" + "plain": "BalanceOf" }, "fallback": "0x00000000000000000000000000000000", "documentation": [] @@ -8941,7 +8941,7 @@ "name": "Vesting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "(BalanceOf,BalanceOf,BlockNumber)", @@ -8960,7 +8960,7 @@ "name": "Signing", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "EthereumAddress", "value": "StatementKind", @@ -8976,7 +8976,7 @@ "name": "Preclaims", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "AccountId", "value": "EthereumAddress", @@ -9272,7 +9272,7 @@ "name": "Vesting", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "VestingInfo", @@ -9567,7 +9567,7 @@ "name": "Key", "modifier": "Default", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -9718,7 +9718,7 @@ "name": "IdentityOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "Registration", @@ -9736,7 +9736,7 @@ "name": "SuperOf", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "(AccountId,Data)", @@ -9753,7 +9753,7 @@ "name": "SubsOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(BalanceOf,Vec)", @@ -9773,7 +9773,7 @@ "name": "Registrars", "modifier": "Default", "type": { - "Plain": "Vec>" + "plain": "Vec>" }, "fallback": "0x00", "documentation": [ @@ -10457,7 +10457,7 @@ "name": "Proxies", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(Vec<(AccountId,ProxyType)>,BalanceOf)", @@ -10767,7 +10767,7 @@ "name": "Multisigs", "modifier": "Optional", "type": { - "DoubleMap": { + "doubleMap": { "hasher": "Twox64Concat", "key1": "AccountId", "key2": "[u8;32]", @@ -10784,7 +10784,7 @@ "name": "Calls", "modifier": "Optional", "type": { - "Map": { + "map": { "hasher": "Identity", "key": "[u8;32]", "value": "(OpaqueCall,AccountId,BalanceOf)", @@ -11175,7 +11175,7 @@ "name": "VoteOf", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Twox64Concat", "key": "AccountId", "value": "(Approvals,BalanceOf)", @@ -11191,7 +11191,7 @@ "name": "Totals", "modifier": "Default", "type": { - "Plain": "[BalanceOf;4]" + "plain": "[BalanceOf;4]" }, "fallback": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "documentation": [ @@ -11253,7 +11253,7 @@ "name": "Accounts", "modifier": "Default", "type": { - "Map": { + "map": { "hasher": "Blake2_128Concat", "key": "AccountId", "value": "AccountStatus", @@ -11267,7 +11267,7 @@ "name": "PaymentAccount", "modifier": "Default", "type": { - "Plain": "AccountId" + "plain": "AccountId" }, "fallback": "0x0000000000000000000000000000000000000000000000000000000000000000", "documentation": [] @@ -11276,7 +11276,7 @@ "name": "Statement", "modifier": "Default", "type": { - "Plain": "Bytes" + "plain": "Bytes" }, "fallback": "0x00", "documentation": [] @@ -11285,7 +11285,7 @@ "name": "UnlockBlock", "modifier": "Default", "type": { - "Plain": "BlockNumber" + "plain": "BlockNumber" }, "fallback": "0x00000000", "documentation": [] diff --git a/yarn.lock b/yarn.lock index 7bcd136dc..2771b70c7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29,16 +29,16 @@ integrity sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog== "@babel/core@^7.1.0", "@babel/core@^7.7.5": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.8.tgz#c191d9c5871788a591d69ea1dc03e5843a3680fb" - integrity sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg== + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559" + integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== dependencies: "@babel/code-frame" "^7.12.13" - "@babel/generator" "^7.13.0" - "@babel/helper-compilation-targets" "^7.13.8" + "@babel/generator" "^7.13.9" + "@babel/helper-compilation-targets" "^7.13.10" "@babel/helper-module-transforms" "^7.13.0" - "@babel/helpers" "^7.13.0" - "@babel/parser" "^7.13.4" + "@babel/helpers" "^7.13.10" + "@babel/parser" "^7.13.10" "@babel/template" "^7.12.13" "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" @@ -50,19 +50,19 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/generator@^7.13.0": - version "7.13.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.0.tgz#bd00d4394ca22f220390c56a0b5b85568ec1ec0c" - integrity sha512-zBZfgvBB/ywjx0Rgc2+BwoH/3H+lDtlgD4hBOpEv5LxRnYsm/753iRuLepqnYlynpjC3AdQxtxsoeHJoEEwOAw== +"@babel/generator@^7.13.0", "@babel/generator@^7.13.9": + version "7.13.9" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" + integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== dependencies: "@babel/types" "^7.13.0" jsesc "^2.5.1" source-map "^0.5.0" -"@babel/helper-compilation-targets@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.8.tgz#02bdb22783439afb11b2f009814bdd88384bd468" - integrity sha512-pBljUGC1y3xKLn1nrx2eAhurLMA8OqBtBP/JwG4U8skN7kf8/aqwwxpV1N6T0e7r6+7uNitIa/fUxPFagSXp3A== +"@babel/helper-compilation-targets@^7.13.10": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz#1310a1678cb8427c07a753750da4f8ce442bdd0c" + integrity sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA== dependencies: "@babel/compat-data" "^7.13.8" "@babel/helper-validator-option" "^7.12.17" @@ -121,7 +121,7 @@ dependencies: "@babel/types" "^7.12.13" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.8.0": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== @@ -160,28 +160,28 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== -"@babel/helpers@^7.13.0": - version "7.13.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.0.tgz#7647ae57377b4f0408bf4f8a7af01c42e41badc0" - integrity sha512-aan1MeFPxFacZeSz6Ld7YZo5aPuqnKlD7+HZY75xQsueczFccP9A7V05+oe0XpLwHK3oLorPe9eaAUljL7WEaQ== +"@babel/helpers@^7.13.10": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" + integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== dependencies: "@babel/template" "^7.12.13" "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.8.tgz#10b2dac78526424dfc1f47650d0e415dfd9dc481" - integrity sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw== + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" + integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== dependencies: "@babel/helper-validator-identifier" "^7.12.11" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.4": - version "7.13.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.4.tgz#340211b0da94a351a6f10e63671fa727333d13ab" - integrity sha512-uvoOulWHhI+0+1f9L4BoozY7U5cIkZ9PgJqvb041d6vypgUmtVPG4vmGm4pSggjl8BELzvHyUeJSUyEMY6b+qA== +"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.10.tgz#8f8f9bf7b3afa3eabd061f7a5bcdf4fec3c48409" + integrity sha512-0s7Mlrw9uTWkYua7xWr99Wpk2bnGa0ANleKfksYAES8LpWH4gW1OUr42vqKNf0us5UQNfru2wPqMqRITzq/SIQ== "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -267,6 +267,16 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" +"@babel/plugin-transform-modules-commonjs@^7.13.8": + version "7.13.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" + integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== + dependencies: + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-simple-access" "^7.12.13" + babel-plugin-dynamic-import-node "^2.3.3" + "@babel/runtime@7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99" @@ -275,9 +285,9 @@ regenerator-runtime "^0.13.4" "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.7", "@babel/runtime@^7.13.8", "@babel/runtime@^7.13.9", "@babel/runtime@^7.9.6": - version "7.13.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.9.tgz#97dbe2116e2630c489f22e0656decd60aaa1fcee" - integrity sha512-aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA== + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" + integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== dependencies: regenerator-runtime "^0.13.4" @@ -598,46 +608,41 @@ resolved "https://registry.yarnpkg.com/@open-web3/orml-type-definitions/-/orml-type-definitions-0.6.1.tgz#eb7fadf598f24f5024f5d2a1fd39ccc97c801104" integrity sha512-6asf2W/sluGQ6LNiGSdCg/Xop54mq/Q2FcV2Z9cBxys6QC4qXfo4JwUL6kJsRh/vcIIbUxoyGgKUrU/6Xdm7wA== -"@open-web3/orml-type-definitions@^0.8.2-11": +"@open-web3/orml-type-definitions@^0.8.2-11", "@open-web3/orml-type-definitions@^0.8.2-9": version "0.8.2-11" resolved "https://registry.yarnpkg.com/@open-web3/orml-type-definitions/-/orml-type-definitions-0.8.2-11.tgz#56358d371b63f83761234a7b1283ac9008e6dddd" integrity sha512-cUv5+mprnaGNt0tu3FhK1nFRBK7SGjPhA1O0nxWWeRmuuH5fjkr0glbHE9kcKuCBfsh7nt6NGwxwl9emQtUDSA== -"@open-web3/orml-type-definitions@^0.8.2-9": - version "0.8.2-10" - resolved "https://registry.yarnpkg.com/@open-web3/orml-type-definitions/-/orml-type-definitions-0.8.2-10.tgz#1ae6b4709609f4a03830afcfdc271e339bf81bce" - integrity sha512-VfhPgrRIi/ArGDBCwjWcKWrVsm6gDD333kh68Efui408i/2yojEbHVVehqjX6IiLupQsimWCEphwqgezkJRtEw== - -"@polkadot/api-derive@3.11.1": - version "3.11.1" - resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-3.11.1.tgz#3f0d6804ca2ade80da100314d576534490db5727" - integrity sha512-/v/fNSivgucQrDJvwLU17u8iZ0oQipQzgpofCJGQhRv8OaSv/E9g5EXcHJ1ri/Ozevgu5cPmGs96lLkQaPieAw== +"@polkadot/api-derive@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-4.0.3.tgz#542d871d84c64f927565d655eabce0ec2b917a4a" + integrity sha512-ADHrIoYumHJBQuIdtDEX6LPiJVZmLGBlFvlkRGYsKL7qJzRZtkzfuNgd8i3cZVDKk9mlcpldmj1DTiN3KBjH0Q== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/api" "3.11.1" - "@polkadot/rpc-core" "3.11.1" - "@polkadot/types" "3.11.1" - "@polkadot/util" "^5.9.2" - "@polkadot/util-crypto" "^5.9.2" - "@polkadot/x-rxjs" "^5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/api" "4.0.3" + "@polkadot/rpc-core" "4.0.3" + "@polkadot/types" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/util-crypto" "^6.0.5" + "@polkadot/x-rxjs" "^6.0.5" bn.js "^4.11.9" -"@polkadot/api@3.11.1", "@polkadot/api@^3.11.1": - version "3.11.1" - resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-3.11.1.tgz#854ee9686942a4be736932d61bf7ddb1242a0966" - integrity sha512-VqEh2n13ESLxnTUKujUfZ3Spct+lTycNgrX+IWD7/f05GsMwhCZLYtt708K8nqGFH2OKDl8xzwuGCvRN/05U1Q== +"@polkadot/api@4.0.3", "@polkadot/api@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-4.0.3.tgz#e3e11ab6341f84562c29677fb9d14d499c6aa892" + integrity sha512-jZf/NBkj6Ao7hG3I0ay7zOyDZm21tdqNRqglagBI+9Nw3wPvPL2Dz/mnGQCaeSq/fv/frY6YZQvouj4gRQzGwQ== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/api-derive" "3.11.1" - "@polkadot/keyring" "^5.9.2" - "@polkadot/metadata" "3.11.1" - "@polkadot/rpc-core" "3.11.1" - "@polkadot/rpc-provider" "3.11.1" - "@polkadot/types" "3.11.1" - "@polkadot/types-known" "3.11.1" - "@polkadot/util" "^5.9.2" - "@polkadot/util-crypto" "^5.9.2" - "@polkadot/x-rxjs" "^5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/api-derive" "4.0.3" + "@polkadot/keyring" "^6.0.5" + "@polkadot/metadata" "4.0.3" + "@polkadot/rpc-core" "4.0.3" + "@polkadot/rpc-provider" "4.0.3" + "@polkadot/types" "4.0.3" + "@polkadot/types-known" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/util-crypto" "^6.0.5" + "@polkadot/x-rxjs" "^6.0.5" bn.js "^4.11.9" eventemitter3 "^4.0.7" @@ -658,14 +663,14 @@ "@subsocial/types" "^0.4.35-beta.2" moonbeam-types-bundle "1.1.6" -"@polkadot/keyring@^5.9.2": - version "5.9.2" - resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-5.9.2.tgz#f8011a524767bb8f000bec3e26178fc5feffae5b" - integrity sha512-h9AhrzyUmludbmo0ixRFLEyRJvUc7GTl5koSBrG0uv+9Yn0I/7YRgAKn3zKcUVZyvgoLvzZnBFwekGbdFcl9Yg== +"@polkadot/keyring@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-6.0.5.tgz#b684f354476e96c657a7e8d3e5f0c090e1178b31" + integrity sha512-v9Tmu+eGZnWpLzxHUj5AIvmfX0uCHWShtF90zvaLvMXLFRWfeuaFnZwdZ+fNkXsrbI0R/w1gRtpFqzsT7QUbVw== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/util" "5.9.2" - "@polkadot/util-crypto" "5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/util" "6.0.5" + "@polkadot/util-crypto" "6.0.5" "@polkadot/metadata@3.11.1": version "3.11.1" @@ -691,6 +696,18 @@ "@polkadot/util-crypto" "^5.4.4" bn.js "^4.11.9" +"@polkadot/metadata@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/metadata/-/metadata-4.0.3.tgz#f0c7b63f8d0f40d8f81218849613f35edcb8157b" + integrity sha512-w4QRpIendx0LWINS3o93weqrNenI4X5T2iOdiPYd+DkIj1k3GI9An5BWnta9e953xEtGstwW169PF/itWMKyTw== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/types" "4.0.3" + "@polkadot/types-known" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/util-crypto" "^6.0.5" + bn.js "^4.11.9" + "@polkadot/networks@5.9.2", "@polkadot/networks@^5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-5.9.2.tgz#c687525b5886c9418f75240afe22b562ed88e2dd" @@ -698,37 +715,37 @@ dependencies: "@babel/runtime" "^7.13.8" -"@polkadot/networks@^6.0.4": +"@polkadot/networks@6.0.5", "@polkadot/networks@^6.0.4", "@polkadot/networks@^6.0.5": version "6.0.5" resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-6.0.5.tgz#36271138eb2b1b7d79462fa89544d1b90fa77010" integrity sha512-QSa5RdK43yD4kLsZ6tXIB652bZircaVPOpsZ5JFzxCM4gdxHCSCUeXNVBeh3uqeB3FOZZYzSYeoZHLaXuT3yJw== dependencies: "@babel/runtime" "^7.13.9" -"@polkadot/rpc-core@3.11.1": - version "3.11.1" - resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-3.11.1.tgz#fc57ac6429fd0322ac8421f434868cd244ede86f" - integrity sha512-8KTEZ/c2/TrsTOrrqxxNbyjO5P/033R/yTDgwqL0gwmF+ApnH3vB65YfKqaxn+rBWOMQS0jQhF6KZdtXvRcuYg== +"@polkadot/rpc-core@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-4.0.3.tgz#40046acd961d925ef69532694f48437c7bceef0c" + integrity sha512-BJD5OS9uYlNMNPwRSFB0oT7az9NXBapapcafi6g1O6d4rvDwmsiptKr4+hkoLhzpuZcx6rfYSsVf7oz1v1J9/g== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/metadata" "3.11.1" - "@polkadot/rpc-provider" "3.11.1" - "@polkadot/types" "3.11.1" - "@polkadot/util" "^5.9.2" - "@polkadot/x-rxjs" "^5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/metadata" "4.0.3" + "@polkadot/rpc-provider" "4.0.3" + "@polkadot/types" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/x-rxjs" "^6.0.5" -"@polkadot/rpc-provider@3.11.1": - version "3.11.1" - resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-3.11.1.tgz#d4ee901f464211b3b03607615a6db208ef186213" - integrity sha512-5OKh3rAg8l10M+tGLCoxhEoH9uEtK0ehJfOHUmdtwmwIk5aBFZ/ZTeiDkPM+/l84PCzYmp2uzO+YNsyMWUoVLw== +"@polkadot/rpc-provider@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-4.0.3.tgz#55d3e87ff439e2908292fac80bcbd8244291f283" + integrity sha512-xddbODw+uMQrrdWWtKb39OwFqs6VFxvBHDjKmnB8IEUzKq2CIEDJG4qe3y2FfTeVCLWWxSmtxyOj0xo3jok3uw== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/types" "3.11.1" - "@polkadot/util" "^5.9.2" - "@polkadot/util-crypto" "^5.9.2" - "@polkadot/x-fetch" "^5.9.2" - "@polkadot/x-global" "^5.9.2" - "@polkadot/x-ws" "^5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/types" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/util-crypto" "^6.0.5" + "@polkadot/x-fetch" "^6.0.5" + "@polkadot/x-global" "^6.0.5" + "@polkadot/x-ws" "^6.0.5" bn.js "^4.11.9" eventemitter3 "^4.0.7" @@ -753,6 +770,17 @@ "@polkadot/util" "^5.4.4" bn.js "^4.11.9" +"@polkadot/types-known@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-4.0.3.tgz#e1a39c938d5b91c175eb548a586bde6a521205b2" + integrity sha512-XF6Ft2L3zU0E294SpySFi0fv9JIrL0YM0ftOrvqagdXopchc9Sg9XTm3uoukrT8yVu5IVWjQHyk2NwqeAlNV4A== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/networks" "^6.0.5" + "@polkadot/types" "4.0.3" + "@polkadot/util" "^6.0.5" + bn.js "^4.11.9" + "@polkadot/types@3.11.1", "@polkadot/types@^3.9.3": version "3.11.1" resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-3.11.1.tgz#c0188390dfda84d746d57f7818ad622ac6b1de8b" @@ -779,7 +807,42 @@ "@types/bn.js" "^4.11.6" bn.js "^4.11.9" -"@polkadot/util-crypto@5.9.2", "@polkadot/util-crypto@^5.4.4", "@polkadot/util-crypto@^5.9.2": +"@polkadot/types@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-4.0.3.tgz#80640b102b585c7971c7116df6a23bcb1379aa31" + integrity sha512-aLNugf0Zyde8gAkHtPh8Pp2Rw6XJUUIDe9v/Lc3siJji6aPJuzwHW9XoJYBw8A8pl0MbmrJk3js/o3hEKqmFqg== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/metadata" "4.0.3" + "@polkadot/util" "^6.0.5" + "@polkadot/util-crypto" "^6.0.5" + "@polkadot/x-rxjs" "^6.0.5" + "@types/bn.js" "^4.11.6" + bn.js "^4.11.9" + +"@polkadot/util-crypto@6.0.5", "@polkadot/util-crypto@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-6.0.5.tgz#347ea2bf051d34087766cb43004062358cd43800" + integrity sha512-NlzmZzJ1vq2bjnQUU0MUocaT9vuIBGTlB/XCrCw94MyYqX19EllkOKLVMgu6o89xhYeP5rmASRQvTx9ZL9EzRw== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/networks" "6.0.5" + "@polkadot/util" "6.0.5" + "@polkadot/wasm-crypto" "^4.0.2" + "@polkadot/x-randomvalues" "6.0.5" + base-x "^3.0.8" + base64-js "^1.5.1" + blakejs "^1.1.0" + bn.js "^4.11.9" + create-hash "^1.2.0" + elliptic "^6.5.4" + hash.js "^1.1.7" + js-sha3 "^0.8.0" + scryptsy "^2.1.0" + tweetnacl "^1.0.3" + xxhashjs "^0.2.2" + +"@polkadot/util-crypto@^5.4.4", "@polkadot/util-crypto@^5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-5.9.2.tgz#3858cfffe7732458b4a2b38ece01eaf52a3746c2" integrity sha512-d8CW2grI3gWi6d/brmcZQWaMPHqQq5z7VcM74/v8D2KZ+hPYL3B0Jn8zGL1vtgMz2qdpWrZdAe89LBC8BvM9bw== @@ -814,6 +877,19 @@ camelcase "^5.3.1" ip-regex "^4.3.0" +"@polkadot/util@6.0.5", "@polkadot/util@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-6.0.5.tgz#aa52995d3fe998eed218d26b243832a7a3e2944d" + integrity sha512-0EnYdGAXx/Y2MLgCKtlfdKVcURV+Twx+M+auljTeMK8226pR7xMblYuVuO5bxhPWBa1W7+iQloEZ0VRQrIoMDw== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/x-textdecoder" "6.0.5" + "@polkadot/x-textencoder" "6.0.5" + "@types/bn.js" "^4.11.6" + bn.js "^4.11.9" + camelcase "^5.3.1" + ip-regex "^4.3.0" + "@polkadot/util@^3.0.1": version "3.7.1" resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-3.7.1.tgz#b7585380a6177814f7e28dc2165814864ef2c67b" @@ -834,6 +910,13 @@ dependencies: "@babel/runtime" "^7.13.7" +"@polkadot/wasm-crypto-asmjs@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-4.0.2.tgz#f42c353a64e1243841daf90e4bd54eff01a4e3cf" + integrity sha512-hlebqtGvfjg2ZNm4scwBGVHwOwfUhy2yw5RBHmPwkccUif3sIy4SAzstpcVBIVMdAEvo746bPWEInA8zJRcgJA== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/wasm-crypto-wasm@^3.2.4": version "3.2.4" resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-3.2.4.tgz#70885e06a813af91d81cf7e8ff826976fa99a38b" @@ -841,6 +924,13 @@ dependencies: "@babel/runtime" "^7.13.7" +"@polkadot/wasm-crypto-wasm@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-4.0.2.tgz#89f9e0a1e4d076784d4a42bea37fc8b06bdd8bb6" + integrity sha512-de/AfNPZ0uDKFWzOZ1rJCtaUbakGN29ks6IRYu6HZTRg7+RtqvE1rIkxabBvYgQVHIesmNwvEA9DlIkS6hYRFQ== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/wasm-crypto@^3.2.4": version "3.2.4" resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-3.2.4.tgz#c3e23ff728c1d5701215ae15ecdc605e96901989" @@ -850,17 +940,26 @@ "@polkadot/wasm-crypto-asmjs" "^3.2.4" "@polkadot/wasm-crypto-wasm" "^3.2.4" -"@polkadot/x-fetch@^5.9.2": - version "5.9.2" - resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-5.9.2.tgz#0ec2b00bd253b896f7e435dfba34ebac914269e1" - integrity sha512-Nx7GfyOmMdqn5EX+wf6PnIwleQX+aGqzdbYhozNLF54IoNFLHLOs6hCYnBlKbmM1WyukMZMjg2YxyZRQWcHKPQ== +"@polkadot/wasm-crypto@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-4.0.2.tgz#9649057adee8383cc86433d107ba526b718c5a3b" + integrity sha512-2h9FuQFkBc+B3TwSapt6LtyPvgtd0Hq9QsHW8g8FrmKBFRiiFKYRpfJKHCk0aCZzuRf9h95bQl/X6IXAIWF2ng== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/x-global" "5.9.2" + "@babel/runtime" "^7.13.9" + "@polkadot/wasm-crypto-asmjs" "^4.0.2" + "@polkadot/wasm-crypto-wasm" "^4.0.2" + +"@polkadot/x-fetch@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-6.0.5.tgz#b6c90c478f9951ab1f9c835d48869c669c45120e" + integrity sha512-LuyIxot8pLnYaYsR1xok7Bjm+s7wxYe27Y66THea6bDL3CrBPQdj74F9i0OIxD1GB+qJqh4mDApiGX3COqssvg== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/x-global" "6.0.5" "@types/node-fetch" "^2.5.8" node-fetch "^2.6.1" -"@polkadot/x-global@5.9.2", "@polkadot/x-global@^5.9.2": +"@polkadot/x-global@5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-5.9.2.tgz#e223d59536d168c7cbc49fc3a2052cbd71bd7256" integrity sha512-wpY6IAOZMGiJQa8YMm7NeTLi9bwnqqVauR+v7HwyrssnGPuYX8heb6BQLOnnnPh/EK0+M8zNtwRBU48ez0/HOg== @@ -869,6 +968,15 @@ "@types/node-fetch" "^2.5.8" node-fetch "^2.6.1" +"@polkadot/x-global@6.0.5", "@polkadot/x-global@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-6.0.5.tgz#eb2a0980e4c2012f251e7b61832e185f5037ae80" + integrity sha512-KjQvICngNdB2Gno0TYJlgjKI0Ia0NPhN1BG6YzcKLO/5ZNzNHkLmowdNb5gprE8uCBnOFXXHwgZAE/nTYya2dg== + dependencies: + "@babel/runtime" "^7.13.9" + "@types/node-fetch" "^2.5.8" + node-fetch "^2.6.1" + "@polkadot/x-randomvalues@5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-5.9.2.tgz#563a76550f94107ce5a37c462ed067dc040626b1" @@ -877,6 +985,14 @@ "@babel/runtime" "^7.13.8" "@polkadot/x-global" "5.9.2" +"@polkadot/x-randomvalues@6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-6.0.5.tgz#32aa5e670acf3ab13af281f9c0871c279de24b0a" + integrity sha512-MZK6+35vk7hnLW+Jciu5pNwMOkaCRNdsTVfNimzaJpIi6hN27y1X2oD82SRln0X4mKh370eLbvP8i3ylOzWnww== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/x-global" "6.0.5" + "@polkadot/x-rxjs@^5.4.4", "@polkadot/x-rxjs@^5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/x-rxjs/-/x-rxjs-5.9.2.tgz#925b7c3325678b137ca30af6a726b22c5e8f9125" @@ -885,6 +1001,14 @@ "@babel/runtime" "^7.13.8" rxjs "^6.6.6" +"@polkadot/x-rxjs@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-rxjs/-/x-rxjs-6.0.5.tgz#829b12f225a4252ae16e405fe7876cce390eabd6" + integrity sha512-nwMaP69/RzdXbPn8XypIRagMpW46waSraQq4/tGb4h+/Qob+RHxCT68UHKz1gp7kzxhrf85LanE9410A6EYjRw== + dependencies: + "@babel/runtime" "^7.13.9" + rxjs "^6.6.6" + "@polkadot/x-textdecoder@5.9.2": version "5.9.2" resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-5.9.2.tgz#2e69922acc426f91adc2629fea362e41c9035f25" @@ -893,6 +1017,14 @@ "@babel/runtime" "^7.13.8" "@polkadot/x-global" "5.9.2" +"@polkadot/x-textdecoder@6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-6.0.5.tgz#919a8991c9e81610a3c4f6bf314331071f2f8345" + integrity sha512-Vd2OftcEYxg2jG37lJw5NcZotnOidinN84m1HJszLIQT9vZDnFfN60gobHsuzHaGjEDexe4wqe0PfbgA4MfWIQ== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/x-global" "6.0.5" + "@polkadot/x-textdecoder@^3.7.1": version "3.7.1" resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-3.7.1.tgz#2d02bd33df0e5d4818b8d96892a5c8290e967573" @@ -908,6 +1040,14 @@ "@babel/runtime" "^7.13.8" "@polkadot/x-global" "5.9.2" +"@polkadot/x-textencoder@6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-6.0.5.tgz#fc851259de97a98f3417e51807c1f5ebe265fdf0" + integrity sha512-wAheP9/kzpfBw5uU/jCnHtd9uN9XzUPYH81aPbx3X026dXNMa4xpOoroCfEuNu2RtFXm0ONuYfpHxvHUsst9lA== + dependencies: + "@babel/runtime" "^7.13.9" + "@polkadot/x-global" "6.0.5" + "@polkadot/x-textencoder@^3.7.1": version "3.7.1" resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-3.7.1.tgz#1fe1884821f255565735b1b5dbb17ee61de51fa3" @@ -915,14 +1055,14 @@ dependencies: "@babel/runtime" "^7.12.1" -"@polkadot/x-ws@^5.9.2": - version "5.9.2" - resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-5.9.2.tgz#294f226be5ef07363426b8cf2729cba12d9637e5" - integrity sha512-6A/cteC0B3hm64/xG6DNG8qGsHAXJgAy9wjcB38qnoJGYl12hysIFjPeHD+V0W/LOl9payW6kpZzhisLlVOZpQ== +"@polkadot/x-ws@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-6.0.5.tgz#bafab6004d88d9273478332a3a040bfef3647619" + integrity sha512-J2vUfDjWIwEB/FSIXKZxER2flWqRvWcxvAaN+w6dhxJw8BKl+NYKN8QRrlhcDvbk/PWEEtdjthwV3lyOoeGDLA== dependencies: - "@babel/runtime" "^7.13.8" - "@polkadot/x-global" "5.9.2" - "@types/websocket" "^1.0.1" + "@babel/runtime" "^7.13.9" + "@polkadot/x-global" "6.0.5" + "@types/websocket" "^1.0.2" websocket "^1.0.33" "@sindresorhus/slugify@^1.1.0": @@ -1101,7 +1241,7 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@26.x", "@types/jest@^26.0.20": +"@types/jest@^26.0.20": version "26.0.20" resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.20.tgz#cd2f2702ecf69e86b586e1f5223a60e454056307" integrity sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA== @@ -1147,9 +1287,9 @@ form-data "^3.0.0" "@types/node@*": - version "14.14.31" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055" - integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g== + version "14.14.33" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.33.tgz#9e4f8c64345522e4e8ce77b334a8aaa64e2b6c78" + integrity sha512-oJqcTrgPUF29oUP8AsUqbXGJNuPutsetaa9kTQAQce5Lx5dTYWV02ScBiT/k1BX/Z7pKeqedmvp39Wu4zR7N7g== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -1157,14 +1297,14 @@ integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== "@types/prettier@^2.0.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.1.tgz#374e31645d58cb18a07b3ecd8e9dede4deb2cccd" - integrity sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw== + version "2.2.2" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.2.tgz#e2280c89ddcbeef340099d6968d8c86ba155fdf6" + integrity sha512-i99hy7Ki19EqVOl77WplDrvgNugHnsSjECVR/wUrzw2TJXz1zlUfT2ngGckR6xN7yFYaijsMAqPkOLx9HgUqHg== "@types/qs@*": - version "6.9.5" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" - integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== + version "6.9.6" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" + integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA== "@types/range-parser@*": version "1.2.3" @@ -1194,10 +1334,10 @@ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== -"@types/websocket@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.1.tgz#039272c196c2c0e4868a0d8a1a27bbb86e9e9138" - integrity sha512-f5WLMpezwVxCLm1xQe/kdPpQIOmL0TXYx2O15VYfYzc7hTIdxiOoOvez+McSIw3b7z/1zGovew9YSL7+h4h7/Q== +"@types/websocket@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.2.tgz#d2855c6a312b7da73ed16ba6781815bf30c6187a" + integrity sha512-B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ== dependencies: "@types/node" "*" @@ -1220,13 +1360,13 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.16.1.tgz#2caf6a79dd19c3853b8d39769a27fccb24e4e651" - integrity sha512-SK777klBdlkUZpZLC1mPvyOWk9yAFCWmug13eAjVQ4/Q1LATE/NbcQL1xDHkptQkZOLnPmLUA1Y54m8dqYwnoQ== +"@typescript-eslint/eslint-plugin@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.17.0.tgz#6f856eca4e6a52ce9cf127dfd349096ad936aa2d" + integrity sha512-/fKFDcoHg8oNan39IKFOb5WmV7oWhQe1K6CDaAVfJaNWEhmfqlA24g+u1lqU5bMH7zuNasfMId4LaYWC5ijRLw== dependencies: - "@typescript-eslint/experimental-utils" "4.16.1" - "@typescript-eslint/scope-manager" "4.16.1" + "@typescript-eslint/experimental-utils" "4.17.0" + "@typescript-eslint/scope-manager" "4.17.0" debug "^4.1.1" functional-red-black-tree "^1.0.1" lodash "^4.17.15" @@ -1234,60 +1374,60 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.16.1.tgz#da7a396dc7d0e01922acf102b76efff17320b328" - integrity sha512-0Hm3LSlMYFK17jO4iY3un1Ve9x1zLNn4EM50Lia+0EV99NdbK+cn0er7HC7IvBA23mBg3P+8dUkMXy4leL33UQ== +"@typescript-eslint/experimental-utils@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.17.0.tgz#762c44aaa1a6a3c05b6d63a8648fb89b89f84c80" + integrity sha512-ZR2NIUbnIBj+LGqCFGQ9yk2EBQrpVVFOh9/Kd0Lm6gLpSAcCuLLe5lUCibKGCqyH9HPwYC0GIJce2O1i8VYmWA== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/scope-manager" "4.16.1" - "@typescript-eslint/types" "4.16.1" - "@typescript-eslint/typescript-estree" "4.16.1" + "@typescript-eslint/scope-manager" "4.17.0" + "@typescript-eslint/types" "4.17.0" + "@typescript-eslint/typescript-estree" "4.17.0" eslint-scope "^5.0.0" eslint-utils "^2.0.0" -"@typescript-eslint/parser@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.16.1.tgz#3bbd3234dd3c5b882b2bcd9899bc30e1e1586d2a" - integrity sha512-/c0LEZcDL5y8RyI1zLcmZMvJrsR6SM1uetskFkoh3dvqDKVXPsXI+wFB/CbVw7WkEyyTKobC1mUNp/5y6gRvXg== +"@typescript-eslint/parser@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.17.0.tgz#141b647ffc72ebebcbf9b0fe6087f65b706d3215" + integrity sha512-KYdksiZQ0N1t+6qpnl6JeK9ycCFprS9xBAiIrw4gSphqONt8wydBw4BXJi3C11ywZmyHulvMaLjWsxDjUSDwAw== dependencies: - "@typescript-eslint/scope-manager" "4.16.1" - "@typescript-eslint/types" "4.16.1" - "@typescript-eslint/typescript-estree" "4.16.1" + "@typescript-eslint/scope-manager" "4.17.0" + "@typescript-eslint/types" "4.17.0" + "@typescript-eslint/typescript-estree" "4.17.0" debug "^4.1.1" -"@typescript-eslint/scope-manager@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.16.1.tgz#244e2006bc60cfe46987e9987f4ff49c9e3f00d5" - integrity sha512-6IlZv9JaurqV0jkEg923cV49aAn8V6+1H1DRfhRcvZUrptQ+UtSKHb5kwTayzOYTJJ/RsYZdcvhOEKiBLyc0Cw== +"@typescript-eslint/scope-manager@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.17.0.tgz#f4edf94eff3b52a863180f7f89581bf963e3d37d" + integrity sha512-OJ+CeTliuW+UZ9qgULrnGpPQ1bhrZNFpfT/Bc0pzNeyZwMik7/ykJ0JHnQ7krHanFN9wcnPK89pwn84cRUmYjw== dependencies: - "@typescript-eslint/types" "4.16.1" - "@typescript-eslint/visitor-keys" "4.16.1" + "@typescript-eslint/types" "4.17.0" + "@typescript-eslint/visitor-keys" "4.17.0" -"@typescript-eslint/types@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.16.1.tgz#5ba2d3e38b1a67420d2487519e193163054d9c15" - integrity sha512-nnKqBwMgRlhzmJQF8tnFDZWfunXmJyuXj55xc8Kbfup4PbkzdoDXZvzN8//EiKR27J6vUSU8j4t37yUuYPiLqA== +"@typescript-eslint/types@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.17.0.tgz#f57d8fc7f31b348db946498a43050083d25f40ad" + integrity sha512-RN5z8qYpJ+kXwnLlyzZkiJwfW2AY458Bf8WqllkondQIcN2ZxQowAToGSd9BlAUZDB5Ea8I6mqL2quGYCLT+2g== -"@typescript-eslint/typescript-estree@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.16.1.tgz#c2fc46b05a48fbf8bbe8b66a63f0a9ba04b356f1" - integrity sha512-m8I/DKHa8YbeHt31T+UGd/l8Kwr0XCTCZL3H4HMvvLCT7HU9V7yYdinTOv1gf/zfqNeDcCgaFH2BMsS8x6NvJg== +"@typescript-eslint/typescript-estree@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.17.0.tgz#b835d152804f0972b80dbda92477f9070a72ded1" + integrity sha512-lRhSFIZKUEPPWpWfwuZBH9trYIEJSI0vYsrxbvVvNyIUDoKWaklOAelsSkeh3E2VBSZiNe9BZ4E5tYBZbUczVQ== dependencies: - "@typescript-eslint/types" "4.16.1" - "@typescript-eslint/visitor-keys" "4.16.1" + "@typescript-eslint/types" "4.17.0" + "@typescript-eslint/visitor-keys" "4.17.0" debug "^4.1.1" globby "^11.0.1" is-glob "^4.0.1" semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/visitor-keys@4.16.1": - version "4.16.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.16.1.tgz#d7571fb580749fae621520deeb134370bbfc7293" - integrity sha512-s/aIP1XcMkEqCNcPQtl60ogUYjSM8FU2mq1O7y5cFf3Xcob1z1iXWNB6cC43Op+NGRTFgGolri6s8z/efA9i1w== +"@typescript-eslint/visitor-keys@4.17.0": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.17.0.tgz#9c304cfd20287c14a31d573195a709111849b14d" + integrity sha512-WfuMN8mm5SSqXuAr9NM+fItJ0SVVphobWYkWOwQ1odsfC014Vdxk/92t4JwS1Q6fCA/ABfCKpa3AVtpUKTNKGQ== dependencies: - "@typescript-eslint/types" "4.16.1" + "@typescript-eslint/types" "4.17.0" eslint-visitor-keys "^2.0.0" JSONStream@^1.0.4: @@ -1298,7 +1438,7 @@ JSONStream@^1.0.4: jsonparse "^1.2.0" through ">=2.2.7 <3" -abab@^2.0.3: +abab@^2.0.3, abab@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== @@ -1334,6 +1474,11 @@ acorn@^7.1.1, acorn@^7.4.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== +acorn@^8.0.5: + version "8.1.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz#52311fd7037ae119cbb134309e901aa46295b3fe" + integrity sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA== + add-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" @@ -1350,9 +1495,9 @@ ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: uri-js "^4.2.2" ajv@^7.0.2: - version "7.1.1" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.1.1.tgz#1e6b37a454021fa9941713f38b952fc1c8d32a84" - integrity sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ== + version "7.2.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.2.1.tgz#a5ac226171912447683524fa2f1248fcf8bac83d" + integrity sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ== dependencies: fast-deep-equal "^3.1.1" json-schema-traverse "^1.0.0" @@ -1519,6 +1664,13 @@ babel-jest@^26.6.3: graceful-fs "^4.2.4" slash "^3.0.0" +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + babel-plugin-istanbul@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" @@ -1745,6 +1897,14 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1783,9 +1943,9 @@ camelcase@^6.0.0: integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== caniuse-lite@^1.0.30001181: - version "1.0.30001192" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001192.tgz#b848ebc0ab230cf313d194a4775a30155d50ae40" - integrity sha512-63OrUnwJj5T1rUmoyqYTdRWBqFFxZFlyZnRRjDR8NSUQFB6A+j/uBORU/SyJ5WzDLg4SPiZH40hQCBNdZ/jmAw== + version "1.0.30001197" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001197.tgz#47ad15b977d2f32b3ec2fe2b087e0c50443771db" + integrity sha512-8aE+sqBqtXz4G8g35Eg/XEaFr2N7rd/VQ6eABGBmNtcB8cN6qNJhMi6oSFy4UWWZgqgL3filHT8Nha4meu3tsw== capture-exit@^2.0.0: version "2.0.0" @@ -1889,9 +2049,9 @@ class-utils@^0.3.5: static-extend "^0.1.1" clipboard@^2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== + version "2.0.7" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.7.tgz#da927f817b1859426df39212ac81feb07dbaeadc" + integrity sha512-8M8WEZcIvs0hgOma+wAPkrUxpv0PMY1L6VsAJh/2DOKARIMpyWe6ZLcEoe1qktl6/ced5ceYHs+oGedSbgZ3sg== dependencies: good-listener "^1.2.2" select "^1.1.2" @@ -1958,9 +2118,9 @@ color-name@^1.0.0, color-name@~1.1.4: integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.5.2: - version "1.5.4" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" - integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + version "1.5.5" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" + integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" @@ -2284,7 +2444,7 @@ cssom@~0.3.6: resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== -cssstyle@^2.2.0: +cssstyle@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== @@ -2364,7 +2524,7 @@ decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= -decimal.js@^10.2.0: +decimal.js@^10.2.1: version "10.2.1" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3" integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw== @@ -2384,6 +2544,13 @@ deepmerge@^4.2.2: resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== +define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -2501,9 +2668,9 @@ ee-first@1.1.1: integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= electron-to-chromium@^1.3.649: - version "1.3.676" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.676.tgz#18b2336239b6cdc68c57ce96bf73daf80bab9eba" - integrity sha512-t0eEgYCP+XEbH/KwxWYZDY0XKwzmokDAsjFJ2rBstp2XuwuBCUZ+ni5qXI6XDRNkvDpVJcAOp2aJxkSkshKkmw== + version "1.3.684" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.684.tgz#053fbb0a4b2d5c076dfa6e1d8ecd06a3075a558a" + integrity sha512-GV/vz2EmmtRSvfGSQ5A0Lucic//IRSDijgL15IgzbBEEnp4rfbxeUSZSlBfmsj7BQvE4sBdgfsvPzLCnp6L21w== elliptic@^6.5.4: version "6.5.4" @@ -2610,13 +2777,13 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@^1.14.1: - version "1.14.3" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== +escodegen@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" + integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== dependencies: esprima "^4.0.1" - estraverse "^4.2.0" + estraverse "^5.2.0" esutils "^2.0.2" optionator "^0.8.1" optionalDependencies: @@ -2735,7 +2902,7 @@ esrecurse@^4.3.0: dependencies: estraverse "^5.2.0" -estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.1.1: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== @@ -3174,6 +3341,15 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -3256,9 +3432,9 @@ gitconfiglocal@^1.0.0: ini "^1.3.2" glob-parent@^5.0.0, glob-parent@^5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" @@ -3355,6 +3531,11 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-symbols@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== + has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" @@ -3424,10 +3605,10 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== -hosted-git-info@^3.0.6: - version "3.0.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" - integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== +hosted-git-info@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.0.tgz#9f06639a90beff66cacae6e77f8387b431d61ddc" + integrity sha512-fqhGdjk4av7mT9fU/B01dUtZ+WZSc/XEXMoLXDVZukiQRXxeHSSz3AqbeWRJHtF8EQYHlAgB1NSAHU0Cm7aqZA== dependencies: lru-cache "^6.0.0" @@ -3573,11 +3754,6 @@ interpret@^1.0.0: resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= - ip-regex@^4.2.0, ip-regex@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" @@ -4278,35 +4454,35 @@ jsbn@~0.1.0: integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= jsdom@^16.4.0: - version "16.4.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb" - integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== + version "16.5.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.0.tgz#9e453505600cc5a70b385750d35256f380730cc4" + integrity sha512-QxZH0nmDTnTTVI0YDm4RUlaUPl5dcyn62G5TMDNfMmTW+J1u1v9gCR8WR+WZ6UghAa7nKJjDOFaI00eMMWvJFQ== dependencies: - abab "^2.0.3" - acorn "^7.1.1" + abab "^2.0.5" + acorn "^8.0.5" acorn-globals "^6.0.0" cssom "^0.4.4" - cssstyle "^2.2.0" + cssstyle "^2.3.0" data-urls "^2.0.0" - decimal.js "^10.2.0" + decimal.js "^10.2.1" domexception "^2.0.1" - escodegen "^1.14.1" + escodegen "^2.0.0" html-encoding-sniffer "^2.0.1" is-potential-custom-element-name "^1.0.0" nwsapi "^2.2.0" - parse5 "5.1.1" + parse5 "6.0.1" request "^2.88.2" - request-promise-native "^1.0.8" - saxes "^5.0.0" + request-promise-native "^1.0.9" + saxes "^5.0.1" symbol-tree "^3.2.4" - tough-cookie "^3.0.1" + tough-cookie "^4.0.0" w3c-hr-time "^1.0.2" w3c-xmlserializer "^2.0.0" webidl-conversions "^6.1.0" whatwg-encoding "^1.0.5" whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" - ws "^7.2.3" + ws "^7.4.4" xml-name-validator "^3.0.0" jsesc@^2.5.1: @@ -4966,11 +5142,11 @@ normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package- validate-npm-package-license "^3.0.1" normalize-package-data@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a" - integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw== + version "3.0.1" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.1.tgz#98dc56dfe6755d99b1c53f046e1e3d2dde55a1c7" + integrity sha512-D/ttLdxo71msR4FF3VgSwK4blHfE3/vGByz1NCeE7/Dh8reQOKNJJjk5L10mLq9jxa+ZHzT1/HLgxljzbXE7Fw== dependencies: - hosted-git-info "^3.0.6" + hosted-git-info "^4.0.0" resolve "^1.17.0" semver "^7.3.2" validate-npm-package-license "^3.0.1" @@ -5030,6 +5206,11 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" +object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" @@ -5037,6 +5218,16 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" +object.assign@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" + object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" @@ -5214,10 +5405,10 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse5@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" - integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== +parse5@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== parseurl@~1.3.3: version "1.3.3" @@ -5422,7 +5613,7 @@ ps-tree@^1.2.0: dependencies: event-stream "=3.3.4" -psl@^1.1.28: +psl@^1.1.28, psl@^1.1.33: version "1.8.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== @@ -5653,7 +5844,7 @@ request-promise-core@1.1.4: dependencies: lodash "^4.17.19" -request-promise-native@^1.0.8: +request-promise-native@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== @@ -5814,7 +6005,7 @@ sane@^4.0.3: minimist "^1.1.1" walker "~1.0.5" -saxes@^5.0.0: +saxes@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== @@ -6433,14 +6624,14 @@ tough-cookie@^2.3.3, tough-cookie@~2.5.0: psl "^1.1.28" punycode "^2.1.1" -tough-cookie@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" - integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== +tough-cookie@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" + integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== dependencies: - ip-regex "^2.1.0" - psl "^1.1.28" + psl "^1.1.33" punycode "^2.1.1" + universalify "^0.1.2" tr46@^2.0.2: version "2.0.2" @@ -6474,12 +6665,11 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== -ts-jest@^26.5.1: - version "26.5.2" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.5.2.tgz#5281d6b44c2f94f71205728a389edc3d7995b0c4" - integrity sha512-bwyJ2zJieSugf7RB+o8fgkMeoMVMM2KPDE0UklRLuACxjwJsOrZNo6chrcScmK33YavPSwhARffy8dZx5LJdUQ== +ts-jest@^26.5.3: + version "26.5.3" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.5.3.tgz#a6ee00ba547be3b09877550df40a1465d0295554" + integrity sha512-nBiiFGNvtujdLryU7MiMQh1iPmnZ/QvOskBbD2kURiI1MwqvxlxNnaAB/z9TbslMqCsSbu5BXvSSQPc5tvHGeA== dependencies: - "@types/jest" "26.x" bs-logger "0.x" buffer-from "1.x" fast-json-stable-stringify "2.x" @@ -6508,9 +6698,9 @@ tslib@^1.8.1, tslib@^1.9.0: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tsutils@^3.17.1: - version "3.20.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.20.0.tgz#ea03ea45462e146b53d70ce0893de453ff24f698" - integrity sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg== + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== dependencies: tslib "^1.8.1" @@ -6584,9 +6774,9 @@ type@^1.0.1: integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== type@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.3.0.tgz#ada7c045f07ead08abf9e2edd29be1a0c0661132" - integrity sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg== + version "2.5.0" + resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d" + integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw== typedarray-to-buffer@^3.1.5: version "3.1.5" @@ -6605,15 +6795,10 @@ typescript@3.9.6: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a" integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw== -typescript@4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.4.tgz#f058636e2f4f83f94ddaae07b20fd5e14598432f" - integrity sha512-+Uru0t8qIRgjuCpiSPpfGuhHecMllk5Zsazj5LZvVsEStEjmIRRBZe+jHjGQvsgS7M1wONy2PQXd67EMyV6acg== - -typescript@^4.1.3: - version "4.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.2.tgz#1450f020618f872db0ea17317d16d8da8ddb8c4c" - integrity sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ== +typescript@4.2.3, typescript@^4.1.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3" + integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw== uglify-js@^3.1.4: version "3.13.0" @@ -6649,6 +6834,11 @@ unist-util-stringify-position@^2.0.0: dependencies: "@types/unist" "^2.0.2" +universalify@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" @@ -6707,9 +6897,9 @@ uuid@^8.3.0: integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== v8-compile-cache@^2.0.3: - version "2.2.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" - integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== v8-to-istanbul@^7.0.0: version "7.1.0" @@ -6914,10 +7104,10 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -ws@^7.2.3: - version "7.4.3" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.3.tgz#1f9643de34a543b8edb124bdcbc457ae55a6e5cd" - integrity sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA== +ws@^7.4.4: + version "7.4.4" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.4.tgz#383bc9742cb202292c9077ceab6f6047b17f2d59" + integrity sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw== xml-name-validator@^3.0.0: version "3.0.0"