diff --git a/package.json b/package.json index a50b1200ad..6def68ac6e 100644 --- a/package.json +++ b/package.json @@ -64,18 +64,18 @@ "test:skipped": "echo 'tests skipped'" }, "devDependencies": { - "@babel/core": "^7.19.3", + "@babel/core": "^7.19.6", "@babel/register": "^7.18.9", "@babel/runtime": "^7.19.4", "@crustio/crust-pin": "^1.0.0", - "@pinata/sdk": "^1.1.26", - "@polkadot/dev": "^0.67.147", + "@pinata/sdk": "^1.2.1", + "@polkadot/dev": "^0.67.148", "@types/chart.js": "^2.9.37", "@types/file-saver": "^2.0.5", - "@types/jest": "^29.0.3", + "@types/jest": "^29.2.0", "@types/react-beautiful-dnd": "^13.1.2", "@types/react-copy-to-clipboard": "^5.0.4", - "@types/react-dom": "^18.0.6", + "@types/react-dom": "^18.0.7", "@types/react-router-dom": "^5.3.3", "@types/store": "^2.0.2", "@types/styled-components": "^5.1.26", diff --git a/packages/apps-config/package.json b/packages/apps-config/package.json index ea34f24f91..1ea473b017 100644 --- a/packages/apps-config/package.json +++ b/packages/apps-config/package.json @@ -15,19 +15,19 @@ "dependencies": { "@acala-network/type-definitions": "^4.1.5", "@babel/runtime": "^7.19.4", - "@bifrost-finance/type-definitions": "1.6.1", + "@bifrost-finance/type-definitions": "1.7.1", "@crustio/type-definitions": "1.3.0", "@darwinia/types": "2.8.10", "@darwinia/types-known": "2.8.10", "@digitalnative/type-definitions": "1.1.27", - "@docknetwork/node-types": "0.10.0", + "@docknetwork/node-types": "0.13.0", "@edgeware/node-types": "3.6.2-wako", - "@equilab/definitions": "1.4.13", + "@equilab/definitions": "1.4.14", "@interlay/interbtc-types": "1.9.0", - "@kiltprotocol/type-definitions": "^0.2.1", + "@kiltprotocol/type-definitions": "^1.1.0", "@laminar/type-definitions": "0.3.1", - "@logion/node-api": "^0.5.0-2", - "@mangata-finance/types": "^0.8.0", + "@logion/node-api": "^0.7.0", + "@mangata-finance/types": "^0.9.0", "@metaverse-network-sdk/type-definitions": "^0.0.1-13", "@parallel-finance/type-definitions": "1.7.13", "@phala/typedefs": "0.2.32", @@ -39,12 +39,12 @@ "@polkadot/x-fetch": "^10.1.11", "@polymathnetwork/polymesh-types": "0.0.2", "@snowfork/snowbridge-types": "0.2.7", - "@sora-substrate/type-definitions": "1.10.0-beta.7", - "@subsocial/definitions": "^0.6.12-parachain.0", - "@unique-nft/opal-testnet-types": "0.5.3", - "@unique-nft/quartz-mainnet-types": "0.6.1", - "@unique-nft/unique-mainnet-types": "0.6.3", - "@zeitgeistpm/type-defs": "0.8.0", + "@sora-substrate/type-definitions": "1.10.21", + "@subsocial/definitions": "^0.7.7", + "@unique-nft/opal-testnet-types": "930.31.0", + "@unique-nft/quartz-mainnet-types": "930.31.0", + "@unique-nft/unique-mainnet-types": "930.31.0", + "@zeitgeistpm/type-defs": "0.9.0", "@zeroio/type-definitions": "0.0.14", "lodash": "^4.17.21", "moonbeam-types-bundle": "2.0.9", diff --git a/packages/apps-config/src/api/spec/bifrost-asgard.ts b/packages/apps-config/src/api/spec/bifrost-asgard.ts index ec873b418c..1099b398a8 100644 --- a/packages/apps-config/src/api/spec/bifrost-asgard.ts +++ b/packages/apps-config/src/api/spec/bifrost-asgard.ts @@ -1,6 +1,8 @@ // Copyright 2017-2022 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 +import type { OverrideBundleDefinition } from '@polkadot/types/types'; + import { typesBundleForPolkadot } from '@bifrost-finance/type-definitions'; -export default typesBundleForPolkadot.spec.asgard; +export default (typesBundleForPolkadot as { spec: { asgard: OverrideBundleDefinition } }).spec.asgard; diff --git a/packages/apps-config/src/api/spec/bifrost-parachain.ts b/packages/apps-config/src/api/spec/bifrost-parachain.ts index 16c60ae9d4..37dc6b61c1 100644 --- a/packages/apps-config/src/api/spec/bifrost-parachain.ts +++ b/packages/apps-config/src/api/spec/bifrost-parachain.ts @@ -1,6 +1,8 @@ // Copyright 2017-2022 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 +import type { OverrideBundleDefinition } from '@polkadot/types/types'; + import { typesBundleForPolkadot } from '@bifrost-finance/type-definitions'; -export default typesBundleForPolkadot.spec.bifrost; +export default (typesBundleForPolkadot as { spec: { bifrost: OverrideBundleDefinition } }).spec.bifrost; diff --git a/packages/apps-config/src/api/spec/bifrost-type-definitions.d.ts b/packages/apps-config/src/api/spec/bifrost-type-definitions.d.ts new file mode 100644 index 0000000000..c2a95798c3 --- /dev/null +++ b/packages/apps-config/src/api/spec/bifrost-type-definitions.d.ts @@ -0,0 +1,4 @@ +// Copyright 2017-2022 @polkadot/apps-config authors & contributors +// SPDX-License-Identifier: Apache-2.0 + +declare module '@bifrost-finance/type-definitions'; diff --git a/packages/apps-config/src/api/spec/bifrost.ts b/packages/apps-config/src/api/spec/bifrost.ts index 16c60ae9d4..37dc6b61c1 100644 --- a/packages/apps-config/src/api/spec/bifrost.ts +++ b/packages/apps-config/src/api/spec/bifrost.ts @@ -1,6 +1,8 @@ // Copyright 2017-2022 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 +import type { OverrideBundleDefinition } from '@polkadot/types/types'; + import { typesBundleForPolkadot } from '@bifrost-finance/type-definitions'; -export default typesBundleForPolkadot.spec.bifrost; +export default (typesBundleForPolkadot as { spec: { bifrost: OverrideBundleDefinition } }).spec.bifrost; diff --git a/packages/apps-config/src/api/typesBundle.ts b/packages/apps-config/src/api/typesBundle.ts index fdd759565b..3b5860e32c 100644 --- a/packages/apps-config/src/api/typesBundle.ts +++ b/packages/apps-config/src/api/typesBundle.ts @@ -6932,6 +6932,13 @@ export const typesBundle = { "len_cap": "u32", "items": "Vec" }, + "ChainAddressType": { + "_enum": [ + "Ethereum", + "Substrate", + "SubstrateWithPrefix" + ] + }, "ChainId": "u8", "Currency": { "_enum": [ @@ -6955,6 +6962,7 @@ export const typesBundle = { "DebtWeightType": "i128", "DebtWeightTypeInner": "i128", "DepositNonce": "u64", + "DispatchErrorModule": "DispatchErrorModuleU8", "Duration": { "secs": "u64", "nanos": "u32" @@ -7212,8 +7220,7 @@ export const typesBundle = { "SixMonth", "Year" ] - }, - "DispatchErrorModule": "DispatchErrorModuleU8" + } } } ] @@ -7316,6 +7323,13 @@ export const typesBundle = { "len_cap": "u32", "items": "Vec" }, + "ChainAddressType": { + "_enum": [ + "Ethereum", + "Substrate", + "SubstrateWithPrefix" + ] + }, "ChainId": "u8", "Currency": { "_enum": [ @@ -7339,6 +7353,7 @@ export const typesBundle = { "DebtWeightType": "i128", "DebtWeightTypeInner": "i128", "DepositNonce": "u64", + "DispatchErrorModule": "DispatchErrorModuleU8", "Duration": { "secs": "u64", "nanos": "u32" @@ -7596,8 +7611,7 @@ export const typesBundle = { "SixMonth", "Year" ] - }, - "DispatchErrorModule": "DispatchErrorModuleU8" + } } } ] @@ -24311,7 +24325,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -24322,7 +24337,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -24868,7 +24887,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -24879,7 +24899,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -26626,7 +26650,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -26637,7 +26662,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -27182,7 +27211,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -27193,7 +27223,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -28131,7 +28165,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -28142,7 +28177,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -28687,7 +28726,8 @@ export const typesBundle = { "ZLK": 7, "PHA": 8, "RMRK": 9, - "MOVR": 10 + "MOVR": 10, + "GLMR": 11 } }, "CurrencyId": { @@ -28698,7 +28738,11 @@ export const typesBundle = { "Stable": "TokenSymbol", "VSToken": "TokenSymbol", "VSBond": "(TokenSymbol, ParaId, LeasePeriod, LeasePeriod)", - "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)" + "LPToken": "(TokenSymbol, u8, TokenSymbol, u8)", + "Token2": "u8", + "VToken2": "u8", + "VSToken2": "u8", + "VSBond2": "u8" } }, "CurrencyIdOf": "CurrencyId", @@ -45657,7 +45701,8 @@ export const typesBundle = { "V5Collection", "V6ItemUpload", "V7ItemToken", - "V8AddSeal" + "V8AddSeal", + "V9TermsAndConditions" ] }, "Requester": { @@ -45673,7 +45718,8 @@ export const typesBundle = { "description": "Vec", "files": "Vec>", "token": "Option", - "restricted_delivery": "bool" + "restricted_delivery": "bool", + "terms_and_conditions": "Vec>" }, "CollectionItemFile": { "name": "Vec", @@ -45695,6 +45741,11 @@ export const typesBundle = { "V2AddOnchainSettings" ] }, + "TermsAndConditionsElement": { + "tcType": "Vec", + "tcLoc": "LocId", + "details": "Vec" + }, "FullIdentification": "Exposure", "IdentificationTuple": "(ValidatorId, FullIdentification)", "MembershipProof": { @@ -58419,38 +58470,8 @@ export const typesBundle = { "opal": { "rpc": { "unique": { - "adminlist": { - "description": "Get admin list", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, - "allowlist": { - "description": "Get allowlist", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, "accountTokens": { - "description": "Get tokens owned by account", + "description": "Get tokens owned by an account in a collection", "params": [ { "name": "collection", @@ -58469,7 +58490,7 @@ export const typesBundle = { "type": "Vec" }, "collectionTokens": { - "description": "Get tokens contained in collection", + "description": "Get tokens contained within a collection", "params": [ { "name": "collection", @@ -58483,46 +58504,54 @@ export const typesBundle = { ], "type": "Vec" }, - "lastTokenId": { - "description": "Get last token id", + "tokenExists": { + "description": "Check if the token exists", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "bool" }, - "totalSupply": { - "description": "Get amount of unique collection tokens", + "tokenOwner": { + "description": "Get the token owner", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "accountBalance": { - "description": "Get amount of different user tokens", + "topmostTokenOwner": { + "description": "Get the topmost token owner in the hierarchy of a possibly nested token", "params": [ { "name": "collection", "type": "u32" }, { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -58530,19 +58559,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "balance": { - "description": "Get amount of specific account token", + "tokenOwners": { + "description": "Returns 10 tokens owners in no particular order", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -58553,23 +58578,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "allowance": { - "description": "Get allowed amount", + "tokenChildren": { + "description": "Get tokens nested directly into the token", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "sender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, - { - "name": "spender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -58580,18 +58597,19 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "tokenOwner": { - "description": "Get token owner", + "collectionProperties": { + "description": "Get collection properties, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -58599,10 +58617,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "topmostTokenOwner": { - "description": "Get token owner, in case of nested token - find parent recursive", + "tokenProperties": { + "description": "Get token properties, optionally limited to the provided keys", "params": [ { "name": "collection", @@ -58612,24 +58630,30 @@ export const typesBundle = { "name": "tokenId", "type": "u32" }, + { + "name": "propertyKeys", + "type": "Option>", + "isOptional": true + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "tokenChildren": { - "description": "Get tokens nested directly into the token", + "propertyPermissions": { + "description": "Get property permissions, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -58637,7 +58661,7 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "Vec" }, "constMetadata": { "description": "Get token constant metadata", @@ -58677,16 +58701,20 @@ export const typesBundle = { ], "type": "Vec" }, - "collectionProperties": { - "description": "Get collection properties", + "tokenData": { + "description": "Get token data, including properties, optionally limited to the provided keys, and total pieces for an RFT", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "propertyKeys", - "type": "Vec", + "type": "Option>", "isOptional": true }, { @@ -58695,43 +58723,33 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "UpDataStructsTokenData" }, - "tokenProperties": { - "description": "Get token properties", + "totalSupply": { + "description": "Get the amount of distinctive tokens present in a collection", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "tokenId", - "type": "u32" - }, - { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true - }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "propertyPermissions": { - "description": "Get property permissions", + "accountBalance": { + "description": "Get the amount of any user tokens owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { "name": "at", @@ -58739,23 +58757,22 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "tokenData": { - "description": "Get token data", + "balance": { + "description": "Get the amount of a specific token owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -58763,15 +58780,23 @@ export const typesBundle = { "isOptional": true } ], - "type": "UpDataStructsTokenData" + "type": "u128" }, - "tokenExists": { - "description": "Check if token exists", + "allowance": { + "description": "Get the amount of currently possible sponsored transactions on a token for the fee to be taken off a sponsor", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "sender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, + { + "name": "spender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, { "name": "tokenId", "type": "u32" @@ -58782,10 +58807,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "bool" + "type": "u128" }, - "collectionById": { - "description": "Get collection by specified id", + "adminlist": { + "description": "Get the list of admin accounts of a collection", "params": [ { "name": "collection", @@ -58797,21 +58822,25 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "collectionStats": { - "description": "Get collection stats", + "allowlist": { + "description": "Get the list of accounts allowed to operate within a collection", "params": [ + { + "name": "collection", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "UpDataStructsCollectionStats" + "type": "Vec" }, "allowed": { - "description": "Check if user is allowed to use collection", + "description": "Check if a user is allowed to operate within a collection", "params": [ { "name": "collection", @@ -58829,8 +58858,49 @@ export const typesBundle = { ], "type": "bool" }, + "lastTokenId": { + "description": "Get the last token ID created in a collection", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "u32" + }, + "collectionById": { + "description": "Get a collection by the specified ID", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" + }, + "collectionStats": { + "description": "Get chain stats about collections", + "params": [ + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "UpDataStructsCollectionStats" + }, "nextSponsored": { - "description": "Get number of blocks when sponsored transaction is available", + "description": "Get the number of blocks until sponsoring a transaction is available", "params": [ { "name": "collection", @@ -58866,6 +58936,25 @@ export const typesBundle = { } ], "type": "Option" + }, + "totalPieces": { + "description": "Get the total amount of pieces of an RFT", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "tokenId", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" } } } @@ -61687,38 +61776,8 @@ export const typesBundle = { "quartz": { "rpc": { "unique": { - "adminlist": { - "description": "Get admin list", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, - "allowlist": { - "description": "Get allowlist", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, "accountTokens": { - "description": "Get tokens owned by account", + "description": "Get tokens owned by an account in a collection", "params": [ { "name": "collection", @@ -61737,7 +61796,7 @@ export const typesBundle = { "type": "Vec" }, "collectionTokens": { - "description": "Get tokens contained in collection", + "description": "Get tokens contained within a collection", "params": [ { "name": "collection", @@ -61751,46 +61810,54 @@ export const typesBundle = { ], "type": "Vec" }, - "lastTokenId": { - "description": "Get last token id", + "tokenExists": { + "description": "Check if the token exists", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "bool" }, - "totalSupply": { - "description": "Get amount of unique collection tokens", + "tokenOwner": { + "description": "Get the token owner", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "accountBalance": { - "description": "Get amount of different user tokens", + "topmostTokenOwner": { + "description": "Get the topmost token owner in the hierarchy of a possibly nested token", "params": [ { "name": "collection", "type": "u32" }, { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -61798,19 +61865,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "balance": { - "description": "Get amount of specific account token", + "tokenOwners": { + "description": "Returns 10 tokens owners in no particular order", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -61821,23 +61884,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "allowance": { - "description": "Get allowed amount", + "tokenChildren": { + "description": "Get tokens nested directly into the token", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "sender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, - { - "name": "spender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -61848,18 +61903,19 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "tokenOwner": { - "description": "Get token owner", + "collectionProperties": { + "description": "Get collection properties, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -61867,10 +61923,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "topmostTokenOwner": { - "description": "Get token owner, in case of nested token - find parent recursive", + "tokenProperties": { + "description": "Get token properties, optionally limited to the provided keys", "params": [ { "name": "collection", @@ -61880,24 +61936,30 @@ export const typesBundle = { "name": "tokenId", "type": "u32" }, + { + "name": "propertyKeys", + "type": "Option>", + "isOptional": true + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "tokenChildren": { - "description": "Get tokens nested directly into the token", + "propertyPermissions": { + "description": "Get property permissions, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -61905,7 +61967,7 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "Vec" }, "constMetadata": { "description": "Get token constant metadata", @@ -61945,16 +62007,20 @@ export const typesBundle = { ], "type": "Vec" }, - "collectionProperties": { - "description": "Get collection properties", + "tokenData": { + "description": "Get token data, including properties, optionally limited to the provided keys, and total pieces for an RFT", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "propertyKeys", - "type": "Vec", + "type": "Option>", "isOptional": true }, { @@ -61963,43 +62029,33 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "UpDataStructsTokenData" }, - "tokenProperties": { - "description": "Get token properties", + "totalSupply": { + "description": "Get the amount of distinctive tokens present in a collection", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "tokenId", - "type": "u32" - }, - { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true - }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "propertyPermissions": { - "description": "Get property permissions", + "accountBalance": { + "description": "Get the amount of any user tokens owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { "name": "at", @@ -62007,23 +62063,22 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "tokenData": { - "description": "Get token data", + "balance": { + "description": "Get the amount of a specific token owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -62031,15 +62086,23 @@ export const typesBundle = { "isOptional": true } ], - "type": "UpDataStructsTokenData" + "type": "u128" }, - "tokenExists": { - "description": "Check if token exists", + "allowance": { + "description": "Get the amount of currently possible sponsored transactions on a token for the fee to be taken off a sponsor", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "sender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, + { + "name": "spender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, { "name": "tokenId", "type": "u32" @@ -62050,10 +62113,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "bool" + "type": "u128" }, - "collectionById": { - "description": "Get collection by specified id", + "adminlist": { + "description": "Get the list of admin accounts of a collection", "params": [ { "name": "collection", @@ -62065,21 +62128,25 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "collectionStats": { - "description": "Get collection stats", + "allowlist": { + "description": "Get the list of accounts allowed to operate within a collection", "params": [ + { + "name": "collection", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "UpDataStructsCollectionStats" + "type": "Vec" }, "allowed": { - "description": "Check if user is allowed to use collection", + "description": "Check if a user is allowed to operate within a collection", "params": [ { "name": "collection", @@ -62097,8 +62164,49 @@ export const typesBundle = { ], "type": "bool" }, + "lastTokenId": { + "description": "Get the last token ID created in a collection", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "u32" + }, + "collectionById": { + "description": "Get a collection by the specified ID", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" + }, + "collectionStats": { + "description": "Get chain stats about collections", + "params": [ + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "UpDataStructsCollectionStats" + }, "nextSponsored": { - "description": "Get number of blocks when sponsored transaction is available", + "description": "Get the number of blocks until sponsoring a transaction is available", "params": [ { "name": "collection", @@ -62134,6 +62242,25 @@ export const typesBundle = { } ], "type": "Option" + }, + "totalPieces": { + "description": "Get the total amount of pieces of an RFT", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "tokenId", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" } } } @@ -62978,6 +63105,17 @@ export const typesBundle = { "section": "ethBridge" } }, + "farming": { + "rewardDoublingAssets": { + "description": "Get list of double rewarding assets", + "params": [], + "type": "Vec", + "isSubscription": false, + "jsonrpc": "farming_rewardDoublingAssets", + "method": "rewardDoublingAssets", + "section": "farming" + } + }, "irohaMigration": { "needsMigration": { "description": "Check if the account needs migration", @@ -63890,6 +64028,12 @@ export const typesBundle = { ] }, "EthAddress": "H160", + "BridgeSignatureVersion": { + "_enum": [ + "V1", + "V2" + ] + }, "PoolFarmer": { "account": "AccountId", "block": "BlockNumber", @@ -63902,8 +64046,7 @@ export const typesBundle = { "LPSwapOutcomeInfo": { "amount": "Balance", "fee": "Balance", - "rewards": "Vec", - "amountWithoutImpact": "Balance" + "rewards": "Vec" }, "LPRewardsInfo": { "amount": "Balance", @@ -63930,8 +64073,8 @@ export const typesBundle = { "defaultProtocolFee": "BasisPoints" }, "BalancePrecision": "u8", - "AssetSymbol": "Vec", - "AssetName": "Vec", + "AssetSymbol": "Text", + "AssetName": "Text", "AssetId32": "[u8; 32]", "SwapWithDesiredInput": { "desiredAmountIn": "Balance", @@ -64074,7 +64217,8 @@ export const typesBundle = { "PSWAP", "DAI", "ETH", - "XSTUSD" + "XSTUSD", + "XST" ] }, "RewardInfo": { @@ -64605,6 +64749,17 @@ export const typesBundle = { "section": "ethBridge" } }, + "farming": { + "rewardDoublingAssets": { + "description": "Get list of double rewarding assets", + "params": [], + "type": "Vec", + "isSubscription": false, + "jsonrpc": "farming_rewardDoublingAssets", + "method": "rewardDoublingAssets", + "section": "farming" + } + }, "irohaMigration": { "needsMigration": { "description": "Check if the account needs migration", @@ -65517,6 +65672,12 @@ export const typesBundle = { ] }, "EthAddress": "H160", + "BridgeSignatureVersion": { + "_enum": [ + "V1", + "V2" + ] + }, "PoolFarmer": { "account": "AccountId", "block": "BlockNumber", @@ -65529,8 +65690,7 @@ export const typesBundle = { "LPSwapOutcomeInfo": { "amount": "Balance", "fee": "Balance", - "rewards": "Vec", - "amountWithoutImpact": "Balance" + "rewards": "Vec" }, "LPRewardsInfo": { "amount": "Balance", @@ -65557,8 +65717,8 @@ export const typesBundle = { "defaultProtocolFee": "BasisPoints" }, "BalancePrecision": "u8", - "AssetSymbol": "Vec", - "AssetName": "Vec", + "AssetSymbol": "Text", + "AssetName": "Text", "AssetId32": "[u8; 32]", "SwapWithDesiredInput": { "desiredAmountIn": "Balance", @@ -65701,7 +65861,8 @@ export const typesBundle = { "PSWAP", "DAI", "ETH", - "XSTUSD" + "XSTUSD", + "XST" ] }, "RewardInfo": { @@ -67108,12 +67269,11 @@ export const typesBundle = { "Space": { "id": "SpaceId", "created": "WhoAndWhen", - "updated": "bool", + "edited": "bool", "owner": "AccountId", "parent_id": "Option", "content": "Content", "hidden": "bool", - "posts_count": "u32", "permissions": "Option" }, "SpaceUpdate": { @@ -67184,7 +67344,7 @@ export const typesBundle = { "Post": { "id": "PostId", "created": "WhoAndWhen", - "updated": "bool", + "edited": "bool", "owner": "AccountId", "extension": "PostExtension", "space_id": "Option", @@ -67200,21 +67360,14 @@ export const typesBundle = { }, "PostExtension": { "_enum": { - "Post": "RegularPost", + "RegularPost": "Null", "Comment": "Comment", - "SharingPost": "SharingPost" + "SharedPost": "PostId" } }, "Comment": { "parent_id": "Option", "root_post_id": "PostId" - }, - "RegularPost": { - "total_replies_count": "u32" - }, - "SharingPost": { - "total_replies_count": "u32", - "original_post_id": "PostId" } } }, @@ -69273,38 +69426,8 @@ export const typesBundle = { "unique": { "rpc": { "unique": { - "adminlist": { - "description": "Get admin list", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, - "allowlist": { - "description": "Get allowlist", - "params": [ - { - "name": "collection", - "type": "u32" - }, - { - "name": "at", - "type": "Hash", - "isOptional": true - } - ], - "type": "Vec" - }, "accountTokens": { - "description": "Get tokens owned by account", + "description": "Get tokens owned by an account in a collection", "params": [ { "name": "collection", @@ -69323,7 +69446,7 @@ export const typesBundle = { "type": "Vec" }, "collectionTokens": { - "description": "Get tokens contained in collection", + "description": "Get tokens contained within a collection", "params": [ { "name": "collection", @@ -69337,46 +69460,54 @@ export const typesBundle = { ], "type": "Vec" }, - "lastTokenId": { - "description": "Get last token id", + "tokenExists": { + "description": "Check if the token exists", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "bool" }, - "totalSupply": { - "description": "Get amount of unique collection tokens", + "tokenOwner": { + "description": "Get the token owner", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "accountBalance": { - "description": "Get amount of different user tokens", + "topmostTokenOwner": { + "description": "Get the topmost token owner in the hierarchy of a possibly nested token", "params": [ { "name": "collection", "type": "u32" }, { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -69384,19 +69515,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u32" + "type": "Option" }, - "balance": { - "description": "Get amount of specific account token", + "tokenOwners": { + "description": "Returns 10 tokens owners in no particular order", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "account", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -69407,23 +69534,15 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "allowance": { - "description": "Get allowed amount", + "tokenChildren": { + "description": "Get tokens nested directly into the token", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "sender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, - { - "name": "spender", - "type": "PalletEvmAccountBasicCrossAccountIdRepr" - }, { "name": "tokenId", "type": "u32" @@ -69434,18 +69553,19 @@ export const typesBundle = { "isOptional": true } ], - "type": "u128" + "type": "Vec" }, - "tokenOwner": { - "description": "Get token owner", + "collectionProperties": { + "description": "Get collection properties, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -69453,10 +69573,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "topmostTokenOwner": { - "description": "Get token owner, in case of nested token - find parent recursive", + "tokenProperties": { + "description": "Get token properties, optionally limited to the provided keys", "params": [ { "name": "collection", @@ -69466,24 +69586,30 @@ export const typesBundle = { "name": "tokenId", "type": "u32" }, + { + "name": "propertyKeys", + "type": "Option>", + "isOptional": true + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "tokenChildren": { - "description": "Get tokens nested directly into the token", + "propertyPermissions": { + "description": "Get property permissions, optionally limited to the provided keys", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "propertyKeys", + "type": "Option>", + "isOptional": true }, { "name": "at", @@ -69491,7 +69617,7 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "Vec" }, "constMetadata": { "description": "Get token constant metadata", @@ -69531,16 +69657,20 @@ export const typesBundle = { ], "type": "Vec" }, - "collectionProperties": { - "description": "Get collection properties", + "tokenData": { + "description": "Get token data, including properties, optionally limited to the provided keys, and total pieces for an RFT", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "tokenId", + "type": "u32" + }, { "name": "propertyKeys", - "type": "Vec", + "type": "Option>", "isOptional": true }, { @@ -69549,43 +69679,33 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "UpDataStructsTokenData" }, - "tokenProperties": { - "description": "Get token properties", + "totalSupply": { + "description": "Get the amount of distinctive tokens present in a collection", "params": [ { "name": "collection", "type": "u32" }, - { - "name": "tokenId", - "type": "u32" - }, - { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true - }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "propertyPermissions": { - "description": "Get property permissions", + "accountBalance": { + "description": "Get the amount of any user tokens owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { "name": "at", @@ -69593,23 +69713,22 @@ export const typesBundle = { "isOptional": true } ], - "type": "Vec" + "type": "u32" }, - "tokenData": { - "description": "Get token data", + "balance": { + "description": "Get the amount of a specific token owned by an account", "params": [ { "name": "collection", "type": "u32" }, { - "name": "tokenId", - "type": "u32" + "name": "account", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" }, { - "name": "propertyKeys", - "type": "Vec", - "isOptional": true + "name": "tokenId", + "type": "u32" }, { "name": "at", @@ -69617,15 +69736,23 @@ export const typesBundle = { "isOptional": true } ], - "type": "UpDataStructsTokenData" + "type": "u128" }, - "tokenExists": { - "description": "Check if token exists", + "allowance": { + "description": "Get the amount of currently possible sponsored transactions on a token for the fee to be taken off a sponsor", "params": [ { "name": "collection", "type": "u32" }, + { + "name": "sender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, + { + "name": "spender", + "type": "PalletEvmAccountBasicCrossAccountIdRepr" + }, { "name": "tokenId", "type": "u32" @@ -69636,10 +69763,10 @@ export const typesBundle = { "isOptional": true } ], - "type": "bool" + "type": "u128" }, - "collectionById": { - "description": "Get collection by specified id", + "adminlist": { + "description": "Get the list of admin accounts of a collection", "params": [ { "name": "collection", @@ -69651,21 +69778,25 @@ export const typesBundle = { "isOptional": true } ], - "type": "Option" + "type": "Vec" }, - "collectionStats": { - "description": "Get collection stats", + "allowlist": { + "description": "Get the list of accounts allowed to operate within a collection", "params": [ + { + "name": "collection", + "type": "u32" + }, { "name": "at", "type": "Hash", "isOptional": true } ], - "type": "UpDataStructsCollectionStats" + "type": "Vec" }, "allowed": { - "description": "Check if user is allowed to use collection", + "description": "Check if a user is allowed to operate within a collection", "params": [ { "name": "collection", @@ -69683,8 +69814,49 @@ export const typesBundle = { ], "type": "bool" }, + "lastTokenId": { + "description": "Get the last token ID created in a collection", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "u32" + }, + "collectionById": { + "description": "Get a collection by the specified ID", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" + }, + "collectionStats": { + "description": "Get chain stats about collections", + "params": [ + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "UpDataStructsCollectionStats" + }, "nextSponsored": { - "description": "Get number of blocks when sponsored transaction is available", + "description": "Get the number of blocks until sponsoring a transaction is available", "params": [ { "name": "collection", @@ -69720,6 +69892,25 @@ export const typesBundle = { } ], "type": "Option" + }, + "totalPieces": { + "description": "Get the total amount of pieces of an RFT", + "params": [ + { + "name": "collection", + "type": "u32" + }, + { + "name": "tokenId", + "type": "u32" + }, + { + "name": "at", + "type": "Hash", + "isOptional": true + } + ], + "type": "Option" } } } diff --git a/packages/apps-electron/package.json b/packages/apps-electron/package.json index 41455c2724..fd83928a5c 100644 --- a/packages/apps-electron/package.json +++ b/packages/apps-electron/package.json @@ -12,15 +12,15 @@ "sideEffects": false, "version": "0.121.2-117-x", "dependencies": { - "@babel/core": "^7.19.3", + "@babel/core": "^7.19.6", "@babel/polyfill": "^7.12.1", - "@polkadot/dev": "^0.67.147", + "@polkadot/dev": "^0.67.148", "@polkadot/react-components": "^0.121.2-117-x", "electron-log": "^4.4.8", "electron-updater": "^4.6.5" }, "devDependencies": { - "@types/react-dom": "^18.0.6", + "@types/react-dom": "^18.0.7", "@types/tmp": "^0.2.3", "babel-loader": "^8.2.5", "copy-webpack-plugin": "^11.0.0", diff --git a/packages/apps/package.json b/packages/apps/package.json index 733d31f45a..45724efdcc 100644 --- a/packages/apps/package.json +++ b/packages/apps/package.json @@ -13,12 +13,12 @@ "type": "module", "version": "0.121.2-117-x", "dependencies": { - "@babel/core": "^7.19.3", + "@babel/core": "^7.19.6", "@babel/polyfill": "^7.12.1", "@babel/runtime": "^7.19.4", "@polkadot/apps-config": "^0.121.2-117-x", "@polkadot/apps-routing": "^0.121.2-117-x", - "@polkadot/dev": "^0.67.147", + "@polkadot/dev": "^0.67.148", "@polkadot/react-api": "^0.121.2-117-x", "@polkadot/react-components": "^0.121.2-117-x", "@polkadot/react-hooks": "^0.121.2-117-x", diff --git a/yarn.lock b/yarn.lock index 33fc9c904d..76543d22a9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -80,7 +80,7 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.19.3, @babel/core@npm:^7.19.6": +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.19.6": version: 7.19.6 resolution: "@babel/core@npm:7.19.6" dependencies: @@ -1493,12 +1493,12 @@ __metadata: languageName: node linkType: hard -"@bifrost-finance/type-definitions@npm:1.6.1": - version: 1.6.1 - resolution: "@bifrost-finance/type-definitions@npm:1.6.1" +"@bifrost-finance/type-definitions@npm:1.7.1": + version: 1.7.1 + resolution: "@bifrost-finance/type-definitions@npm:1.7.1" dependencies: "@open-web3/orml-type-definitions": ^0.9.4-38 - checksum: b2a5d7b743d625e17226bce4883705894837581ce7009476b2b78f4183868307f57fe16fddab2bc9585a5e9b3d084efa9e3998a0f4f4bce993815da89c479c48 + checksum: 57feb2bbf9d9d15ec190e4ff1c8c83d2debf33944fa5edf8e02a47d1d3d96baaa7b754617b35d5e7c491d0a79a0ea32e060c6885960824db12bb4f7594abb8ae languageName: node linkType: hard @@ -1562,10 +1562,10 @@ __metadata: languageName: node linkType: hard -"@docknetwork/node-types@npm:0.10.0": - version: 0.10.0 - resolution: "@docknetwork/node-types@npm:0.10.0" - checksum: 2244238c65d9145c1fb18273019fe9dcbc24f4c3d0120831c896ef6a4ecc84eff14755592734f086b3c4747188d43216c0223a50bc5411fd490ddce589004717 +"@docknetwork/node-types@npm:0.13.0": + version: 0.13.0 + resolution: "@docknetwork/node-types@npm:0.13.0" + checksum: 22bb1c9b8345d5d8a0a6b26dbc30d57d327576c5f0f29718977a0ce35b29695c4444a66183ac1155559a0bbbc89e6ff03d035d726ccdaadefd884fe82a5ad50b languageName: node linkType: hard @@ -1641,10 +1641,10 @@ __metadata: languageName: node linkType: hard -"@equilab/definitions@npm:1.4.13": - version: 1.4.13 - resolution: "@equilab/definitions@npm:1.4.13" - checksum: 46b1f7c80bc1fc04e87889e69af9a126d8244ccd8602c4941c2f9e468dd65adb24cb462747017c62a3f221e1a280edcb085feda39bc7fdaa88b776fb89ea2a8a +"@equilab/definitions@npm:1.4.14": + version: 1.4.14 + resolution: "@equilab/definitions@npm:1.4.14" + checksum: ede520cceb309e2920d56eb6994f1a17de7e0231f6966a60b7cde936721e06d78233cf5a2fea1bb65ce8e9580a90d6becc97e9cc791c933491968e8fa55f2789 languageName: node linkType: hard @@ -2000,14 +2000,14 @@ __metadata: languageName: node linkType: hard -"@jest/core@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/core@npm:29.2.1" +"@jest/core@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/core@npm:29.2.2" dependencies: "@jest/console": ^29.2.1 - "@jest/reporters": ^29.2.1 + "@jest/reporters": ^29.2.2 "@jest/test-result": ^29.2.1 - "@jest/transform": ^29.2.1 + "@jest/transform": ^29.2.2 "@jest/types": ^29.2.1 "@types/node": "*" ansi-escapes: ^4.2.1 @@ -2016,18 +2016,18 @@ __metadata: exit: ^0.1.2 graceful-fs: ^4.2.9 jest-changed-files: ^29.2.0 - jest-config: ^29.2.1 + jest-config: ^29.2.2 jest-haste-map: ^29.2.1 jest-message-util: ^29.2.1 jest-regex-util: ^29.2.0 - jest-resolve: ^29.2.1 - jest-resolve-dependencies: ^29.2.1 - jest-runner: ^29.2.1 - jest-runtime: ^29.2.1 - jest-snapshot: ^29.2.1 + jest-resolve: ^29.2.2 + jest-resolve-dependencies: ^29.2.2 + jest-runner: ^29.2.2 + jest-runtime: ^29.2.2 + jest-snapshot: ^29.2.2 jest-util: ^29.2.1 - jest-validate: ^29.2.1 - jest-watcher: ^29.2.1 + jest-validate: ^29.2.2 + jest-watcher: ^29.2.2 micromatch: ^4.0.4 pretty-format: ^29.2.1 slash: ^3.0.0 @@ -2037,75 +2037,75 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 849f9287a0d32b92c052a59de47d4b483c47f45463a94cb3156ecb869a41cc829b8ecdb1de8638b629b16b6e4cb2bd0d03e1d18590c4bfbe73b8fbbd6072d045 + checksum: 47c867fce6484b9716d030e81819ef72effb23fa60ec3f46f631be7ced84fa10f50b409a933423add50a4ac917028c9b4ea7b62ba3a1fbd8b4516a2067bd1740 languageName: node linkType: hard -"@jest/environment@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/environment@npm:29.2.1" +"@jest/environment@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/environment@npm:29.2.2" dependencies: - "@jest/fake-timers": ^29.2.1 + "@jest/fake-timers": ^29.2.2 "@jest/types": ^29.2.1 "@types/node": "*" - jest-mock: ^29.2.1 - checksum: 632d023c9e514a3d5647cbc7bc27a97113ef1647d9c7e205f90e0af359804dc7eaddfe43928b6180f2fc4914761878e671edcccacca4012e2e9f594979adbfac + jest-mock: ^29.2.2 + checksum: c610e0d8d2f3d8763d6f5b5f8e146306f77c32117e8e8a169fc0d3aa6093b40c4942ef58bf3af7f6a1b4f66eed37e45097323cfe3f9100e368d49fa843b75118 languageName: node linkType: hard -"@jest/expect-utils@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/expect-utils@npm:29.2.1" +"@jest/expect-utils@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/expect-utils@npm:29.2.2" dependencies: jest-get-type: ^29.2.0 - checksum: 7e6e156f452330b64983f8169f2cd1f378129090d02ad097ef89dadfc78269501991d6d6daf91058ef4334fd9f5fc1a6389d887bbebfe7e4ad1ec58ea78e9f93 + checksum: 42afdd576ae55c31cbcee50f1efecd338073b88cad146b91b653ef9d67970ebcd457b0fc2236b18a7d82945be7ae0674b9e75a34f0f6067585fd5c89a89bb232 languageName: node linkType: hard -"@jest/expect@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/expect@npm:29.2.1" +"@jest/expect@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/expect@npm:29.2.2" dependencies: - expect: ^29.2.1 - jest-snapshot: ^29.2.1 - checksum: c64b939200e88b947c4e1209fbfd3d54f0f24ad1cd1d5882e0238631a7839f96c3e513c802610b039ab2d2ed6024834c6de002b639d3afa8ad077364ef08ab75 + expect: ^29.2.2 + jest-snapshot: ^29.2.2 + checksum: 85735d27a49b122083171b3001fc66c804d9f7e16143544d9363389838797fdef5cbc736c560014b63cc3601ad45058a75a4a275147e43d146fde23afd6b19ce languageName: node linkType: hard -"@jest/fake-timers@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/fake-timers@npm:29.2.1" +"@jest/fake-timers@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/fake-timers@npm:29.2.2" dependencies: "@jest/types": ^29.2.1 "@sinonjs/fake-timers": ^9.1.2 "@types/node": "*" jest-message-util: ^29.2.1 - jest-mock: ^29.2.1 + jest-mock: ^29.2.2 jest-util: ^29.2.1 - checksum: e4f42a2677b91fed6e59ca466de2247bca5767c4922b5edb67ce34d47477757599f2760c3abae3d76e65917ac60c876223ac2c9d3f06d4f2a49d4be7e076f9bb + checksum: aa50573ed899d14ce6afef19ea7f607fd2a091e22b37b17eec4a3b046b5236385f8221cff701329439d758badcec5a3b4d9bfc22fc6c7128d34d1b1c21333c73 languageName: node linkType: hard -"@jest/globals@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/globals@npm:29.2.1" +"@jest/globals@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/globals@npm:29.2.2" dependencies: - "@jest/environment": ^29.2.1 - "@jest/expect": ^29.2.1 + "@jest/environment": ^29.2.2 + "@jest/expect": ^29.2.2 "@jest/types": ^29.2.1 - jest-mock: ^29.2.1 - checksum: 42046693669009a4ac890578e18544433effeaa760e60e3fc7360ab197ebf7b66bf7fce11f1143e43e665d1801108ae9a3588f5ec95d518ca9664e7f8098a4a3 + jest-mock: ^29.2.2 + checksum: 94adec44b31b84cdd3f51abf1d824bb62acfa7e0d60b9f7a960fa8677ec5894389262bf6f7fc7fab5b4cce05e3337d0d117a2846faa27dfdff736d6a9585469d languageName: node linkType: hard -"@jest/reporters@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/reporters@npm:29.2.1" +"@jest/reporters@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/reporters@npm:29.2.2" dependencies: "@bcoe/v8-coverage": ^0.2.3 "@jest/console": ^29.2.1 "@jest/test-result": ^29.2.1 - "@jest/transform": ^29.2.1 + "@jest/transform": ^29.2.2 "@jest/types": ^29.2.1 "@jridgewell/trace-mapping": ^0.3.15 "@types/node": "*" @@ -2131,7 +2131,7 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 8f6419d67ba9c4f33ff01d8fa506538f32f4edd32df806a496c705858712405e6930b6064ac54cfe7b1c01a447d2feb46e8be69eb2e655e8b5f497e77ee79777 + checksum: c8d8c4bd08c2f268bc2df4aba92d55b42cbec2cb0dbffcb33a455c147f80430ea962d3829225370f831e16ca66e55f31ff8e4687546dec05b520fd1ace7a8502 languageName: node linkType: hard @@ -2167,21 +2167,21 @@ __metadata: languageName: node linkType: hard -"@jest/test-sequencer@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/test-sequencer@npm:29.2.1" +"@jest/test-sequencer@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/test-sequencer@npm:29.2.2" dependencies: "@jest/test-result": ^29.2.1 graceful-fs: ^4.2.9 jest-haste-map: ^29.2.1 slash: ^3.0.0 - checksum: ff73ce30d51e3304986097a5e02f24c60bc6f8246a7b3a1d35f898bd6b9515c576c2fce98dd6a605b885c8c0fea34e135420eb6e6a6d6656b74bed8ff280fe45 + checksum: 05a9a218e7ac8f574da3a2c5a85d420d3643124bbb31374675e57c6f6a49ffd942e79514d0f2fa173542e8e5ee7ec544e908aced9958d3523c895ba6c2c03691 languageName: node linkType: hard -"@jest/transform@npm:^29.2.1": - version: 29.2.1 - resolution: "@jest/transform@npm:29.2.1" +"@jest/transform@npm:^29.2.2": + version: 29.2.2 + resolution: "@jest/transform@npm:29.2.2" dependencies: "@babel/core": ^7.11.6 "@jest/types": ^29.2.1 @@ -2198,7 +2198,7 @@ __metadata: pirates: ^4.0.4 slash: ^3.0.0 write-file-atomic: ^4.0.1 - checksum: bb50bfce34d8c648475a7d65e91787a0232cdcc0445331dba8d3d80180dff1b43d97872568be795c8f92d419b3f0e6114297349cc892fdf50e8471cb227f674a + checksum: ac12069100c260d1c46e5048bbad35bf0b5408592b918692b87a52c1c0c0e189c9f37ecf48dbcaa6f00ef083e1bc68201844999e1c0f66cd4d9b70127bf77537 languageName: node linkType: hard @@ -2268,10 +2268,10 @@ __metadata: languageName: node linkType: hard -"@kiltprotocol/type-definitions@npm:^0.2.1": - version: 0.2.1 - resolution: "@kiltprotocol/type-definitions@npm:0.2.1" - checksum: c8606942d10b65ee1b45180e48273ed58f0df3fa9cdaa376d8b7da0d7c8741ef45d5a81ec4689f64945f06a2789d5fd16b3b47128ffafb23ae729b42876bbca4 +"@kiltprotocol/type-definitions@npm:^1.1.0": + version: 1.1.0 + resolution: "@kiltprotocol/type-definitions@npm:1.1.0" + checksum: 554a381da8b4b4933fd56770ac2e36f4120fea7396cb4553f8b3508128a5394c5346d10f1ed24b07b14e18ecd0770050b7c8ac208b233e2739d54a8f77a29544 languageName: node linkType: hard @@ -2404,17 +2404,17 @@ __metadata: languageName: node linkType: hard -"@logion/node-api@npm:^0.5.0-2": - version: 0.5.0-2 - resolution: "@logion/node-api@npm:0.5.0-2" +"@logion/node-api@npm:^0.7.0": + version: 0.7.0 + resolution: "@logion/node-api@npm:0.7.0" dependencies: - "@polkadot/api": ^8.14.1 - "@polkadot/util": ^10.1.1 - "@polkadot/util-crypto": ^10.1.1 + "@polkadot/api": ^9.5.1 + "@polkadot/util": ^10.1.10 + "@polkadot/util-crypto": ^10.1.10 "@types/uuid": ^8.3.4 fast-sha256: ^1.3.0 uuid: ^8.3.2 - checksum: cfc0b521b7357f9d1db2da32bc24ff240e4dc386e795ae508bd2af4ea908872626ce78fa5b496e483019be0315192182ce9f7572e36be7b18931fa6b07acd2c2 + checksum: 1edc4e7995cdb9c8bfe5661faec9ac95ab873e79e489c909d631f94985b0ad7e11ca632fc2d0f26dbe07c8071476de8dddcd43064758dc92c40f9a035c014bee languageName: node linkType: hard @@ -2439,10 +2439,10 @@ __metadata: languageName: node linkType: hard -"@mangata-finance/types@npm:^0.8.0": - version: 0.8.0 - resolution: "@mangata-finance/types@npm:0.8.0" - checksum: ca9f37899c7e01034f90619290c6923aafbc20c7df2f2efff731ef6cbc12fa9a8c2895e5c1b85cc41a9a51add7241c1fcf7fcb1c88b18d735755b355e4e60970 +"@mangata-finance/types@npm:^0.9.0": + version: 0.9.0 + resolution: "@mangata-finance/types@npm:0.9.0" + checksum: 84729d5f1875851aaa3e1f12fb7817074ae7b45d6a9b6dcee0979964f0b5d2d56891d43a18de314b8a195e8090e65332ea42e8a0f555a3b6c81549aa641c5e8d languageName: node linkType: hard @@ -2693,16 +2693,16 @@ __metadata: languageName: node linkType: hard -"@pinata/sdk@npm:^1.1.26": - version: 1.1.26 - resolution: "@pinata/sdk@npm:1.1.26" +"@pinata/sdk@npm:^1.2.1": + version: 1.2.1 + resolution: "@pinata/sdk@npm:1.2.1" dependencies: axios: ^0.21.1 base-path-converter: ^1.0.2 form-data: ^2.3.3 is-ipfs: ^0.6.0 recursive-fs: ^1.1.2 - checksum: 8b67fa2b634360db6555c8acbc40cf002056fc01475265aa6815b0c7d58e869aa138fc7cb1b279aedf3301cf66b1a19547c3f23f1e4333625287e8f11719b5d4 + checksum: df39457c62e9032e5e414f5ab786d5deb84196c529024d52cdb12d589258ee94990aa064528f7d8d57a72be1a44d86fb1a31548df56f79e454884f261a167238 languageName: node linkType: hard @@ -3143,19 +3143,19 @@ __metadata: dependencies: "@acala-network/type-definitions": ^4.1.5 "@babel/runtime": ^7.19.4 - "@bifrost-finance/type-definitions": 1.6.1 + "@bifrost-finance/type-definitions": 1.7.1 "@crustio/type-definitions": 1.3.0 "@darwinia/types": 2.8.10 "@darwinia/types-known": 2.8.10 "@digitalnative/type-definitions": 1.1.27 - "@docknetwork/node-types": 0.10.0 + "@docknetwork/node-types": 0.13.0 "@edgeware/node-types": 3.6.2-wako - "@equilab/definitions": 1.4.13 + "@equilab/definitions": 1.4.14 "@interlay/interbtc-types": 1.9.0 - "@kiltprotocol/type-definitions": ^0.2.1 + "@kiltprotocol/type-definitions": ^1.1.0 "@laminar/type-definitions": 0.3.1 - "@logion/node-api": ^0.5.0-2 - "@mangata-finance/types": ^0.8.0 + "@logion/node-api": ^0.7.0 + "@mangata-finance/types": ^0.9.0 "@metaverse-network-sdk/type-definitions": ^0.0.1-13 "@parallel-finance/type-definitions": 1.7.13 "@phala/typedefs": 0.2.32 @@ -3167,12 +3167,12 @@ __metadata: "@polkadot/x-fetch": ^10.1.11 "@polymathnetwork/polymesh-types": 0.0.2 "@snowfork/snowbridge-types": 0.2.7 - "@sora-substrate/type-definitions": 1.10.0-beta.7 - "@subsocial/definitions": ^0.6.12-parachain.0 - "@unique-nft/opal-testnet-types": 0.5.3 - "@unique-nft/quartz-mainnet-types": 0.6.1 - "@unique-nft/unique-mainnet-types": 0.6.3 - "@zeitgeistpm/type-defs": 0.8.0 + "@sora-substrate/type-definitions": 1.10.21 + "@subsocial/definitions": ^0.7.7 + "@unique-nft/opal-testnet-types": 930.31.0 + "@unique-nft/quartz-mainnet-types": 930.31.0 + "@unique-nft/unique-mainnet-types": 930.31.0 + "@zeitgeistpm/type-defs": 0.9.0 "@zeroio/type-definitions": 0.0.14 lodash: ^4.17.21 moonbeam-types-bundle: 2.0.9 @@ -3185,11 +3185,11 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/apps-electron@workspace:packages/apps-electron" dependencies: - "@babel/core": ^7.19.3 + "@babel/core": ^7.19.6 "@babel/polyfill": ^7.12.1 - "@polkadot/dev": ^0.67.147 + "@polkadot/dev": ^0.67.148 "@polkadot/react-components": ^0.121.2-117-x - "@types/react-dom": ^18.0.6 + "@types/react-dom": ^18.0.7 "@types/tmp": ^0.2.3 babel-loader: ^8.2.5 copy-webpack-plugin: ^11.0.0 @@ -3215,12 +3215,12 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/apps@workspace:packages/apps" dependencies: - "@babel/core": ^7.19.3 + "@babel/core": ^7.19.6 "@babel/polyfill": ^7.12.1 "@babel/runtime": ^7.19.4 "@polkadot/apps-config": ^0.121.2-117-x "@polkadot/apps-routing": ^0.121.2-117-x - "@polkadot/dev": ^0.67.147 + "@polkadot/dev": ^0.67.148 "@polkadot/react-api": ^0.121.2-117-x "@polkadot/react-components": ^0.121.2-117-x "@polkadot/react-hooks": ^0.121.2-117-x @@ -3251,9 +3251,9 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/dev@npm:^0.67.147": - version: 0.67.147 - resolution: "@polkadot/dev@npm:0.67.147" +"@polkadot/dev@npm:^0.67.148": + version: 0.67.148 + resolution: "@polkadot/dev@npm:0.67.148" dependencies: "@babel/cli": ^7.19.3 "@babel/core": ^7.19.6 @@ -3279,10 +3279,10 @@ __metadata: "@rollup/plugin-json": ^5.0.1 "@rollup/plugin-node-resolve": ^15.0.1 "@rushstack/eslint-patch": ^1.2.0 - "@typescript-eslint/eslint-plugin": ^5.40.1 - "@typescript-eslint/parser": ^5.40.1 + "@typescript-eslint/eslint-plugin": ^5.41.0 + "@typescript-eslint/parser": ^5.41.0 "@vue/component-compiler-utils": ^3.3.0 - babel-jest: ^29.2.1 + babel-jest: ^29.2.2 babel-plugin-module-extension-resolver: ^1.0.0-rc.2 babel-plugin-module-resolver: ^4.1.0 babel-plugin-styled-components: ^2.0.7 @@ -3305,12 +3305,12 @@ __metadata: gh-release: ^6.0.4 glob: ^8.0.3 glob2base: ^0.0.12 - jest: ^29.2.1 - jest-cli: ^29.2.1 - jest-config: ^29.2.1 - jest-environment-jsdom: ^29.2.1 + jest: ^29.2.2 + jest-cli: ^29.2.2 + jest-config: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jest-haste-map: ^29.2.1 - jest-resolve: ^29.2.1 + jest-resolve: ^29.2.2 madge: ^5.0.1 minimatch: ^5.1.0 mkdirp: ^1.0.4 @@ -3350,7 +3350,7 @@ __metadata: polkadot-exec-swc: scripts/polkadot-exec-swc.mjs polkadot-exec-tsc: scripts/polkadot-exec-tsc.mjs polkadot-exec-webpack: scripts/polkadot-exec-webpack.mjs - checksum: fa3de16b97a65d092e075e69920f906cb35b20fd86730d91869c9aebe26e20d6f1ebe53bc751274d7dd80329d483a09bd76fc864df330b8e37785e131541fa5b + checksum: d1db6272aa9aa3178a448c4bd6dad07909a6892c4b41ffd5741d233f4d1f9870ca23b2f342e03bc44404fc0a997009da735b3943cdef26016fb6d0cfcaa155b9 languageName: node linkType: hard @@ -4198,12 +4198,12 @@ __metadata: languageName: node linkType: hard -"@sora-substrate/type-definitions@npm:1.10.0-beta.7": - version: 1.10.0-beta.7 - resolution: "@sora-substrate/type-definitions@npm:1.10.0-beta.7" +"@sora-substrate/type-definitions@npm:1.10.21": + version: 1.10.21 + resolution: "@sora-substrate/type-definitions@npm:1.10.21" dependencies: "@open-web3/orml-type-definitions": 0.9.4-26 - checksum: 1d50d5b9318e19c76433bd19f9b0d7e2031274a742ecd97bbc2dbeefbf0e1efc7ea619e97e5acbaf12ed1009b84848f727b4fc8f94bd4e71a455465769898e80 + checksum: 8dac550e04bbb0d85c14e1861c1c5c6bbc2f679c0ce450667e082f2f47520b92632260003dfaee62bbb31b357025408035ef30375a5e99ba2619b147a0d1f92d languageName: node linkType: hard @@ -4234,13 +4234,13 @@ __metadata: languageName: node linkType: hard -"@subsocial/definitions@npm:^0.6.12-parachain.0": - version: 0.6.12-parachain.0 - resolution: "@subsocial/definitions@npm:0.6.12-parachain.0" +"@subsocial/definitions@npm:^0.7.7": + version: 0.7.7 + resolution: "@subsocial/definitions@npm:0.7.7" dependencies: "@polkadot/api": latest lodash.camelcase: ^4.3.0 - checksum: 064aa99bf059db25721151a9b247d6275f73730cdfc56f6efe672463911dfd3296b30d9cc26431ef9ef186e081fccc1a1ae9511ebaaf1c411cf6f48b75ffff54 + checksum: def310e76fd31504609f0425c35a09ec1a149f85ff0d482bc63ab4864bda7a6f9df613549d8434ee14e7adec06de0d3ee0c7e27b477a3b8bfec5a1ee25879064 languageName: node linkType: hard @@ -4689,13 +4689,13 @@ __metadata: languageName: node linkType: hard -"@types/jest@npm:*, @types/jest@npm:^29.0.3": - version: 29.0.3 - resolution: "@types/jest@npm:29.0.3" +"@types/jest@npm:*, @types/jest@npm:^29.2.0": + version: 29.2.0 + resolution: "@types/jest@npm:29.2.0" dependencies: expect: ^29.0.0 pretty-format: ^29.0.0 - checksum: 14a8ec1954540ec59f4072c3c4dbc6b5d5ff616556c98671aca26606bdf9d49616a3f269f3e488c80cd481ee19880351575c1f6895827628818e193600c121e0 + checksum: 6779e63d8d7507b116a61b2935a200e48531849fc1ac74090212759fe17716777ca6d2c3a8d927a563e9cfa474ae91d40b1688376ae80e3a08974b3c9e9691e1 languageName: node linkType: hard @@ -4915,12 +4915,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:^18.0.0, @types/react-dom@npm:^18.0.6": - version: 18.0.6 - resolution: "@types/react-dom@npm:18.0.6" +"@types/react-dom@npm:^18.0.0, @types/react-dom@npm:^18.0.7": + version: 18.0.7 + resolution: "@types/react-dom@npm:18.0.7" dependencies: "@types/react": "*" - checksum: db571047af1a567631758700b9f7d143e566df939cfe5fbf7535347cc0c726a1cdbb5e3f8566d076e54cf708b6c1166689de194a9ba09ee35efc9e1d45911685 + checksum: 4fd47dd114d61e7228637de9bee685b81ea18b89b220a67662b05ebe74f69aad7cd929ebe69e8fd572cc8e0e9adf9bba1ea5586cfd37eb9045778851e78bcd66 languageName: node linkType: hard @@ -5181,13 +5181,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/eslint-plugin@npm:5.40.1" +"@typescript-eslint/eslint-plugin@npm:^5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.41.0" dependencies: - "@typescript-eslint/scope-manager": 5.40.1 - "@typescript-eslint/type-utils": 5.40.1 - "@typescript-eslint/utils": 5.40.1 + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/type-utils": 5.41.0 + "@typescript-eslint/utils": 5.41.0 debug: ^4.3.4 ignore: ^5.2.0 regexpp: ^3.2.0 @@ -5199,43 +5199,43 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 61f19bde0f1206beb20aeb28d18c1ef26a98cf4d2ead9f1d2f204cb91af31582eb5ee9422fe5f92d6aa10cebf85cd50f1b41e8cf8ce65808e2208664c3b1d66a + checksum: b6f08244059a8e02dbb305e914e6455a2b6bfabe6c0fd355bd3a0a732ed44a503ad47d4beb5f617e29274b5a8b8249d80cf4600babf05d8e35958ff64a546da4 languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/parser@npm:5.40.1" +"@typescript-eslint/parser@npm:^5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/parser@npm:5.41.0" dependencies: - "@typescript-eslint/scope-manager": 5.40.1 - "@typescript-eslint/types": 5.40.1 - "@typescript-eslint/typescript-estree": 5.40.1 + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/typescript-estree": 5.41.0 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 9fe410c1b14934803bb7c26de9b8de5d46ef9b6fe5dcbee1d7e111f0259659c214549b60dacdc729a3e23da835e6a44f08a9aa6bcb73ffff3c4fd5b9142358ed + checksum: ae005b603218d540dd1c3fd1f84d7f956bfca8b15d2c42115b9fc44437cb73e8284fda62153612a20809449d563edbde968d245b6c9d27b482ad0ebc2a95947f languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/scope-manager@npm:5.40.1" +"@typescript-eslint/scope-manager@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/scope-manager@npm:5.41.0" dependencies: - "@typescript-eslint/types": 5.40.1 - "@typescript-eslint/visitor-keys": 5.40.1 - checksum: 5f25b86bfd09fbf8cdfdf932eaf0b41a7594c9b4539d3c8321f882bf7b4bf486454256fdb9a5a8c4eae305419d377fa93d382f80004711d759ff77b3d565c1dc + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/visitor-keys": 5.41.0 + checksum: f588e7e7e953dfa19632b676f1287a7a4f5e9390282b103b3cf46cc28bb597c1229df2489eb687ab9285674076eb2569b821eac9b3110572d70fd230bdc5d703 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/type-utils@npm:5.40.1" +"@typescript-eslint/type-utils@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/type-utils@npm:5.41.0" dependencies: - "@typescript-eslint/typescript-estree": 5.40.1 - "@typescript-eslint/utils": 5.40.1 + "@typescript-eslint/typescript-estree": 5.41.0 + "@typescript-eslint/utils": 5.41.0 debug: ^4.3.4 tsutils: ^3.21.0 peerDependencies: @@ -5243,7 +5243,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 6771196b8f16f4893bae70aa1371ff004b0058e8edef9b935143e2f1272e471049e9c34beb1d625fb6423db95dd377e01e938b70dd4506fbf071566e2bfb574d + checksum: c438d4a47f1bbd031245db31c75748a5eac9b7e5d6d3805a914a9b891b03d3d18c7509d2273b1718dcc9c239506a3627e5da34c363d2c22acca2ea64050b5bc4 languageName: node linkType: hard @@ -5254,19 +5254,19 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/types@npm:5.40.1" - checksum: 2430c799667c820903df7ef39bc4c2762cb7654dbb8525d56f37e73f8cefb82186b80654dbbe0294c5b55affe929c641cdb90232e2749dcd7838f9e500a41549 +"@typescript-eslint/types@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/types@npm:5.41.0" + checksum: d7500bcc67b68032ccf19d983a69efa2750f4d82f5cc027090d2686d4e662b3a7b0b5fa55ed90710eca2528867d39964d76c207ac3c6f734505efbe21dccac7d languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/typescript-estree@npm:5.40.1" +"@typescript-eslint/typescript-estree@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.41.0" dependencies: - "@typescript-eslint/types": 5.40.1 - "@typescript-eslint/visitor-keys": 5.40.1 + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/visitor-keys": 5.41.0 debug: ^4.3.4 globby: ^11.1.0 is-glob: ^4.0.3 @@ -5275,7 +5275,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: d0426a55d24b76a3f042816dd8baaaa7a8da0158870bb08fff5a5524821c13ca196117dc269f098b8887ef75e01da1a498637153ab3c29c370ca356bfe4a1716 + checksum: cfb61b5971108807ad4b1e26e71455a0451e8b5ee06e9ae7d2e45caa8e978f0a3bb58bb877eff42a134d3ab21ad23bf138d2b829c407607e3d1fc616f0f87cc9 languageName: node linkType: hard @@ -5297,21 +5297,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/utils@npm:5.40.1" +"@typescript-eslint/utils@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/utils@npm:5.41.0" dependencies: "@types/json-schema": ^7.0.9 "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.40.1 - "@typescript-eslint/types": 5.40.1 - "@typescript-eslint/typescript-estree": 5.40.1 + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/typescript-estree": 5.41.0 eslint-scope: ^5.1.1 eslint-utils: ^3.0.0 semver: ^7.3.7 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: a971101bb2f4c742a1734a87e17997addb7ffa6639d472097fe098f6c5f09567b858949b97f05892aabb20f38479abecdfdd69cf740046aa601dd3fc39a44090 + checksum: 293a0de39639983048b7fe203a4191b97cfc3c868866c1e485ec63c6eab9013002e58f0ac23ec7584f71d28390bf2d6c23ee10d6863ea067567e572cd9d75dae languageName: node linkType: hard @@ -5325,43 +5325,43 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.40.1": - version: 5.40.1 - resolution: "@typescript-eslint/visitor-keys@npm:5.40.1" +"@typescript-eslint/visitor-keys@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.41.0" dependencies: - "@typescript-eslint/types": 5.40.1 + "@typescript-eslint/types": 5.41.0 eslint-visitor-keys: ^3.3.0 - checksum: b5dbf1e484ba2832ca1883ee9cf7da5967f70aa5624f3fb67f13c3be90a3770b0bb96e64ccfb0c31b5d8f80794b5727e14b6c0d8c5184634a686f0ea6e798772 + checksum: ff76694170d77c96d6166a1973ca11b4a6de2051e396fc3581534b3d6f574440e0a3af71f0690dfb2368bb5300a412b363c1795ac1ba1f363b1bc115550808cd languageName: node linkType: hard -"@unique-nft/opal-testnet-types@npm:0.5.3": - version: 0.5.3 - resolution: "@unique-nft/opal-testnet-types@npm:0.5.3" +"@unique-nft/opal-testnet-types@npm:930.31.0": + version: 930.31.0 + resolution: "@unique-nft/opal-testnet-types@npm:930.31.0" peerDependencies: - "@polkadot/api": ^8.6.2 - "@polkadot/types": ^8.6.2 - checksum: cd914c05296518802a480ef15525534d3eb4b37f33d37111c5ef66710ac90affd336a07aff55aa4e52ad2c0457887a36937ac1b97c30a605d936bc04992f53bb + "@polkadot/api": ^9.5.2 + "@polkadot/types": ^9.5.2 + checksum: 8c4f02472dadd1afe2dda218bdf6ed8f8f588ba2cfc1683437621ed18d0bdd6f8e719667a804b05f2a02fb90fcf93ced7a815bc25ec9cadfb2e3ae962805564d languageName: node linkType: hard -"@unique-nft/quartz-mainnet-types@npm:0.6.1": - version: 0.6.1 - resolution: "@unique-nft/quartz-mainnet-types@npm:0.6.1" +"@unique-nft/quartz-mainnet-types@npm:930.31.0": + version: 930.31.0 + resolution: "@unique-nft/quartz-mainnet-types@npm:930.31.0" peerDependencies: - "@polkadot/api": ^8.6.2 - "@polkadot/types": ^8.6.2 - checksum: 30b26d1a4c8dfa6369aca16eed8744a2ebf0f89aa4fe6591ed393d66082e33200f147abb1a6536edd57b900665983a14e96ed0bc393cadc98c3d28185ec1f351 + "@polkadot/api": ^9.5.2 + "@polkadot/types": ^9.5.2 + checksum: 05822f25c1e4996d3ed1edd06c94af58ff491bf9dcd46531ea7b9c1d41a8a13dbaa74ac5f6856be71e3034f55ec1820da020f24d4535a5db505f507b3db7ea8a languageName: node linkType: hard -"@unique-nft/unique-mainnet-types@npm:0.6.3": - version: 0.6.3 - resolution: "@unique-nft/unique-mainnet-types@npm:0.6.3" +"@unique-nft/unique-mainnet-types@npm:930.31.0": + version: 930.31.0 + resolution: "@unique-nft/unique-mainnet-types@npm:930.31.0" peerDependencies: - "@polkadot/api": ^8.6.2 - "@polkadot/types": ^8.6.2 - checksum: bdce1b36ee8251933022b2f3900dddb3bb46762eed443a0a164e3fa033ce42577d0d9ac23e685de8f2b205768253c32411c2b8ea31c53793676f5b35e9454b06 + "@polkadot/api": ^9.5.2 + "@polkadot/types": ^9.5.2 + checksum: f59adece67b129c1ded7c048405a2a6fd379737cd3e248cc54cc2adf2ba19650871e5d3b44b4808cc2f404542d7dc48f5dcff438b614e3dfeb20cd2310e739cc languageName: node linkType: hard @@ -5583,10 +5583,10 @@ __metadata: languageName: node linkType: hard -"@zeitgeistpm/type-defs@npm:0.8.0": - version: 0.8.0 - resolution: "@zeitgeistpm/type-defs@npm:0.8.0" - checksum: e0cac049a0fbae2ef47677dc322e56c553b76aa8c0aade77ff46ce2b77f5fd0831deb1efeb6eab43f089ca66cb03cc4d7c92891b07cac39272bebfca37d4c789 +"@zeitgeistpm/type-defs@npm:0.9.0": + version: 0.9.0 + resolution: "@zeitgeistpm/type-defs@npm:0.9.0" + checksum: e4baf2e7b80b050101d123329c1a6418455a4063a82e6e4a564702b43b7a1649dcf27f8e9face11b6e2802ba17db22c83a9131668de2c8dcdc4efcaabe7fc563 languageName: node linkType: hard @@ -6345,11 +6345,11 @@ __metadata: languageName: node linkType: hard -"babel-jest@npm:^29.2.1": - version: 29.2.1 - resolution: "babel-jest@npm:29.2.1" +"babel-jest@npm:^29.2.2": + version: 29.2.2 + resolution: "babel-jest@npm:29.2.2" dependencies: - "@jest/transform": ^29.2.1 + "@jest/transform": ^29.2.2 "@types/babel__core": ^7.1.14 babel-plugin-istanbul: ^6.1.1 babel-preset-jest: ^29.2.0 @@ -6358,7 +6358,7 @@ __metadata: slash: ^3.0.0 peerDependencies: "@babel/core": ^7.8.0 - checksum: c340c10d8cee4b3ef5990443627b5f70dbe2649faa1fef671c8b4fd4a9f8d559b78e5644e18de8063974cd6606033caf1afcaa52744309f6e3176c0b37c2e8f9 + checksum: 35f0eb895ab9218b55cacedbfe62dd94c99924d89a0a8096354c4fbb4c8465c0a2c4aba82e5bedf367def6c89635f4f134c7ebc22f07b6f9c930f7b43b7bbdde languageName: node linkType: hard @@ -9282,10 +9282,10 @@ __metadata: languageName: node linkType: hard -"emittery@npm:^0.10.2": - version: 0.10.2 - resolution: "emittery@npm:0.10.2" - checksum: ee3e21788b043b90885b18ea756ec3105c1cedc50b29709c92b01e239c7e55345d4bb6d3aef4ddbaf528eef448a40b3bb831bad9ee0fc9c25cbf1367ab1ab5ac +"emittery@npm:^0.13.1": + version: 0.13.1 + resolution: "emittery@npm:0.13.1" + checksum: 2b089ab6306f38feaabf4f6f02792f9ec85fc054fda79f44f6790e61bbf6bc4e1616afb9b232e0c5ec5289a8a452f79bfa6d905a6fd64e94b49981f0934001c6 languageName: node linkType: hard @@ -10153,16 +10153,16 @@ __metadata: languageName: node linkType: hard -"expect@npm:^29.0.0, expect@npm:^29.2.1": - version: 29.2.1 - resolution: "expect@npm:29.2.1" +"expect@npm:^29.0.0, expect@npm:^29.2.2": + version: 29.2.2 + resolution: "expect@npm:29.2.2" dependencies: - "@jest/expect-utils": ^29.2.1 + "@jest/expect-utils": ^29.2.2 jest-get-type: ^29.2.0 - jest-matcher-utils: ^29.2.1 + jest-matcher-utils: ^29.2.2 jest-message-util: ^29.2.1 jest-util: ^29.2.1 - checksum: 0a1347b569de246b8e988a282e1b037746a64f890c89197cff891087673e0ccdc0c485c40f182659d7cc0e910dc40546719c8a00f0e2bdabcc6f627f2af49891 + checksum: e763df36fe406d2746cdf993b85714c16355b249b063b3f1ab0ff4077435b46ccae937c09930218516c1225203353652a8c6ac07b354474bc81d0ec45133dbf1 languageName: node linkType: hard @@ -12999,12 +12999,12 @@ __metadata: languageName: node linkType: hard -"jest-circus@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-circus@npm:29.2.1" +"jest-circus@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-circus@npm:29.2.2" dependencies: - "@jest/environment": ^29.2.1 - "@jest/expect": ^29.2.1 + "@jest/environment": ^29.2.2 + "@jest/expect": ^29.2.2 "@jest/test-result": ^29.2.1 "@jest/types": ^29.2.1 "@types/node": "*" @@ -13013,33 +13013,33 @@ __metadata: dedent: ^0.7.0 is-generator-fn: ^2.0.0 jest-each: ^29.2.1 - jest-matcher-utils: ^29.2.1 + jest-matcher-utils: ^29.2.2 jest-message-util: ^29.2.1 - jest-runtime: ^29.2.1 - jest-snapshot: ^29.2.1 + jest-runtime: ^29.2.2 + jest-snapshot: ^29.2.2 jest-util: ^29.2.1 p-limit: ^3.1.0 pretty-format: ^29.2.1 slash: ^3.0.0 stack-utils: ^2.0.3 - checksum: 3fe8bf27a42d25e68ba869fe5ef0103acf67294c3a2e63c0895b5efaa4ed7fcb35f8c14eeab1a7e6bdee0cb46740fe24177d581976391da740b468aa81bccbbb + checksum: 0c292c4391c7a8455172343a47710882dd077c989946feaf3979771d3013b8c5ee0548f9c63ec063010dbee6ee6aa4dfc6a295720ff2bf31322de34164489b8b languageName: node linkType: hard -"jest-cli@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-cli@npm:29.2.1" +"jest-cli@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-cli@npm:29.2.2" dependencies: - "@jest/core": ^29.2.1 + "@jest/core": ^29.2.2 "@jest/test-result": ^29.2.1 "@jest/types": ^29.2.1 chalk: ^4.0.0 exit: ^0.1.2 graceful-fs: ^4.2.9 import-local: ^3.0.2 - jest-config: ^29.2.1 + jest-config: ^29.2.2 jest-util: ^29.2.1 - jest-validate: ^29.2.1 + jest-validate: ^29.2.2 prompts: ^2.0.1 yargs: ^17.3.1 peerDependencies: @@ -13049,31 +13049,31 @@ __metadata: optional: true bin: jest: bin/jest.js - checksum: 6f190450a6cc462fdb63617ad6fa67fc5e0daaa2ea47e41e2fcc1b16d02886b5be9228066295ba51847be0aee1317dad71648e4ad3b5373f7db0ba93eb8e50f2 + checksum: 95ba7fde0a88d1fd347cd1db4810fbae096c87256b260f8deef7c4b12fd6722d2a31b0a2c0e321e5fc74215d06725195d04c32761279bc8571fe069fd0b0581a languageName: node linkType: hard -"jest-config@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-config@npm:29.2.1" +"jest-config@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-config@npm:29.2.2" dependencies: "@babel/core": ^7.11.6 - "@jest/test-sequencer": ^29.2.1 + "@jest/test-sequencer": ^29.2.2 "@jest/types": ^29.2.1 - babel-jest: ^29.2.1 + babel-jest: ^29.2.2 chalk: ^4.0.0 ci-info: ^3.2.0 deepmerge: ^4.2.2 glob: ^7.1.3 graceful-fs: ^4.2.9 - jest-circus: ^29.2.1 - jest-environment-node: ^29.2.1 + jest-circus: ^29.2.2 + jest-environment-node: ^29.2.2 jest-get-type: ^29.2.0 jest-regex-util: ^29.2.0 - jest-resolve: ^29.2.1 - jest-runner: ^29.2.1 + jest-resolve: ^29.2.2 + jest-runner: ^29.2.2 jest-util: ^29.2.1 - jest-validate: ^29.2.1 + jest-validate: ^29.2.2 micromatch: ^4.0.4 parse-json: ^5.2.0 pretty-format: ^29.2.1 @@ -13087,7 +13087,7 @@ __metadata: optional: true ts-node: optional: true - checksum: a2052eb47d4cd964b1bb9e34cddf608bd252d185e58376c012447afb2fe6c93d17d452a0f38ce45b0621adaec60d68e6d3538146928bb7e5e553523f805dc80d + checksum: 9da0013a1db22ecc594e86a7fea9475175d5ec9ed776ce237672e8be138cea21b68dd9677665c6b316ec4c1aa70a91537861e16ff8938dce44837e71d8f0b5db languageName: node linkType: hard @@ -13125,16 +13125,16 @@ __metadata: languageName: node linkType: hard -"jest-environment-jsdom@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-environment-jsdom@npm:29.2.1" +"jest-environment-jsdom@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-environment-jsdom@npm:29.2.2" dependencies: - "@jest/environment": ^29.2.1 - "@jest/fake-timers": ^29.2.1 + "@jest/environment": ^29.2.2 + "@jest/fake-timers": ^29.2.2 "@jest/types": ^29.2.1 "@types/jsdom": ^20.0.0 "@types/node": "*" - jest-mock: ^29.2.1 + jest-mock: ^29.2.2 jest-util: ^29.2.1 jsdom: ^20.0.0 peerDependencies: @@ -13142,21 +13142,21 @@ __metadata: peerDependenciesMeta: canvas: optional: true - checksum: 7e721fefad2d3a3849e6b85dc387985b9b9e4fcc43e07627886b54e88c714ba49ab7a1b009118572ff597f75ab183d00fd934705d88e90b7c0ddf8d3d0048c9a + checksum: ba612bf496a124ea58579f40b1a027cd6cfe9f4650c8131b757aed2644a2621843c2d4455079ae932416e7c1bd04fa85e362d9113442b5b8b9b2dbee1c5dcfa4 languageName: node linkType: hard -"jest-environment-node@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-environment-node@npm:29.2.1" +"jest-environment-node@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-environment-node@npm:29.2.2" dependencies: - "@jest/environment": ^29.2.1 - "@jest/fake-timers": ^29.2.1 + "@jest/environment": ^29.2.2 + "@jest/fake-timers": ^29.2.2 "@jest/types": ^29.2.1 "@types/node": "*" - jest-mock: ^29.2.1 + jest-mock: ^29.2.2 jest-util: ^29.2.1 - checksum: fc001e4292ae7516829008c1f030ff176cce9e63d845e3b209bf0c9088d32fc464174032fd41c7cf7c9899801033991aa7bd9f661729cb5691c9179b29188888 + checksum: 06046c31f664f37b2fcf2dd85fbb3818ab15ee12570f707a6fdfc6b6009cce2444564a531bbb44acc4eff06cc86dc1070786fe79fab1c5ba7f6a9ded482957f1 languageName: node linkType: hard @@ -13200,15 +13200,15 @@ __metadata: languageName: node linkType: hard -"jest-matcher-utils@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-matcher-utils@npm:29.2.1" +"jest-matcher-utils@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-matcher-utils@npm:29.2.2" dependencies: chalk: ^4.0.0 jest-diff: ^29.2.1 jest-get-type: ^29.2.0 pretty-format: ^29.2.1 - checksum: d2a2f1ca8389e6ee529dc160786d912dec6cadfb395139fa1afa0f2e175775c7cf50dfe00981baae71ee0cbcab0d7f9f2d9cf9b9665dcda1d2cc04294fbd9979 + checksum: 97ef2638ab826c25f84bfedea231cef091820ae0876ba316922da81145e950d2b9d2057d3645813b5ee880bb975ed4f22e228dda5d0d26a20715e575b675357d languageName: node linkType: hard @@ -13229,14 +13229,14 @@ __metadata: languageName: node linkType: hard -"jest-mock@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-mock@npm:29.2.1" +"jest-mock@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-mock@npm:29.2.2" dependencies: "@jest/types": ^29.2.1 "@types/node": "*" jest-util: ^29.2.1 - checksum: fb28fc277ed788fec45adb8ed1e45d6c7fc02938b5db2e87bfaccc83e385f6fcabfe3433562c50a051efffa02676c07e9e7fdc90d177be67d87a6831c5fc19fe + checksum: 9efc3519f50cc911bf759ec65434222c0d80ca033eede5705deb63e0cdad1e25d59e27691aec125d19cb312d46a09509ed205779b4fe60e64cbf54a76903ba58 languageName: node linkType: hard @@ -13259,72 +13259,72 @@ __metadata: languageName: node linkType: hard -"jest-resolve-dependencies@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-resolve-dependencies@npm:29.2.1" +"jest-resolve-dependencies@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-resolve-dependencies@npm:29.2.2" dependencies: jest-regex-util: ^29.2.0 - jest-snapshot: ^29.2.1 - checksum: d29908195298f3f3d22f4632bc6eecde89d586d8b8563539072ffbfc5e6ea8973051ef7cbc8336060fcd8b91ea2e42353e8e20958d1fa68dbd6e1c8511a68023 + jest-snapshot: ^29.2.2 + checksum: 80a602beebe694444afc6f4ba7d32685d464bea75955ff74bee14640dfebe28a02080e94a9a49377e0815c86d045d653a4d6ce5a63a816347600ebd2c3f79084 languageName: node linkType: hard -"jest-resolve@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-resolve@npm:29.2.1" +"jest-resolve@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-resolve@npm:29.2.2" dependencies: chalk: ^4.0.0 graceful-fs: ^4.2.9 jest-haste-map: ^29.2.1 jest-pnp-resolver: ^1.2.2 jest-util: ^29.2.1 - jest-validate: ^29.2.1 + jest-validate: ^29.2.2 resolve: ^1.20.0 resolve.exports: ^1.1.0 slash: ^3.0.0 - checksum: d9ea07ccfa91fcbc7461a0c90bdf9b928f86c9b5de0b01a0a5f73c55aa9cf4f6f7b00439248d4babb9a021070df08be8e4716bc3c73d91311719a400c76f9c82 + checksum: 2bfa5c64d4ed2e60fea6a398cd08db91e925e4efbac3bee7ec2b9561dc8b05b16f43c7a00b158e4facd3a7738b7beaf580f9ac486e3bdd6edb4fc91073042c08 languageName: node linkType: hard -"jest-runner@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-runner@npm:29.2.1" +"jest-runner@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-runner@npm:29.2.2" dependencies: "@jest/console": ^29.2.1 - "@jest/environment": ^29.2.1 + "@jest/environment": ^29.2.2 "@jest/test-result": ^29.2.1 - "@jest/transform": ^29.2.1 + "@jest/transform": ^29.2.2 "@jest/types": ^29.2.1 "@types/node": "*" chalk: ^4.0.0 - emittery: ^0.10.2 + emittery: ^0.13.1 graceful-fs: ^4.2.9 jest-docblock: ^29.2.0 - jest-environment-node: ^29.2.1 + jest-environment-node: ^29.2.2 jest-haste-map: ^29.2.1 jest-leak-detector: ^29.2.1 jest-message-util: ^29.2.1 - jest-resolve: ^29.2.1 - jest-runtime: ^29.2.1 + jest-resolve: ^29.2.2 + jest-runtime: ^29.2.2 jest-util: ^29.2.1 - jest-watcher: ^29.2.1 + jest-watcher: ^29.2.2 jest-worker: ^29.2.1 p-limit: ^3.1.0 source-map-support: 0.5.13 - checksum: 5aaa04b80eb9d2c78cf5e0ae815a2b418ec5ab24e3fa0bd5a1fa17c886a4c5e9938f5d8508f2ac24ed9dc8cf93c0742c8e538ae31833ed3dfa9fe6e2bc612fa9 + checksum: 1bea17607f505a394af7c3ce8dca9af0f804bd96c52eb48fa2470ec396d52e8132a12a0550ef6e0ac3c175c9596e4a3c20b691bca9aea9cffa009f9833c6a009 languageName: node linkType: hard -"jest-runtime@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-runtime@npm:29.2.1" +"jest-runtime@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-runtime@npm:29.2.2" dependencies: - "@jest/environment": ^29.2.1 - "@jest/fake-timers": ^29.2.1 - "@jest/globals": ^29.2.1 + "@jest/environment": ^29.2.2 + "@jest/fake-timers": ^29.2.2 + "@jest/globals": ^29.2.2 "@jest/source-map": ^29.2.0 "@jest/test-result": ^29.2.1 - "@jest/transform": ^29.2.1 + "@jest/transform": ^29.2.2 "@jest/types": ^29.2.1 "@types/node": "*" chalk: ^4.0.0 @@ -13334,20 +13334,20 @@ __metadata: graceful-fs: ^4.2.9 jest-haste-map: ^29.2.1 jest-message-util: ^29.2.1 - jest-mock: ^29.2.1 + jest-mock: ^29.2.2 jest-regex-util: ^29.2.0 - jest-resolve: ^29.2.1 - jest-snapshot: ^29.2.1 + jest-resolve: ^29.2.2 + jest-snapshot: ^29.2.2 jest-util: ^29.2.1 slash: ^3.0.0 strip-bom: ^4.0.0 - checksum: bfd535ece219f5a1e36758b51c498246e7aac63458a12cb85b3b2156a632d5ee802f43fdc566714fb36c12521589fe495727e9838cdae14b3369e122e44e8c2b + checksum: 82268a0091cf5ed8ea26bdeeb207cf2eff1c2130704313cd9132c65481d8e30845955b8af08fb73fac1c541573c0701fccd19d3394f24c8c36e0521e467815c8 languageName: node linkType: hard -"jest-snapshot@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-snapshot@npm:29.2.1" +"jest-snapshot@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-snapshot@npm:29.2.2" dependencies: "@babel/core": ^7.11.6 "@babel/generator": ^7.7.2 @@ -13355,25 +13355,25 @@ __metadata: "@babel/plugin-syntax-typescript": ^7.7.2 "@babel/traverse": ^7.7.2 "@babel/types": ^7.3.3 - "@jest/expect-utils": ^29.2.1 - "@jest/transform": ^29.2.1 + "@jest/expect-utils": ^29.2.2 + "@jest/transform": ^29.2.2 "@jest/types": ^29.2.1 "@types/babel__traverse": ^7.0.6 "@types/prettier": ^2.1.5 babel-preset-current-node-syntax: ^1.0.0 chalk: ^4.0.0 - expect: ^29.2.1 + expect: ^29.2.2 graceful-fs: ^4.2.9 jest-diff: ^29.2.1 jest-get-type: ^29.2.0 jest-haste-map: ^29.2.1 - jest-matcher-utils: ^29.2.1 + jest-matcher-utils: ^29.2.2 jest-message-util: ^29.2.1 jest-util: ^29.2.1 natural-compare: ^1.4.0 pretty-format: ^29.2.1 semver: ^7.3.5 - checksum: bb09952d13477f403d20c72803ea1b07e0ae7b7abb658bee0a03d3e16f75bb4c85502dbca1e3f5d8b3885063308b4a9acfdb0316339a16bfddd4907c7c79a662 + checksum: f2f86aa83ee2a785ff9da17b372b4132f2d94aa9499c21ade4034436b302be3c8d3d0612712738dd36f708b342b785e2fc2069ec0caeaf75c84d75cc501439df languageName: node linkType: hard @@ -13391,9 +13391,9 @@ __metadata: languageName: node linkType: hard -"jest-validate@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-validate@npm:29.2.1" +"jest-validate@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-validate@npm:29.2.2" dependencies: "@jest/types": ^29.2.1 camelcase: ^6.2.0 @@ -13401,23 +13401,23 @@ __metadata: jest-get-type: ^29.2.0 leven: ^3.1.0 pretty-format: ^29.2.1 - checksum: 33bf2671f9c72f542ac3847b62d96c6717dabab1738c172aef46de06c98ae4c78ed1972ca39c5b1360eaebe47460a39e1d04fd0f7e724241a648d33f3b4d0466 + checksum: faa462777d3aa632f13feb2c23b3b263429f0bc7c6addc97e325d53a2dd954f01b05456ab730a1492b606c175457f72c8afad371f555bfaf5e0f6085b6f4cbb9 languageName: node linkType: hard -"jest-watcher@npm:^29.2.1": - version: 29.2.1 - resolution: "jest-watcher@npm:29.2.1" +"jest-watcher@npm:^29.2.2": + version: 29.2.2 + resolution: "jest-watcher@npm:29.2.2" dependencies: "@jest/test-result": ^29.2.1 "@jest/types": ^29.2.1 "@types/node": "*" ansi-escapes: ^4.2.1 chalk: ^4.0.0 - emittery: ^0.10.2 + emittery: ^0.13.1 jest-util: ^29.2.1 string-length: ^4.0.1 - checksum: c14224af26d1f8c4664d9731d28bb21a6959ce32c4a4ed76b21a5447eca9d635963db5e7a8dbc30df46535b5e4bad589092f47c26bfb705ed203ce80061e744f + checksum: 789a33d1374f546c83b8da2332f10b2d44c29ae1786352b91352ee4b2057cdc9b1734144a4a87adca3a7229b0aec237fd8bdf9796ff3c940da13cd83056444d7 languageName: node linkType: hard @@ -13444,14 +13444,14 @@ __metadata: languageName: node linkType: hard -"jest@npm:^29.2.1": - version: 29.2.1 - resolution: "jest@npm:29.2.1" +"jest@npm:^29.2.2": + version: 29.2.2 + resolution: "jest@npm:29.2.2" dependencies: - "@jest/core": ^29.2.1 + "@jest/core": ^29.2.2 "@jest/types": ^29.2.1 import-local: ^3.0.2 - jest-cli: ^29.2.1 + jest-cli: ^29.2.2 peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -13459,7 +13459,7 @@ __metadata: optional: true bin: jest: bin/jest.js - checksum: b19bf0b490b08c99ec221f9eb69302e02b8f220b080bde22032200b7638896a7d7ae2e559455859b7158e43d07454690b638dd4be5a35d33f00cc973da2da9aa + checksum: 6b4c0af3b5a0fddee46e26c9a539d70a3945700c20444ad3568e14faba27e89671f972dfaa8a02225c4e02b6d422171535660f5e167b1eb765a0922aea82533b languageName: node linkType: hard @@ -16234,18 +16234,18 @@ __metadata: version: 0.0.0-use.local resolution: "polkadot-apps@workspace:." dependencies: - "@babel/core": ^7.19.3 + "@babel/core": ^7.19.6 "@babel/register": ^7.18.9 "@babel/runtime": ^7.19.4 "@crustio/crust-pin": ^1.0.0 - "@pinata/sdk": ^1.1.26 - "@polkadot/dev": ^0.67.147 + "@pinata/sdk": ^1.2.1 + "@polkadot/dev": ^0.67.148 "@types/chart.js": ^2.9.37 "@types/file-saver": ^2.0.5 - "@types/jest": ^29.0.3 + "@types/jest": ^29.2.0 "@types/react-beautiful-dnd": ^13.1.2 "@types/react-copy-to-clipboard": ^5.0.4 - "@types/react-dom": ^18.0.6 + "@types/react-dom": ^18.0.7 "@types/react-router-dom": ^5.3.3 "@types/store": ^2.0.2 "@types/styled-components": ^5.1.26