diff --git a/.github/workflows/build.yml b/.github/workflows/lint.yml similarity index 90% rename from .github/workflows/build.yml rename to .github/workflows/lint.yml index ba7425ea..ba19e695 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/lint.yml @@ -37,3 +37,6 @@ jobs: if: always() id: spell-check run: pnpm run spell + + - name: 🚪 Run Check Exports + run: npm run lint:exports diff --git a/.vscode/settings.json b/.vscode/settings.json index 923367e4..60ab47b6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,6 +12,7 @@ "biomejs", "bncs", "composablenodes", + "concensus", "crustnetwork", "darwinia", "darwiniacrab", @@ -21,6 +22,7 @@ "foucoco", "ftmwh", "fullnode", + "globalconsensus", "heiko", "helikon", "hydradx", @@ -90,6 +92,9 @@ "vmovr", "wagmi", "wftm", + "wbtce", + "wethe", + "wstethe", "wifd", "xfer", "xtokens" diff --git a/package.json b/package.json index ce1e4a46..c07d10d6 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "link": "turbo run link", "lint": "pnpm biome check .", "lint:fix": "pnpm biome check --write .", + "lint:exports": "ts-unused-exports tsconfig.json --excludePathsFromReport='vitest.workspace.ts;tsup.config.ts;build;examples;vitest.config;src/index.ts' --exitWithCount", "typecheck": "turbo run typecheck", "spell": "cspell --quiet -c cspell.config.cjs 'packages/**/src/**'", "test": "turbo run test", @@ -37,12 +38,12 @@ "changeset:publish": "pnpm run build && pnpm publish -r" }, "dependencies": { - "@polkadot/api": "^12.4.2", - "@polkadot/api-augment": "^12.4.2", - "@polkadot/apps-config": "^0.143.2", - "@polkadot/types": "^12.4.2", - "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.1.1", + "@polkadot/api": "14.3.1", + "@polkadot/api-augment": "14.3.1", + "@polkadot/apps-config": "0.146.1", + "@polkadot/types": "14.3.1", + "@polkadot/util": "13.2.3", + "@polkadot/util-crypto": "13.2.3", "@wormhole-foundation/sdk-connect": "^0.10.7", "@wormhole-foundation/sdk-evm": "^0.10.7", "@wormhole-foundation/sdk-evm-tokenbridge": "^0.10.7" @@ -59,10 +60,14 @@ "glob": "^11.0.0", "lefthook": "^1.7.15", "syncpack": "^13.0.0", + "ts-unused-exports": "^10.1.0", "tsup": "^8.3.0", "turbo": "^2.1.3", "typescript": "^5.6.3", "viem": "^2.21.7", "vitest": "^2.1.3" + }, + "overrides": { + "cross-spawn": "^7.0.5" } } diff --git a/packages/builder/CHANGELOG.md b/packages/builder/CHANGELOG.md index bbbe3026..42d4a0c1 100644 --- a/packages/builder/CHANGELOG.md +++ b/packages/builder/CHANGELOG.md @@ -1,5 +1,23 @@ # @moonbeam-network/xcm-builder +## 2.6.0 + +### Minor Changes + +- [#383](https://github.com/moonbeam-foundation/xcm-sdk/pull/383) [`5d3e8b4`](https://github.com/moonbeam-foundation/xcm-sdk/commit/5d3e8b470fb9c5640ba3d27c6140e2ff09fc897d) Thanks [@mmaurello](https://github.com/mmaurello)! - Add foreign assets configuration and Snowbridge assets tranfers between Asset Hub and Moonbeam + +## 2.5.5 + +### Patch Changes + +- [#390](https://github.com/moonbeam-foundation/xcm-sdk/pull/390) [`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix vulnerability + +- [#393](https://github.com/moonbeam-foundation/xcm-sdk/pull/393) [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42) Thanks [@Rihyx](https://github.com/Rihyx)! - fix cross-spawn vulnerability + +- Updated dependencies [[`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072), [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42)]: + - @moonbeam-network/xcm-types@2.5.3 + - @moonbeam-network/xcm-utils@2.2.3 + ## 2.5.4 ### Patch Changes diff --git a/packages/builder/package.json b/packages/builder/package.json index 6ff14847..68908689 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/xcm-builder", - "version": "2.5.4", + "version": "2.6.0", "description": "Moonbeam XCM builder", "scripts": { "build": "tsup", @@ -38,11 +38,11 @@ "big.js": "^6.2.1" }, "peerDependencies": { - "@polkadot/api": "^12.4.2", - "@polkadot/api-augment": "^12.4.2", - "@polkadot/types": "^12.4.2", - "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.1.1", + "@polkadot/api": "14.3.1", + "@polkadot/api-augment": "14.3.1", + "@polkadot/types": "14.3.1", + "@polkadot/util": "13.2.3", + "@polkadot/util-crypto": "13.2.3", "@wormhole-foundation/sdk-connect": "^0.10.7", "@wormhole-foundation/sdk-evm": "^0.10.7", "viem": "^2.21.7" diff --git a/packages/builder/src/asset-min/AssetMinBuilder.interfaces.ts b/packages/builder/src/asset-min/AssetMinBuilder.interfaces.ts index cea8f714..2cb22830 100644 --- a/packages/builder/src/asset-min/AssetMinBuilder.interfaces.ts +++ b/packages/builder/src/asset-min/AssetMinBuilder.interfaces.ts @@ -8,5 +8,6 @@ export type AssetMinConfigBuilder = ConfigBuilder< >; export interface AssetMinConfigBuilderParams { + address?: string; asset: ChainAssetId; } diff --git a/packages/builder/src/asset-min/AssetMinBuilder.test.ts b/packages/builder/src/asset-min/AssetMinBuilder.test.ts index bfea8c51..2a00d569 100644 --- a/packages/builder/src/asset-min/AssetMinBuilder.test.ts +++ b/packages/builder/src/asset-min/AssetMinBuilder.test.ts @@ -77,4 +77,27 @@ describe('assetMinBuilder', () => { }); }); }); + + describe('foreignAssets', () => { + describe('asset', () => { + const config = AssetMinBuilder().foreignAssets().asset().build({ + asset, + address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', + }); + + it('should be correct config', () => { + expect(config).toMatchSnapshot(); + }); + + it('should transform correctly', async () => { + await expect( + config.transform({ + unwrapOrDefault: () => ({ + minBalance: balanceOf(999), + }), + }), + ).resolves.toMatchSnapshot(); + }); + }); + }); }); diff --git a/packages/builder/src/asset-min/AssetMinBuilder.ts b/packages/builder/src/asset-min/AssetMinBuilder.ts index 48bd13b8..c5dc5228 100644 --- a/packages/builder/src/asset-min/AssetMinBuilder.ts +++ b/packages/builder/src/asset-min/AssetMinBuilder.ts @@ -1,5 +1,6 @@ import type { Option } from '@polkadot/types'; import type { PalletAssetsAssetDetails } from '@polkadot/types/lookup'; +import { getExtrinsicAccount } from '../extrinsic/ExtrinsicBuilder.utils'; import { SubstrateQueryConfig } from '../types/substrate/SubstrateQueryConfig'; import type { AssetMinConfigBuilder } from './AssetMinBuilder.interfaces'; @@ -7,6 +8,7 @@ export function AssetMinBuilder() { return { assetRegistry, assets, + foreignAssets, }; } @@ -54,3 +56,41 @@ function assets() { }), }; } + +function foreignAssets() { + return { + asset: (): AssetMinConfigBuilder => ({ + build: ({ address }) => { + if (!address) { + throw new Error( + 'Asset address is missing for foreignAssets.asset min calculation', + ); + } + const multilocation = { + parents: 2, + interior: { + X2: [ + { + globalconsensus: { + ethereum: { + chainId: 1, + }, + }, + }, + getExtrinsicAccount(address), + ], + }, + }; + return new SubstrateQueryConfig({ + module: 'foreignAssets', + func: 'asset', + args: [multilocation], + transform: async ( + response: Option, + ): Promise => + response.unwrapOrDefault().minBalance.toBigInt(), + }); + }, + }), + }; +} diff --git a/packages/builder/src/asset-min/__snapshots__/AssetMinBuilder.test.ts.snap b/packages/builder/src/asset-min/__snapshots__/AssetMinBuilder.test.ts.snap index fee3549c..db603689 100644 --- a/packages/builder/src/asset-min/__snapshots__/AssetMinBuilder.test.ts.snap +++ b/packages/builder/src/asset-min/__snapshots__/AssetMinBuilder.test.ts.snap @@ -38,3 +38,34 @@ SubstrateQueryConfig { `; exports[`assetMinBuilder > assets > asset > should transform correctly 1`] = `999n`; + +exports[`assetMinBuilder > foreignAssets > asset > should be correct config 1`] = ` +SubstrateQueryConfig { + "args": [ + { + "interior": { + "X2": [ + { + "globalconsensus": { + "ethereum": { + "chainId": 1, + }, + }, + }, + { + "AccountKey20": { + "key": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + }, + }, + ], + }, + "parents": 2, + }, + ], + "func": "asset", + "module": "foreignAssets", + "transform": [Function], +} +`; + +exports[`assetMinBuilder > foreignAssets > asset > should transform correctly 1`] = `999n`; diff --git a/packages/builder/src/balance/BalanceBuilder.test.ts b/packages/builder/src/balance/BalanceBuilder.test.ts index 0b73e4f0..0bd9c80b 100644 --- a/packages/builder/src/balance/BalanceBuilder.test.ts +++ b/packages/builder/src/balance/BalanceBuilder.test.ts @@ -47,6 +47,31 @@ describe('balanceBuilder', () => { }); }); + describe('foreignAssets', () => { + describe('account', () => { + const config = BalanceBuilder() + .substrate() + .foreignAssets() + .account() + .build({ + address, + asset, + }) as SubstrateQueryConfig; + + it('should be correct config', () => { + expect(config).toMatchSnapshot(); + }); + + it('should transform correctly', async () => { + await expect( + config.transform({ + unwrapOrDefault: () => ({ balance: balanceOf(999) }), + }), + ).resolves.toMatchSnapshot(); + }); + }); + }); + describe('system', () => { describe('account', () => { const config = BalanceBuilder() diff --git a/packages/builder/src/balance/BalanceBuilder.ts b/packages/builder/src/balance/BalanceBuilder.ts index ff05f805..de5b51f9 100644 --- a/packages/builder/src/balance/BalanceBuilder.ts +++ b/packages/builder/src/balance/BalanceBuilder.ts @@ -7,6 +7,7 @@ import type { import { evmToAddress } from '@polkadot/util-crypto'; import type { Address } from 'viem'; import { ContractConfig } from '../contract'; +import { getExtrinsicAccount } from '../extrinsic/ExtrinsicBuilder.utils'; import { EvmQueryConfig } from '../types/evm/EvmQueryConfig'; import { SubstrateQueryConfig } from '../types/substrate/SubstrateQueryConfig'; import type { @@ -62,6 +63,7 @@ function native(): BalanceConfigBuilder { export function substrate() { return { assets, + foreignAssets, system, tokens, }; @@ -83,6 +85,39 @@ function assets() { }; } +function foreignAssets() { + return { + account: (): BalanceConfigBuilder => ({ + build: ({ address, asset }) => { + if (!asset.address) { + throw new Error( + 'Asset address is needed to calculate balance with foreignAssets.account function', + ); + } + + const multilocation = { + parents: 2, + interior: { + X2: [ + { GlobalConsensus: { ethereum: { chainId: 1 } } }, + getExtrinsicAccount(asset.address), + ], + }, + }; + + return new SubstrateQueryConfig({ + module: 'foreignAssets', + func: 'account', + args: [multilocation, address], + transform: async ( + response: Option, + ): Promise => response.unwrapOrDefault().balance.toBigInt(), + }); + }, + }), + }; +} + function system() { return { account: (): BalanceConfigBuilder => ({ diff --git a/packages/builder/src/balance/__snapshots__/BalanceBuilder.test.ts.snap b/packages/builder/src/balance/__snapshots__/BalanceBuilder.test.ts.snap index ec2300ed..89bf73e0 100644 --- a/packages/builder/src/balance/__snapshots__/BalanceBuilder.test.ts.snap +++ b/packages/builder/src/balance/__snapshots__/BalanceBuilder.test.ts.snap @@ -14,6 +14,38 @@ SubstrateQueryConfig { exports[`balanceBuilder > assets > account > should transform correctly 1`] = `999n`; +exports[`balanceBuilder > foreignAssets > account > should be correct config 1`] = ` +SubstrateQueryConfig { + "args": [ + { + "interior": { + "X2": [ + { + "GlobalConsensus": { + "ethereum": { + "chainId": 1, + }, + }, + }, + { + "AccountKey20": { + "key": "0x98891e5FD24Ef33A488A47101F65D212Ff6E650E", + }, + }, + ], + }, + "parents": 2, + }, + "
", + ], + "func": "account", + "module": "foreignAssets", + "transform": [Function], +} +`; + +exports[`balanceBuilder > foreignAssets > account > should transform correctly 1`] = `999n`; + exports[`balanceBuilder > system > account > should be correct config 1`] = ` SubstrateQueryConfig { "args": [ diff --git a/packages/builder/src/extrinsic/pallets/polkadotXcm/__snapshots__/polkadotXcm.test.ts.snap b/packages/builder/src/extrinsic/pallets/polkadotXcm/__snapshots__/polkadotXcm.test.ts.snap index 9e217f1f..7866c313 100644 --- a/packages/builder/src/extrinsic/pallets/polkadotXcm/__snapshots__/polkadotXcm.test.ts.snap +++ b/packages/builder/src/extrinsic/pallets/polkadotXcm/__snapshots__/polkadotXcm.test.ts.snap @@ -454,3 +454,108 @@ exports[`polkadotXcm > limitedReserveWithdrawAssets > x2 > should get correct ar "Unlimited", ] `; + +exports[`polkadotXcm > transferAssetsUsingTypeAndThen > globalConsensusEthereum > should be correct config 1`] = ` +ExtrinsicConfig { + "func": "transferAssetsUsingTypeAndThen", + "getArgs": [Function], + "module": "polkadotXcm", +} +`; + +exports[`polkadotXcm > transferAssetsUsingTypeAndThen > globalConsensusEthereum > should get correct arguments 1`] = ` +[ + { + "V1": { + "interior": { + "X1": [ + { + "Parachain": 2032, + }, + ], + }, + "parents": 1, + }, + }, + { + "V1": [ + { + "fun": { + "fungible": 99000000000n, + }, + "id": { + "Concrete": { + "interior": { + "X2": [ + { + "globalConsensus": { + "Ethereum": { + "ChainId": 1, + }, + }, + }, + { + "AccountKey20": { + "key": "0x98891e5FD24Ef33A488A47101F65D212Ff6E650E", + }, + }, + ], + }, + "parents": 2, + }, + }, + }, + ], + }, + "LocalReserve", + { + "V1": { + "Concrete": { + "interior": { + "X2": [ + { + "globalConsensus": { + "Ethereum": { + "ChainId": 1, + }, + }, + }, + { + "AccountKey20": { + "key": "0x98891e5FD24Ef33A488A47101F65D212Ff6E650E", + }, + }, + ], + }, + "parents": 2, + }, + }, + }, + "LocalReserve", + { + "V1": [ + { + "DepositAsset": { + "assets": { + "Wild": { + "AllCounted": 1, + }, + }, + "beneficiary": { + "interior": { + "X1": { + "AccountId32": { + "id": "0x18e6c7ad45fbab18778710642072fdd057470b76d4d568b44dea6accd5b0c423", + "network": null, + }, + }, + }, + "parents": 0, + }, + }, + }, + ], + }, + "Unlimited", +] +`; diff --git a/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.test.ts b/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.test.ts index 6a2e55e7..54d83da8 100644 --- a/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.test.ts +++ b/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.test.ts @@ -118,4 +118,21 @@ describe('polkadotXcm', () => { }); }); }); + + describe('transferAssetsUsingTypeAndThen', () => { + describe('globalConsensusEthereum', () => { + const extrinsic = polkadotXcm() + .transferAssetsUsingTypeAndThen() + .globalConsensusEthereum() + .build(buildParachainParamsMock); + + it('should be correct config', () => { + expect(extrinsic).toMatchSnapshot(); + }); + + it('should get correct arguments', () => { + expect(extrinsic.getArgs()).toMatchSnapshot(); + }); + }); + }); }); diff --git a/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.ts b/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.ts index 8c3f1422..029f8c64 100644 --- a/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.ts +++ b/packages/builder/src/extrinsic/pallets/polkadotXcm/polkadotXcm.ts @@ -1,6 +1,7 @@ import { ExtrinsicConfig } from '../../../types/substrate/ExtrinsicConfig'; import type { ExtrinsicConfigBuilder } from '../../ExtrinsicBuilder.interfaces'; import { + getExtrinsicAccount, getExtrinsicArgumentVersion, normalizeConcrete, normalizeX1, @@ -223,5 +224,91 @@ export function polkadotXcm() { }), }; }, + transferAssetsUsingTypeAndThen: () => { + const func = 'transferAssetsUsingTypeAndThen'; + return { + // TODO we could pass a parameter globalConsensus in the chain asset if we need a different one + globalConsensusEthereum: (): ExtrinsicConfigBuilder => ({ + build: (params) => + new ExtrinsicConfig({ + module: pallet, + func, + + getArgs: (extrinsicFunction) => { + if (!params.asset.address) { + throw new Error( + 'Asset address is needed for transferAssetsUsingTypeAndThen.globalConsensus function', + ); + } + + const version = getExtrinsicArgumentVersion(extrinsicFunction); + return [ + { + [version]: { + parents: 1, + interior: { + X1: [ + { + Parachain: params.destination.parachainId, + }, + ], + }, + }, + }, + { + [version]: [ + { + id: normalizeConcrete(version, { + parents: 2, + interior: { + X2: [ + { globalConsensus: { Ethereum: { ChainId: 1 } } }, + getExtrinsicAccount(params.asset.address), + ], + }, + }), + fun: { fungible: params.asset.amount }, + }, + ], + }, + 'LocalReserve', + { + [version]: normalizeConcrete(version, { + parents: 2, + interior: { + X2: [ + { globalConsensus: { Ethereum: { ChainId: 1 } } }, + getExtrinsicAccount(params.asset.address), + ], + }, + }), + }, + 'LocalReserve', + { + [version]: [ + { + DepositAsset: { + assets: { + Wild: { AllCounted: 1 }, + }, + beneficiary: normalizeX1(version, { + parents: 0, + interior: { + X1: getExtrinsicAccount( + params.destinationAddress, + ), + }, + }), + }, + }, + ], + }, + 'Unlimited', + ]; + }, + }), + }), + }; + }, }; } diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 0ccfbe2f..57c97030 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,26 @@ # @moonbeam-network/xcm-config +## 2.7.6 + +### Patch Changes + +- [#383](https://github.com/moonbeam-foundation/xcm-sdk/pull/383) [`5d3e8b4`](https://github.com/moonbeam-foundation/xcm-sdk/commit/5d3e8b470fb9c5640ba3d27c6140e2ff09fc897d) Thanks [@mmaurello](https://github.com/mmaurello)! - Add foreign assets configuration and Snowbridge assets tranfers between Asset Hub and Moonbeam + +- Updated dependencies [[`5d3e8b4`](https://github.com/moonbeam-foundation/xcm-sdk/commit/5d3e8b470fb9c5640ba3d27c6140e2ff09fc897d)]: + - @moonbeam-network/xcm-builder@2.6.0 + +## 2.7.5 + +### Patch Changes + +- [#390](https://github.com/moonbeam-foundation/xcm-sdk/pull/390) [`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix vulnerability + +- [#393](https://github.com/moonbeam-foundation/xcm-sdk/pull/393) [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42) Thanks [@Rihyx](https://github.com/Rihyx)! - fix cross-spawn vulnerability + +- Updated dependencies [[`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072), [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42)]: + - @moonbeam-network/xcm-builder@2.5.5 + - @moonbeam-network/xcm-types@2.5.3 + ## 2.7.4 ### Patch Changes diff --git a/packages/config/package.json b/packages/config/package.json index 11b5ba31..568381da 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/xcm-config", - "version": "2.7.4", + "version": "2.7.6", "description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back", "scripts": { "build": "tsup", @@ -38,8 +38,8 @@ "@moonbeam-network/xcm-utils": "workspace:*" }, "peerDependencies": { - "@polkadot/types": "^12.4.2", - "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.1.1" + "@polkadot/types": "14.3.1", + "@polkadot/util": "13.2.3", + "@polkadot/util-crypto": "13.2.3" } } diff --git a/packages/config/src/assets.ts b/packages/config/src/assets.ts index 958516a7..e6395c2f 100644 --- a/packages/config/src/assets.ts +++ b/packages/config/src/assets.ts @@ -390,6 +390,21 @@ export const ztg = new Asset({ originSymbol: 'ZTG', }); +export const wbtce = new Asset({ + key: 'wbtce', + originSymbol: 'WBTC.e', +}); + +export const wstethe = new Asset({ + key: 'wstethe', + originSymbol: 'wstETH.e', +}); + +export const wethe = new Asset({ + key: 'wethe', + originSymbol: 'WETH.e', +}); + export const assetsList: Asset[] = [ aca, agng, @@ -464,9 +479,12 @@ export const assetsList: Asset[] = [ vmanta, vmovr, wbtc, + wbtce, weth, + wethe, wftm, wifd, + wstethe, xrt, ztg, ]; diff --git a/packages/config/src/chains.ts b/packages/config/src/chains.ts index bcf08ec0..2762c568 100644 --- a/packages/config/src/chains.ts +++ b/packages/config/src/chains.ts @@ -79,8 +79,11 @@ import { vmanta, vmovr, wbtc, + wbtce, weth, + wethe, wifd, + wstethe, xrt, ztg, } from './assets'; @@ -1321,6 +1324,27 @@ export const moonbeam = new EvmParachain({ id: '61295607754960722617854661686514597014', }, }), + ChainAsset.fromAsset(wbtce, { + address: '0xffffffff1b4bb1ac5749f73d866ffc91a3432c47', + decimals: 8, + ids: { + id: '36282181791341254438422467838694599751', + }, + }), + ChainAsset.fromAsset(wethe, { + address: '0xffffffff86829afe1521ad2296719df3ace8ded7', + decimals: 18, + ids: { + id: '178794693648360392906933130845919698647', + }, + }), + ChainAsset.fromAsset(wstethe, { + address: '0xffffffff5d5deb44bf7278dee5381beb24cb6573', + decimals: 18, + ids: { + id: '124105859028862849477017063633156007283', + }, + }), ], ecosystem: Ecosystem.Polkadot, genesisHash: @@ -2005,6 +2029,18 @@ export const polkadotAssetHub = new Parachain({ palletInstance: 50, }, }), + ChainAsset.fromAsset(wbtce, { + address: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', + decimals: 8, + }), + ChainAsset.fromAsset(wethe, { + address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', + decimals: 18, + }), + ChainAsset.fromAsset(wstethe, { + address: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', + decimals: 18, + }), ], checkSovereignAccountBalances: true, ecosystem: Ecosystem.Polkadot, diff --git a/packages/config/src/xcm-configs/moonbeam.ts b/packages/config/src/xcm-configs/moonbeam.ts index fba792db..7748ee83 100644 --- a/packages/config/src/xcm-configs/moonbeam.ts +++ b/packages/config/src/xcm-configs/moonbeam.ts @@ -40,8 +40,11 @@ import { vglmr, vmanta, wbtc, + wbtce, weth, + wethe, wifd, + wstethe, ztg, } from '../assets'; import { @@ -1463,5 +1466,80 @@ export const moonbeamRoutes = new ChainRoutes({ }, contract: ContractBuilder().Xtokens().transfer(), }, + { + source: { + asset: wbtce, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + asset: glmr, + balance: BalanceBuilder().substrate().system().account(), + }, + destinationFee: { + balance: BalanceBuilder().substrate().assets().account(), + }, + }, + destination: { + asset: wbtce, + chain: polkadotAssetHub, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + amount: 0.0000004, + asset: wbtce, + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + min: AssetMinBuilder().foreignAssets().asset(), + }, + contract: ContractBuilder().Xtokens().transfer(), + }, + { + source: { + asset: wethe, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + asset: glmr, + balance: BalanceBuilder().substrate().system().account(), + }, + destinationFee: { + balance: BalanceBuilder().substrate().assets().account(), + }, + }, + destination: { + asset: wethe, + chain: polkadotAssetHub, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + amount: 0.0000035, + asset: wethe, + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + min: AssetMinBuilder().foreignAssets().asset(), + }, + contract: ContractBuilder().Xtokens().transfer(), + }, + { + source: { + asset: wstethe, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + asset: glmr, + balance: BalanceBuilder().substrate().system().account(), + }, + destinationFee: { + balance: BalanceBuilder().substrate().assets().account(), + }, + }, + destination: { + asset: wstethe, + chain: polkadotAssetHub, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + amount: 0.000006, + asset: wstethe, + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + min: AssetMinBuilder().foreignAssets().asset(), + }, + contract: ContractBuilder().Xtokens().transfer(), + }, ], }); diff --git a/packages/config/src/xcm-configs/polkadotAssetHub.ts b/packages/config/src/xcm-configs/polkadotAssetHub.ts index b8208799..4f539e6f 100644 --- a/packages/config/src/xcm-configs/polkadotAssetHub.ts +++ b/packages/config/src/xcm-configs/polkadotAssetHub.ts @@ -4,7 +4,19 @@ import { ExtrinsicBuilder, FeeBuilder, } from '@moonbeam-network/xcm-builder'; -import { apillon, ded, dot, pink, stink, usdc, usdt, wifd } from '../assets'; +import { + apillon, + ded, + dot, + pink, + stink, + usdc, + usdt, + wbtce, + wethe, + wifd, + wstethe, +} from '../assets'; import { moonbeam, polkadotAssetHub } from '../chains'; import { ChainRoutes } from '../types/ChainRoutes'; @@ -253,5 +265,95 @@ export const polkadotAssetHubRoutes = new ChainRoutes({ .limitedReserveTransferAssets() .X2(), }, + { + source: { + asset: wbtce, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + asset: dot, + balance: BalanceBuilder().substrate().system().account(), + extra, + }, + min: AssetMinBuilder().foreignAssets().asset(), + destinationFee: { + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + }, + destination: { + asset: wbtce, + chain: moonbeam, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({ + isAssetReserveChain: false, + }), + asset: wbtce, + }, + }, + extrinsic: ExtrinsicBuilder() + .polkadotXcm() + .transferAssetsUsingTypeAndThen() + .globalConsensusEthereum(), + }, + { + source: { + asset: wethe, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + asset: dot, + balance: BalanceBuilder().substrate().system().account(), + extra, + }, + min: AssetMinBuilder().foreignAssets().asset(), + destinationFee: { + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + }, + destination: { + asset: wethe, + chain: moonbeam, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({ + isAssetReserveChain: false, + }), + asset: wethe, + }, + }, + extrinsic: ExtrinsicBuilder() + .polkadotXcm() + .transferAssetsUsingTypeAndThen() + .globalConsensusEthereum(), + }, + { + source: { + asset: wstethe, + balance: BalanceBuilder().substrate().foreignAssets().account(), + fee: { + asset: dot, + balance: BalanceBuilder().substrate().system().account(), + extra, + }, + min: AssetMinBuilder().foreignAssets().asset(), + destinationFee: { + balance: BalanceBuilder().substrate().foreignAssets().account(), + }, + }, + destination: { + asset: wstethe, + chain: moonbeam, + balance: BalanceBuilder().substrate().assets().account(), + fee: { + amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({ + isAssetReserveChain: false, + }), + asset: wstethe, + }, + }, + extrinsic: ExtrinsicBuilder() + .polkadotXcm() + .transferAssetsUsingTypeAndThen() + .globalConsensusEthereum(), + }, ], }); diff --git a/packages/mrl/package.json b/packages/mrl/package.json index 5d643d18..b0f3fbab 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -38,10 +38,10 @@ "big.js": "^6.2.1" }, "peerDependencies": { - "@polkadot/api": "^12.4.2", - "@polkadot/api-augment": "^12.4.2", - "@polkadot/types": "^12.4.2", - "@polkadot/util": "^13.1.1", + "@polkadot/api": "14.3.1", + "@polkadot/api-augment": "14.3.1", + "@polkadot/types": "14.3.1", + "@polkadot/util": "13.2.3", "@wormhole-foundation/sdk-connect": "^0.10.7", "@wormhole-foundation/sdk-evm": "^0.10.7", "viem": "^2.21.7" diff --git a/packages/mrl/src/getTransferData/getMoonChainData.ts b/packages/mrl/src/getTransferData/getMoonChainData.ts index 36f4a907..4b23cd78 100644 --- a/packages/mrl/src/getTransferData/getMoonChainData.ts +++ b/packages/mrl/src/getTransferData/getMoonChainData.ts @@ -7,7 +7,7 @@ import type { MoonChainTransferData, } from '../mrl.interfaces'; -export interface GetMoonChainDataParams { +interface GetMoonChainDataParams { destinationData: DestinationTransferData; route: MrlAssetRoute; sourceAddress: string; diff --git a/packages/mrl/src/getTransferData/getSourceData.ts b/packages/mrl/src/getTransferData/getSourceData.ts index b27615e0..4b693352 100644 --- a/packages/mrl/src/getTransferData/getSourceData.ts +++ b/packages/mrl/src/getTransferData/getSourceData.ts @@ -30,7 +30,7 @@ import { getMrlBuilderParams, } from './getTransferData.utils'; -export interface GetSourceDataParams { +interface GetSourceDataParams { route: MrlAssetRoute; destinationAddress: string; destinationFee: AssetAmount; @@ -143,7 +143,7 @@ export async function getSourceData({ }; } -export interface GetFeeParams { +interface GetFeeParams { balance: AssetAmount; chain: AnyChain; destinationFee: AssetAmount; @@ -153,18 +153,18 @@ export interface GetFeeParams { transfer: ContractConfig | ExtrinsicConfig | WormholeConfig; } -export interface GetRelayFeeParams extends BuildTransferParams { +interface GetRelayFeeParams extends BuildTransferParams { chain: AnyChain; transfer: ContractConfig | ExtrinsicConfig | WormholeConfig; } -export interface GetWormholeFeeParams { +interface GetWormholeFeeParams { asset: AssetAmount; chain: AnyChain; config: ContractConfig | ExtrinsicConfig | WormholeConfig; } -export async function getFee({ +async function getFee({ balance, feeBalance, chain, @@ -201,7 +201,7 @@ export async function getFee({ }); } -export async function getRelayerFee({ +async function getRelayerFee({ asset, chain, destinationAddress, @@ -253,14 +253,14 @@ async function getWormholeFee({ return; } -export interface GetMoonChainFeeBalanceParams { +interface GetMoonChainFeeBalanceParams { balance: AssetAmount; feeBalance: AssetAmount; route: MrlAssetRoute; sourceAddress: string; } -export async function getMoonChainFeeBalance({ +async function getMoonChainFeeBalance({ balance, feeBalance, route, diff --git a/packages/mrl/src/getTransferData/getTransferData.ts b/packages/mrl/src/getTransferData/getTransferData.ts index 07050069..088a2935 100644 --- a/packages/mrl/src/getTransferData/getTransferData.ts +++ b/packages/mrl/src/getTransferData/getTransferData.ts @@ -28,7 +28,7 @@ import { getMrlMin, } from './getTransferData.utils'; -export interface GetTransferDataParams { +interface GetTransferDataParams { route: MrlAssetRoute; sourceAddress: string; destinationAddress: string; diff --git a/packages/mrl/src/getTransferData/getTransferData.utils.ts b/packages/mrl/src/getTransferData/getTransferData.utils.ts index a1716291..d9223a44 100644 --- a/packages/mrl/src/getTransferData/getTransferData.utils.ts +++ b/packages/mrl/src/getTransferData/getTransferData.utils.ts @@ -42,7 +42,7 @@ const MOON_CHAIN_AUTOMATIC_GAS_ESTIMATION = { [moonbaseAlpha.key]: 1470417n, }; -export interface DataParams { +interface DataParams { destinationData: DestinationChainTransferData; moonChainData: MoonChainTransferData; sourceData: SourceTransferData; @@ -168,7 +168,7 @@ export async function getMrlBuilderParams({ }; } -export async function getTransact(params: MrlBuilderParams): Promise { +async function getTransact(params: MrlBuilderParams): Promise { const { sourceAddress, source, moonChain } = params; const polkadot = await PolkadotService.create(moonChain); const moonGasLimit = await getMoonGasLimit(params); @@ -199,9 +199,7 @@ export async function getTransact(params: MrlBuilderParams): Promise { }; } -export async function getMoonGasLimit( - params: MrlBuilderParams, -): Promise { +async function getMoonGasLimit(params: MrlBuilderParams): Promise { const { asset, isAutomatic, moonChain, source, sourceAddress } = params; if (!EvmParachain.isAnyParachain(source)) { diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 9841d32f..3cbb7c45 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,27 @@ # @moonbeam-network/xcm-sdk +## 2.7.6 + +### Patch Changes + +- Updated dependencies [[`5d3e8b4`](https://github.com/moonbeam-foundation/xcm-sdk/commit/5d3e8b470fb9c5640ba3d27c6140e2ff09fc897d)]: + - @moonbeam-network/xcm-builder@2.6.0 + - @moonbeam-network/xcm-config@2.7.6 + +## 2.7.5 + +### Patch Changes + +- [#390](https://github.com/moonbeam-foundation/xcm-sdk/pull/390) [`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix vulnerability + +- [#393](https://github.com/moonbeam-foundation/xcm-sdk/pull/393) [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42) Thanks [@Rihyx](https://github.com/Rihyx)! - fix cross-spawn vulnerability + +- Updated dependencies [[`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072), [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42)]: + - @moonbeam-network/xcm-builder@2.5.5 + - @moonbeam-network/xcm-config@2.7.5 + - @moonbeam-network/xcm-types@2.5.3 + - @moonbeam-network/xcm-utils@2.2.3 + ## 2.7.4 ### Patch Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index e89620ec..3f27cb18 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/xcm-sdk", - "version": "2.7.4", + "version": "2.7.6", "description": "The Moonbeam XCM SDK enables developers to easily deposit and withdraw assets to Moonbeam/Moonriver from the relay chain and other parachains in the Polkadot/Kusama ecosystem", "scripts": { "build": "tsup", @@ -46,10 +46,10 @@ "big.js": "^6.2.1" }, "peerDependencies": { - "@polkadot/api": "^12.4.2", - "@polkadot/api-augment": "^12.4.2", - "@polkadot/types": "^12.4.2", - "@polkadot/util": "^13.1.1", + "@polkadot/api": "14.3.1", + "@polkadot/api-augment": "14.3.1", + "@polkadot/types": "14.3.1", + "@polkadot/util": "13.2.3", "viem": "^2.21.7" }, "devDependencies": { diff --git a/packages/sdk/src/getTransferData/getTransferData.ts b/packages/sdk/src/getTransferData/getTransferData.ts index dce15565..00e07e9f 100644 --- a/packages/sdk/src/getTransferData/getTransferData.ts +++ b/packages/sdk/src/getTransferData/getTransferData.ts @@ -17,7 +17,7 @@ import { validateSovereignAccountBalances, } from './getTransferData.utils'; -export interface GetTransferDataParams { +interface GetTransferDataParams { route: AssetRoute; sourceAddress: string; destinationAddress: string; diff --git a/packages/sdk/src/getTransferData/getTransferData.utils.ts b/packages/sdk/src/getTransferData/getTransferData.utils.ts index 61e6909b..12660347 100644 --- a/packages/sdk/src/getTransferData/getTransferData.utils.ts +++ b/packages/sdk/src/getTransferData/getTransferData.utils.ts @@ -94,7 +94,7 @@ export async function getAssetMin({ if (builder && EvmParachain.isAnyParachain(chain)) { const polkadot = await PolkadotService.create(chain); const min = await polkadot.query( - builder.build({ asset: zero.getMinAssetId() }), + builder.build({ asset: zero.getMinAssetId(), address: zero.address }), ); return zero.copyWith({ amount: min }); diff --git a/packages/sdk/src/services/polkadot/PolkadotService.interfaces.ts b/packages/sdk/src/services/polkadot/PolkadotService.interfaces.ts deleted file mode 100644 index f41b18d0..00000000 --- a/packages/sdk/src/services/polkadot/PolkadotService.interfaces.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { Bytes, Option, Struct, u8 } from '@polkadot/types'; - -export interface AssetMetadata extends Struct { - readonly name: Bytes; - readonly symbol: Bytes; - readonly decimals: u8 | Option; -} diff --git a/packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap b/packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap index 04919784..3aa1409f 100644 --- a/packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap +++ b/packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap @@ -514,6 +514,42 @@ exports[`sdk > getParachainBalances > on 'Moonbase Beta' for address: '0x4E82143 exports[`sdk > getParachainBalances > on 'Moonbeam' for address: '0x4E82143Af671Cc8201Bc7efCBbCED3A69e8…' > should get expected balances 1`] = ` [ + _AssetAmount { + "address": "0xffffffff5d5deb44bf7278dee5381beb24cb6573", + "amount": 0n, + "decimals": 18, + "ids": { + "id": "124105859028862849477017063633156007283", + }, + "key": "wstethe", + "min": undefined, + "originSymbol": "wstETH.e", + "symbol": undefined, + }, + _AssetAmount { + "address": "0xffffffff86829afe1521ad2296719df3ace8ded7", + "amount": 0n, + "decimals": 18, + "ids": { + "id": "178794693648360392906933130845919698647", + }, + "key": "wethe", + "min": undefined, + "originSymbol": "WETH.e", + "symbol": undefined, + }, + _AssetAmount { + "address": "0xffffffff1b4bb1ac5749f73d866ffc91a3432c47", + "amount": 0n, + "decimals": 8, + "ids": { + "id": "36282181791341254438422467838694599751", + }, + "key": "wbtce", + "min": undefined, + "originSymbol": "WBTC.e", + "symbol": undefined, + }, _AssetAmount { "address": "0xCa01a1D0993565291051daFF390892518ACfAD3A", "amount": 0n, diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 53e84712..895d0b89 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,16 @@ # @moonbeam-network/xcm-types +## 2.5.3 + +### Patch Changes + +- [#390](https://github.com/moonbeam-foundation/xcm-sdk/pull/390) [`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix vulnerability + +- [#393](https://github.com/moonbeam-foundation/xcm-sdk/pull/393) [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42) Thanks [@Rihyx](https://github.com/Rihyx)! - fix cross-spawn vulnerability + +- Updated dependencies [[`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072), [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42)]: + - @moonbeam-network/xcm-utils@2.2.3 + ## 2.5.2 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index eeddfa85..6487c323 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/xcm-types", - "version": "2.5.2", + "version": "2.5.3", "description": "Moonbeam XCM Types", "scripts": { "build": "tsup", diff --git a/packages/types/src/chain/Chain.utils.ts b/packages/types/src/chain/Chain.utils.ts index d285aab3..f2d3d1b5 100644 --- a/packages/types/src/chain/Chain.utils.ts +++ b/packages/types/src/chain/Chain.utils.ts @@ -1,7 +1,7 @@ import { type Chain, defineChain } from 'viem'; import type { ChainAsset } from '../asset'; -export interface GetViemChainParams { +interface GetViemChainParams { id: number; name: string; nativeAsset: ChainAsset; diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 6b3ba5d2..aa11519f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @moonbeam-network/xcm-utils +## 2.2.3 + +### Patch Changes + +- [#390](https://github.com/moonbeam-foundation/xcm-sdk/pull/390) [`2790340`](https://github.com/moonbeam-foundation/xcm-sdk/commit/2790340bb8ea0edda13765875d91a3a5d993a072) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix vulnerability + +- [#393](https://github.com/moonbeam-foundation/xcm-sdk/pull/393) [`1546937`](https://github.com/moonbeam-foundation/xcm-sdk/commit/1546937e5636cb6e225a06a8e41c6e6593413c42) Thanks [@Rihyx](https://github.com/Rihyx)! - fix cross-spawn vulnerability + ## 2.2.2 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 3c5040b3..f2e894ad 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/xcm-utils", - "version": "2.2.2", + "version": "2.2.3", "description": "Moonbeam XCM utilities", "scripts": { "build": "tsup", @@ -40,9 +40,9 @@ "@types/big.js": "^6.2.2" }, "peerDependencies": { - "@polkadot/api": "^12.4.2", - "@polkadot/apps-config": "^0.143.2", - "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.1.1" + "@polkadot/api": "14.3.1", + "@polkadot/apps-config": "0.146.1", + "@polkadot/util": "13.2.3", + "@polkadot/util-crypto": "13.2.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 646e65e7..c3d54f40 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,23 +9,23 @@ importers: .: dependencies: '@polkadot/api': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': - specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) + specifier: 0.146.1 + version: 0.146.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: ^12.4.2 - version: 12.4.2 + specifier: 14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.1.1 - version: 13.2.2 + specifier: 13.2.3 + version: 13.2.3 '@polkadot/util-crypto': - specifier: ^13.1.1 - version: 13.2.2(@polkadot/util@13.2.2) + specifier: 13.2.3 + version: 13.2.3(@polkadot/util@13.2.3) '@wormhole-foundation/sdk-connect': specifier: ^0.10.7 version: 0.10.7 @@ -69,6 +69,9 @@ importers: syncpack: specifier: ^13.0.0 version: 13.0.0(typescript@5.6.3) + ts-unused-exports: + specifier: ^10.1.0 + version: 10.1.0(typescript@5.6.3) tsup: specifier: ^8.3.0 version: 8.3.5(postcss@8.4.45)(typescript@5.6.3)(yaml@2.5.1) @@ -129,20 +132,20 @@ importers: specifier: workspace:* version: link:../utils '@polkadot/api': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: ^12.4.2 - version: 12.4.2 + specifier: 14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.1.1 - version: 13.2.2 + specifier: 13.2.3 + version: 13.2.3 '@polkadot/util-crypto': - specifier: ^13.1.1 - version: 13.2.2(@polkadot/util@13.2.2) + specifier: 13.2.3 + version: 13.2.3(@polkadot/util@13.2.3) '@wormhole-foundation/sdk-connect': specifier: ^0.10.7 version: 0.10.8 @@ -168,14 +171,14 @@ importers: specifier: workspace:* version: link:../utils '@polkadot/types': - specifier: ^12.4.2 - version: 12.4.2 + specifier: 14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.1.1 - version: 13.2.2 + specifier: 13.2.3 + version: 13.2.3 '@polkadot/util-crypto': - specifier: ^13.1.1 - version: 13.2.2(@polkadot/util@13.2.2) + specifier: 13.2.3 + version: 13.2.3(@polkadot/util@13.2.3) packages/mrl: dependencies: @@ -195,17 +198,17 @@ importers: specifier: workspace:* version: link:../utils '@polkadot/api': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: ^12.4.2 - version: 12.4.2 + specifier: 14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.1.1 - version: 13.2.2 + specifier: 13.2.3 + version: 13.2.3 '@wormhole-foundation/sdk-connect': specifier: ^0.10.7 version: 0.10.8 @@ -234,17 +237,17 @@ importers: specifier: workspace:* version: link:../utils '@polkadot/api': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: ^12.4.2 - version: 12.4.2 + specifier: 14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.1.1 - version: 13.2.2 + specifier: 13.2.3 + version: 13.2.3 big.js: specifier: ^6.2.1 version: 6.2.1 @@ -278,17 +281,17 @@ importers: packages/utils: dependencies: '@polkadot/api': - specifier: ^12.4.2 - version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 14.3.1 + version: 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': - specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) + specifier: 0.146.1 + version: 0.146.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/util': - specifier: ^13.1.1 - version: 13.1.1 + specifier: 13.2.3 + version: 13.2.3 '@polkadot/util-crypto': - specifier: ^13.1.1 - version: 13.2.2(@polkadot/util@13.1.1) + specifier: 13.2.3 + version: 13.2.3(@polkadot/util@13.2.3) big.js: specifier: ^6.2.1 version: 6.2.1 @@ -1012,9 +1015,10 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@kiltprotocol/type-definitions@0.35.1': - resolution: {integrity: sha512-/8jWy2ZTtWeaB5/5G8Yg0KgrqzyctzRricEnUd61Vn99Edm9S2mfNa77LY5SwGZ9mkYuh1OlqGuk9gUa3uER6g==} - engines: {node: '>=16.0'} + '@kiltprotocol/type-definitions@1.11401.1': + resolution: {integrity: sha512-NlKU8jm/MMCNdxb0WKC/s6rSbwitUkkf+WDMnOcu5yCiBppjnvGArwLsvDr3Z0Ld8HDmad+8316sEVxhtmHaWA==} + peerDependencies: + '@polkadot/types': ^12.2.0 '@laminar/type-definitions@0.3.1': resolution: {integrity: sha512-QWC2qtvbPIxal+gMfUocZmwK0UsD7Sb0RUm4Hallkp+OXXL+3uBLwztYDLS5LtocOn0tfR//sgpnfsEIEb71Lw==} @@ -1203,10 +1207,6 @@ packages: resolution: {integrity: sha512-IAKaCp19QxgOG4HKk9RAgUgC/VNVqymZ2GXfMNOZWImZhxRIbrK+raH5vN2MbWwtVHpjxyXvGsd1RRhnohI33A==} engines: {node: '>=18'} - '@polkadot/api-augment@12.4.2': - resolution: {integrity: sha512-BkG2tQpUUO0iUm65nSqP8hwHkNfN8jQw8apqflJNt9H8EkEL6v7sqwbLvGqtlxM9wzdxbg7lrWp3oHg4rOP31g==} - engines: {node: '>=18'} - '@polkadot/api-augment@14.3.1': resolution: {integrity: sha512-PE6DW+8kRhbnGKn7qCF7yM6eEt/kqrY8bh1i0RZcPY9QgwXW4bZZrtMK4WssX6Z70NTEoOW6xHYIjc7gFZuz8g==} engines: {node: '>=18'} @@ -1223,10 +1223,6 @@ packages: resolution: {integrity: sha512-Okrw5hjtEjqSMOG08J6qqEwlUQujTVClvY1/eZkzKwNzPelWrtV6vqfyJklB7zVhenlxfxqhZKKcY7zWSW/q5Q==} engines: {node: '>=18'} - '@polkadot/api-base@12.4.2': - resolution: {integrity: sha512-XYI7Po8i6C4lYZah7Xo0v7zOAawBUfkmtx0YxsLY/665Sup8oqzEj666xtV9qjBzR9coNhQonIFOn+9fh27Ncw==} - engines: {node: '>=18'} - '@polkadot/api-base@14.3.1': resolution: {integrity: sha512-GZT6rTpT3HYZ/C3rLPjoX3rX3DOxNG/zgts+jKjNrCumAeZkVq5JErKIX8/3f2TVaE2Kbqniy3d1TH/AL4HBPA==} engines: {node: '>=18'} @@ -1243,10 +1239,6 @@ packages: resolution: {integrity: sha512-ef0H0GeCZ4q5Om+c61eLLLL29UxFC2/u/k8V1K2JOIU+2wD5LF7sjAoV09CBMKKHfkLenRckVk2ukm4rBqFRpg==} engines: {node: '>=18'} - '@polkadot/api-derive@12.4.2': - resolution: {integrity: sha512-R0AMANEnqs5AiTaiQX2FXCxUlOibeDSgqlkyG1/0KDsdr6PO/l3dJOgEO+grgAwh4hdqzk4I9uQpdKxG83f2Gw==} - engines: {node: '>=18'} - '@polkadot/api-derive@14.3.1': resolution: {integrity: sha512-PhqUEJCY54vXtIaoYqGUtJY06wHd/K0cBmBz9yCLxp8UZkLoGWhfJRTruI25Jnucf9awS5cZKYqbsoDrL09Oqg==} engines: {node: '>=18'} @@ -1263,10 +1255,6 @@ packages: resolution: {integrity: sha512-YrKWR4TQR5CDyGkF0mloEUo7OsUA+bdtENpJGOtNavzOQUDEbxFE0PVzokzZfVfHhHX2CojPVmtzmmLxztyJkg==} engines: {node: '>=18'} - '@polkadot/api@12.4.2': - resolution: {integrity: sha512-e1KS048471iBWZU10TJNEYOZqLO+8h8ajmVqpaIBOVkamN7tmacBxmHgq0+IA8VrGxjxtYNa1xF5Sqrg76uBEg==} - engines: {node: '>=18'} - '@polkadot/api@14.3.1': resolution: {integrity: sha512-ZBKSXEVJa1S1bnmpnA7KT/fX3sJDIJOdVD9Hp3X+G73yvXzuK5k1Mn5z9bD/AcMs/HAGcbuYU+b9+b9IByH9YQ==} engines: {node: '>=18'} @@ -1279,8 +1267,8 @@ packages: resolution: {integrity: sha512-R3eYFj2JgY1zRb+OCYQxNlJXCs2FA+AU4uIEiVcXnVLmR3M55tkRNEwYAZmiFxx0pQmegGgPMc33q7TWGdw24A==} engines: {node: '>=14.0.0'} - '@polkadot/apps-config@0.143.2': - resolution: {integrity: sha512-b+l1GpJ6x68h3m1hWWeO6dbsPjY/PtR8mdaDjxHt0CuWf3bUpZQLjPUrAHPtpuJ3DxwbJY+ALK1grMA3JeuchQ==} + '@polkadot/apps-config@0.146.1': + resolution: {integrity: sha512-LRQSyuY6M2xS60Zcx2hvGj501EFU6S77fOhp5NOlS2lHCzcH3fWmnKliJO/8HxXrIEn12uV+pxGEh8bkqjM37Q==} engines: {node: '>=18'} '@polkadot/keyring@10.4.2': @@ -1297,13 +1285,6 @@ packages: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2 - '@polkadot/keyring@13.0.2': - resolution: {integrity: sha512-NeLbhyKDT5W8LI9seWTZGePxNTOVpDhv2018HSrEDwJq9Ie0C4TZhUf3KNERCkSveuThXjfQJMs+1CF33ZXPWw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2 - '@polkadot/keyring@13.2.3': resolution: {integrity: sha512-pgTo6DXNXub0wGD+MnVHYhKxf80Jl+QMOCb818ioGdXz++Uw4mTueFAwtB+N7TGo0HafhChUiNJDxFdlDkcAng==} engines: {node: '>=18'} @@ -1344,14 +1325,6 @@ packages: resolution: {integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==} engines: {node: '>=18'} - '@polkadot/networks@13.0.2': - resolution: {integrity: sha512-ABAL+vug/gIwkdFEzeh87JoJd0YKrxSYg/HjUrZ+Zis2ucxQEKpvtCpJ34ku+YrjacBfVqIAkkwd3ZdIPGq9aQ==} - engines: {node: '>=18'} - - '@polkadot/networks@13.2.2': - resolution: {integrity: sha512-di3dLB9BcLQ9ARcDe/nizl7jZZnQbQlxB8kXtAXqTIVFtshtKT+zYcji6dTX7xX9/O9tZB7qnrvuIuI0MkwJ5A==} - engines: {node: '>=18'} - '@polkadot/networks@13.2.3': resolution: {integrity: sha512-mG+zkXg/33AyPrkv2xBbAo3LBUwOwBn6qznBU/4jxiZPnVvCwMaxE7xHM22B5riItbNJ169FXv3wy0v6ZmkFbw==} engines: {node: '>=18'} @@ -1364,8 +1337,8 @@ packages: resolution: {integrity: sha512-8xAmhDW0ry5EKcEjp6VTuwoTm0DdDo/zHsmx88P6sVL87gupuFsL+B6TrsYLl8GcaqxujwrOlKB+CKTUg7qFKg==} engines: {node: '>=14.0.0'} - '@polkadot/react-identicon@3.9.1': - resolution: {integrity: sha512-4cMGPNc3KZdaEqZbrhfvuwPg4jXT29hIadBjKVbyQZAuJzwzcIiFpr9JvQ8fLHE1elFr5dbQqGsHB/iZRyzhyw==} + '@polkadot/react-identicon@3.11.3': + resolution: {integrity: sha512-YnIF85RaMqw2CwxGkACwWtLHA3twL7jQi/IY9njjJYg3QkdyTQclZqFAw0IClYduBI1YIdRjFoob6k+kyNKpqQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/keyring': '*' @@ -1379,10 +1352,6 @@ packages: resolution: {integrity: sha512-iLsWUW4Jcx3DOdVrSHtN0biwxlHuTs4QN2hjJV0gd0jo7W08SXhWabZIf9mDmvUJIbR7Vk+9amzvegjRyIf5+A==} engines: {node: '>=18'} - '@polkadot/rpc-augment@12.4.2': - resolution: {integrity: sha512-IEco5pnso+fYkZNMlMAN5i4XAxdXPv0PZ0HNuWlCwF/MmRvWl8pq5JFtY1FiByHEbeuHwMIUhHM5SDKQ85q9Hg==} - engines: {node: '>=18'} - '@polkadot/rpc-augment@14.3.1': resolution: {integrity: sha512-Z8Hp8fFHwFCiTX0bBCDqCZ4U26wLIJl1NRSjJTsAr+SS68pYZBDGCwhKztpKGqndk1W1akRUaxrkGqYdIFmspQ==} engines: {node: '>=18'} @@ -1399,10 +1368,6 @@ packages: resolution: {integrity: sha512-eoejSHa+/tzHm0vwic62/aptTGbph8vaBpbvLIK7gd00+rT813ROz5ckB1CqQBFB23nHRLuzzX/toY8ID3xrKw==} engines: {node: '>=18'} - '@polkadot/rpc-core@12.4.2': - resolution: {integrity: sha512-yaveqxNcmyluyNgsBT5tpnCa/md0CGbOtRK7K82LWsz7gsbh0x80GBbJrQGxsUybg1gPeZbO1q9IigwA6fY8ag==} - engines: {node: '>=18'} - '@polkadot/rpc-core@14.3.1': resolution: {integrity: sha512-FV2NPhFwFxmX8LqibDcGc6IKTBqmvwr7xwF2OA60Br4cX+AQzMSVpFlfQcETll+0M+LnRhqGKGkP0EQWXaSowA==} engines: {node: '>=18'} @@ -1419,10 +1384,6 @@ packages: resolution: {integrity: sha512-oJ7tatVXYJ0L7NpNiGd69D558HG5y5ZDmH2Bp9Dd4kFTQIiV8A39SlWwWUPCjSsen9lqSvvprNLnG/VHTpenbw==} engines: {node: '>=18'} - '@polkadot/rpc-provider@12.4.2': - resolution: {integrity: sha512-cAhfN937INyxwW1AdjABySdCKhC7QCIONRDHDea1aLpiuxq/w+QwjxauR9fCNGh3lTaAwwnmZ5WfFU2PtkDMGQ==} - engines: {node: '>=18'} - '@polkadot/rpc-provider@14.3.1': resolution: {integrity: sha512-NF/Z/7lzT+jp5LZzC49g+YIjRzXVI0hFag3+B+4zh6E/kKADdF59EHj2Im4LDhRGOnEO9AE4H6/UjNEbZ94JtA==} engines: {node: '>=18'} @@ -1439,10 +1400,6 @@ packages: resolution: {integrity: sha512-TcrLhf95FNFin61qmVgOgayzQB/RqVsSg9thAso1Fh6pX4HSbvI35aGPBAn3SkA6R+9/TmtECirpSNLtIGFn0g==} engines: {node: '>=18'} - '@polkadot/types-augment@12.4.2': - resolution: {integrity: sha512-3fDCOy2BEMuAtMYl4crKg76bv/0pDNEuzpAzV4EBUMIlJwypmjy5sg3gUPCMcA+ckX3xb8DhkWU4ceUdS7T2KQ==} - engines: {node: '>=18'} - '@polkadot/types-augment@14.3.1': resolution: {integrity: sha512-SC4M6TBlgCglNz+gRbvfoVRDz0Vyeev6v0HeAdw0H6ayEW4BXUdo5bFr0092bdS5uTrEPgiSyUry5TJs2KoXig==} engines: {node: '>=18'} @@ -1459,10 +1416,6 @@ packages: resolution: {integrity: sha512-AiQ2Vv2lbZVxEdRCN8XSERiWlOWa2cTDLnpAId78EnCtx4HLKYQSd+Jk9Y4BgO35R79mchK4iG+w6gZ+ukG2bg==} engines: {node: '>=18'} - '@polkadot/types-codec@12.4.2': - resolution: {integrity: sha512-DiPGRFWtVMepD9i05eC3orSbGtpN7un/pXOrXu0oriU+oxLkpvZH68ZsPNtJhKdQy03cAYtvB8elJOFJZYqoqQ==} - engines: {node: '>=18'} - '@polkadot/types-codec@14.3.1': resolution: {integrity: sha512-3y3RBGd+8ebscGbNUOjqUjnRE7hgicgid5LtofHK3O1EDcJQJnYBDkJ7fOAi96CDgHsg+f2FWWkBWEPgpOQoMQ==} engines: {node: '>=18'} @@ -1479,10 +1432,6 @@ packages: resolution: {integrity: sha512-Usn1jqrz35SXgCDAqSXy7mnD6j4RvB4wyzTAZipFA6DGmhwyxxIgOzlWQWDb+1PtPKo9vtMzen5IJ+7w5chIeA==} engines: {node: '>=18'} - '@polkadot/types-create@12.4.2': - resolution: {integrity: sha512-nOpeAKZLdSqNMfzS3waQXgyPPaNt8rUHEmR5+WNv6c/Ke/vyf710wjxiTewfp0wpBgtdrimlgG4DLX1J9Ms1LA==} - engines: {node: '>=18'} - '@polkadot/types-create@14.3.1': resolution: {integrity: sha512-F4EBvF3Zvym0xrkAA5Yz01IAVMepMV3w2Dwd0C9IygEAQ5sYLLPHmf72/aXn+Ag+bSyT2wlJHpDc+nEBXNQ3Gw==} engines: {node: '>=18'} @@ -1499,10 +1448,6 @@ packages: resolution: {integrity: sha512-uHjDW05EavOT5JeU8RbiFWTgPilZ+odsCcuEYIJGmK+es3lk/Qsdns9Zb7U7NJl7eJ6OWmRtyrWsLs+bU+jjIQ==} engines: {node: '>=18'} - '@polkadot/types-known@12.4.2': - resolution: {integrity: sha512-bvhO4KQu/dgPmdwQXsweSMRiRisJ7Bp38lZVEIFykfd2qYyRW3OQEbIPKYpx9raD+fDATU0bTiKQnELrSGhYXw==} - engines: {node: '>=18'} - '@polkadot/types-known@14.3.1': resolution: {integrity: sha512-58b3Yc7+sxwNjs8axmrA9OCgnxmEKIq7XCH2VxSgLqTeqbohVtxwUSCW/l8NPrq1nxzj4J2sopu0PPg8/++q4g==} engines: {node: '>=18'} @@ -1527,10 +1472,6 @@ packages: resolution: {integrity: sha512-4gEPfz36XRQIY7inKq0HXNVVhR6HvXtm7yrEmuBuhM86LE0lQQBkISUSgR358bdn2OFSLMxMoRNoh3kcDvdGDQ==} engines: {node: '>=18'} - '@polkadot/types-support@12.4.2': - resolution: {integrity: sha512-bz6JSt23UEZ2eXgN4ust6z5QF9pO5uNH7UzCP+8I/Nm85ZipeBYj2Wu6pLlE3Hw30hWZpuPxMDOKoEhN5bhLgw==} - engines: {node: '>=18'} - '@polkadot/types-support@14.3.1': resolution: {integrity: sha512-MfVe4iIOJIfBr+gj8Lu8gwIvhnO6gDbG5LeaKAjY6vS6Oh0y5Ztr8NdMIl8ccSpoyt3LqIXjfApeGzHiLzr6bw==} engines: {node: '>=18'} @@ -1547,10 +1488,6 @@ packages: resolution: {integrity: sha512-Hfvg1ZgJlYyzGSAVrDIpp3vullgxrjOlh/CSThd/PI4TTN1qHoPSFm2hs77k3mKkOzg+LrWsLE0P/LP2XddYcw==} engines: {node: '>=18'} - '@polkadot/types@12.4.2': - resolution: {integrity: sha512-ivYtt7hYcRvo69ULb1BJA9BE1uefijXcaR089Dzosr9+sMzvsB1yslNQReOq+Wzq6h6AQj4qex6qVqjWZE6Z4A==} - engines: {node: '>=18'} - '@polkadot/types@14.3.1': resolution: {integrity: sha512-O748XgCLDQYxS5nQ6TJSqW88oC4QNIoNVlWZC2Qq4SmEXuSzaNHQwSVtdyPRJCCc4Oi1DCQvGui4O+EukUl7HA==} engines: {node: '>=18'} @@ -1571,15 +1508,15 @@ packages: resolution: {integrity: sha512-hGLddTiJbvowhhUZJ3k+olmmBc1KAjWIQxujIUIYASih8FQ3/YJDKxaofGOzh0VygOKW3jxQBN2VZPofyDP9KQ==} engines: {node: '>=14.0.0'} - '@polkadot/ui-settings@3.9.1': - resolution: {integrity: sha512-G6WYluS3oE9wiK4KLK1Hi+lr0ZII65x7EcmRoqaR5BBKAr2cBnLAOfBiK5gUchntY7cw1ukXRmcCJmNmCFvwzg==} + '@polkadot/ui-settings@3.11.3': + resolution: {integrity: sha512-VGtv5pGQM9iFWZ9kpU9TD0auDUb01mTp/DACTgG79mo9icK2XK8KUdkMMh70HuhnS5Dnqsgn7nhYuYqVOGAxeQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/networks': '*' '@polkadot/util': '*' - '@polkadot/ui-shared@3.9.1': - resolution: {integrity: sha512-bg7t4NKy2yyuK/0h1ahTJiK2Ooe1b+qNmkPfcY3b96o9lgzPiUPYFLg+pVIS/Cu3lULd0dzZEqi4IPl63tAt+w==} + '@polkadot/ui-shared@3.11.3': + resolution: {integrity: sha512-oK8HCI9//ymQrRMSunUpHXjWXRHwKynSlQphonqmWL2duFWgTKVqGrEbEmeaW5Ps4dzK3w06GYQDj7fhe7BcRg==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1597,12 +1534,6 @@ packages: peerDependencies: '@polkadot/util': 12.6.2 - '@polkadot/util-crypto@13.2.2': - resolution: {integrity: sha512-C4vl07XC43vE6egd9LmSe0uOc7hAvBq6CIoILk5ZB95ABNBQSHOrS1pHugW4rJgVUiZgv8sdl+twmgisuSsSfg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto@13.2.3': resolution: {integrity: sha512-5sbggmLbn5eiuVMyPROPlT5roHRqdKHOfSpioNbGvGIZ1qIWVoC1RfsK0NWJOVGDzy6DpQe0KYT/kgcU5Xsrzw==} engines: {node: '>=18'} @@ -1629,18 +1560,6 @@ packages: resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} engines: {node: '>=18'} - '@polkadot/util@13.0.2': - resolution: {integrity: sha512-/6bS9sfhJLhs8QuqWaR1eRapzfDdGC5XAQZEPL9NN5sTTA7HxWos8rVleai0UERm8QUMabjZ9rK9KpzbXl7ojg==} - engines: {node: '>=18'} - - '@polkadot/util@13.1.1': - resolution: {integrity: sha512-M4iQ5Um8tFdDmD7a96nPzfrEt+kxyWOqQDPqXyaax4QBnq/WCbq0jo8IO61uz55mdMQnGZvq8jd8uge4V6JzzQ==} - engines: {node: '>=18'} - - '@polkadot/util@13.2.2': - resolution: {integrity: sha512-zhsGtR0J2a0ODesJNbCYqEXOL2rhPrmv1F6OB2JMdho7iOrkONck3PZaoT/Y0JF7IlHjGV8K6yrw7k9KUtFrEA==} - engines: {node: '>=18'} - '@polkadot/util@13.2.3': resolution: {integrity: sha512-pioNnsig3qHXrfOKMe4Yqos8B8N3/EZUpS+WfTpWnn1VjYban/0GrTXeavPlAwggnY27b8fS6rBzQBhnVYDw8g==} engines: {node: '>=18'} @@ -1763,12 +1682,6 @@ packages: peerDependencies: '@polkadot/util': '*' - '@polkadot/wasm-util@7.3.2': - resolution: {integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-util@7.4.1': resolution: {integrity: sha512-RAcxNFf3zzpkr+LX/ItAsvj+QyM56TomJ0xjUMo4wKkHjwsxkz4dWJtx5knIgQz/OthqSDMR59VNEycQeNuXzA==} engines: {node: '>=18'} @@ -1783,18 +1696,6 @@ packages: resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} engines: {node: '>=18'} - '@polkadot/x-bigint@13.0.2': - resolution: {integrity: sha512-h2jKT/UaxiEal8LhQeH6+GCjO7GwEqVAD2SNYteCOXff6yNttqAZYJuHZsndbVjVNwqRNf8D5q/zZkD0HUd6xQ==} - engines: {node: '>=18'} - - '@polkadot/x-bigint@13.1.1': - resolution: {integrity: sha512-Cq4Y6fd9UWtRBZz8RX2tWEBL1IFwUtY6cL8p6HC9yhZtUR6OPjKZe6RIZQa9gSOoIuqZWd6PmtvSNGVH32yfkQ==} - engines: {node: '>=18'} - - '@polkadot/x-bigint@13.2.2': - resolution: {integrity: sha512-9ENDfG2wYqABWhQYYrbjJK0aPBvCqVPiFhBiKgIg6OTSJKJToa4Di9R8NxelF8eJTtz7DIvgf6gZY/jnKfbtWw==} - engines: {node: '>=18'} - '@polkadot/x-bigint@13.2.3': resolution: {integrity: sha512-VKgEAh0LsxTd/Hg517Tt5ZU4CySjBwMpaojbkjgv3fOdg1cN7t4eFEUxpyj7mlO0cp22SzDh7nmy4TO98qhLQA==} engines: {node: '>=18'} @@ -1811,10 +1712,6 @@ packages: resolution: {integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==} engines: {node: '>=18'} - '@polkadot/x-fetch@13.0.2': - resolution: {integrity: sha512-B/gf9iriUr6za/Ui7zIFBfHz7UBZ68rJEIteWHx1UHRCZPcLqv+hgpev6xIGrkfFljI0/lI7IwtN2qy6HYzFBg==} - engines: {node: '>=18'} - '@polkadot/x-fetch@13.2.3': resolution: {integrity: sha512-7Nmk+8ieEGzz43nc1rX6nH3rQo6rhGmAaIXJWnXY9gOHY0k1me1bJYbP+xDdh8vcLh8eY3D1sESUwG6QYZW2lg==} engines: {node: '>=18'} @@ -1831,18 +1728,6 @@ packages: resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} engines: {node: '>=18'} - '@polkadot/x-global@13.0.2': - resolution: {integrity: sha512-OoNIXLB5y8vIKpk4R+XmpDPhipNXWSUvEwUnpQT7NAxNLmzgMq1FhbrwBWWPRNHPrQonp7mqxV/X+v5lv1HW/g==} - engines: {node: '>=18'} - - '@polkadot/x-global@13.1.1': - resolution: {integrity: sha512-DViIMmmEs29Qlsp058VTg2Mn7e3/CpGazNnKJrsBa0o1Ptxl13/4Z0fjqCpNi2GB+kaOsnREzxUORrHcU+PqcQ==} - engines: {node: '>=18'} - - '@polkadot/x-global@13.2.2': - resolution: {integrity: sha512-a+iKD7JXxDRtYVo0bp1+HHlaem6MkUHU2yE0cx2e97p9x+IKyNEY58D0L5P66kszLvhFw+t3Jq+qHIj0+2YxkQ==} - engines: {node: '>=18'} - '@polkadot/x-global@13.2.3': resolution: {integrity: sha512-7MYQIAEwBkRcNrgqac5PbB0kNPlI6ISJEy6/Nb+crj8BFjQ8rf11PF49fq0QsvDeuYM1aNLigrvYZNptQs4lbw==} engines: {node: '>=18'} @@ -1866,13 +1751,6 @@ packages: '@polkadot/util': 12.6.2 '@polkadot/wasm-util': '*' - '@polkadot/x-randomvalues@13.2.2': - resolution: {integrity: sha512-1UNImkS5PAaGHeIl2DlMjgt2iN7nlclzwrYhmxd0e9Z11RQqavGqi1a02HGREgnUu+wJ7eHmPMVe6K96+cL+aQ==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': '*' - '@polkadot/x-randomvalues@13.2.3': resolution: {integrity: sha512-Zf0GTfLmVk+VzPUmcQSpXjjmFzMTjPhXoLuIoE7xIu73T+vQ+TX9j7DvorN6bIRsnZ9l1SyTZsSf/NTjNZKIZg==} engines: {node: '>=18'} @@ -1900,18 +1778,6 @@ packages: resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} engines: {node: '>=18'} - '@polkadot/x-textdecoder@13.0.2': - resolution: {integrity: sha512-mauglOkTJxLGmLwLc3J5Jlq/W+SHP53eiy3F8/8JxxfnXrZKgWoQXGpvXYPjFnMZj0MzDSy/6GjyGWnDCgdQFA==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@13.1.1': - resolution: {integrity: sha512-LpZ9KYc6HdBH+i86bCmun4g4GWMiWN/1Pzs0hNdanlQMfqp3UGzl1Dqp0nozMvjWAlvyG7ip235VgNMd8HEbqg==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@13.2.2': - resolution: {integrity: sha512-elpIrgdq22yyvt4fzxwb2IRJEpswPVwizzauRipVy3uUmI/lC2f7D7u9jrC554Xy8UrrAPExX1sWJCxZA8DZ/g==} - engines: {node: '>=18'} - '@polkadot/x-textdecoder@13.2.3': resolution: {integrity: sha512-i8hRXPtGknmdm3FYv6/94I52VXHJZa5sgYNw1+Hqb4Jqmq4awUjea35CKXd/+aw70Qn8Ngg31l2GoiH494fa+Q==} engines: {node: '>=18'} @@ -1932,18 +1798,6 @@ packages: resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} engines: {node: '>=18'} - '@polkadot/x-textencoder@13.0.2': - resolution: {integrity: sha512-Lq08H2OnVXj97uaOwg7tcmRS7a4VJYkHEeWO4FyEMOk6P6lU6W8OVNjjxG0se9PCEgmyZPUDbJI//1ynzP4cXw==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@13.1.1': - resolution: {integrity: sha512-w1mT15B9ptN5CJNgN/A0CmBqD5y9OePjBdU6gmAd8KRhwXCF0MTBKcEZk1dHhXiXtX+28ULJWLrfefC5gxy69Q==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@13.2.2': - resolution: {integrity: sha512-nxlNvK5h0KPCaAE/cx92e8JCPAlmFGbuXC9l03C1Ei1wAnOcWuJWRIk2qOkCEYkpT+G0jITPN4dgk634+pBQSw==} - engines: {node: '>=18'} - '@polkadot/x-textencoder@13.2.3': resolution: {integrity: sha512-wJI3Bb/dC4zyBXJFm5+ZhyBXWoI5wvP8k8qX0/ZC0PQsgSAqs7LVhiofk4Wd94n0P41W5re58LrGXLyziSAshw==} engines: {node: '>=18'} @@ -1964,10 +1818,6 @@ packages: resolution: {integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==} engines: {node: '>=18'} - '@polkadot/x-ws@13.0.2': - resolution: {integrity: sha512-nC5e2eY5D5ZR5teQOB7ib+dWLbmNws86cTz3BjKCalSMBBIn6i3V9ElgABpierBmnSJe9D94EyrH1BxdVfDxUg==} - engines: {node: '>=18'} - '@polkadot/x-ws@13.2.3': resolution: {integrity: sha512-Y6MTAWgcnrnx/LkBx65X3ZyoJH5EFj3tXtflRoKg1+PLHSLuNBV7Wi5mLcE70z4e5c+4hgBbLq+8SqCqzFtSPw==} engines: {node: '>=18'} @@ -2226,9 +2076,6 @@ packages: '@substrate/smoldot-light@0.7.9': resolution: {integrity: sha512-HP8iP7sFYlpSgjjbo0lqHyU+gu9lL2hbDNce6dWk5/10mFFF9jKIFGfui4zCecUY808o/Go9pan/31kMJoLbug==} - '@substrate/ss58-registry@1.50.0': - resolution: {integrity: sha512-mkmlMlcC+MSd9rA+PN8ljGAm5fVZskvVwkXIsbx4NFwaT8kt38r7e9cyDWscG3z2Zn40POviZvEMrJSk+r2SgQ==} - '@substrate/ss58-registry@1.51.0': resolution: {integrity: sha512-TWDurLiPxndFgKjVavCniytBIw+t4ViOi7TYp9h/D0NMmkEc9klFTo+827eyEJ0lELpqO207Ey7uGxUa+BS1jQ==} @@ -2238,9 +2085,6 @@ packages: '@types/bn.js@4.11.6': resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - '@types/bn.js@5.1.5': - resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} - '@types/bn.js@5.1.6': resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==} @@ -2250,6 +2094,9 @@ packages: '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + '@types/node-fetch@2.6.11': resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} @@ -2477,6 +2324,7 @@ packages: bun@1.1.33: resolution: {integrity: sha512-pNcxhsh87TURsaXwwLnOggb1HWdSDgOOjupTuXINmQUZeZ4UzLeVK8h8trzIVA0ECijDex94AkAQ5/JG4r5gkg==} + cpu: [arm64, x64] os: [darwin, linux, win32] hasBin: true @@ -2516,6 +2364,10 @@ packages: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + chalk@5.3.0: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} @@ -2955,6 +2807,10 @@ packages: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + has-own-prop@2.0.0: resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} engines: {node: '>=8'} @@ -3094,6 +2950,10 @@ packages: json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + jsonc-parser@3.3.1: resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} @@ -3252,6 +3112,9 @@ packages: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -3723,6 +3586,10 @@ packages: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + syncpack@13.0.0: resolution: {integrity: sha512-0PIoEWMP2+YkllkcZXw8N9d2sFqpmr8ULBdvms3gc1vG5tnccEMqc6flxHYnF/N+NTTcUnf0J+4xAD5hwH6XGQ==} engines: {node: '>=18.18.0'} @@ -3792,6 +3659,15 @@ packages: ts-toolbelt@9.6.0: resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} + ts-unused-exports@10.1.0: + resolution: {integrity: sha512-QA11Dpwkm5Apfe9s/UkFzHEpbiBxKy0VQ72YRAoqq9VgNbxvvIOcS5Kgm1MCitOec9YU6nf51DEWnmL6jkP2Yg==} + hasBin: true + peerDependencies: + typescript: '>=3.8.3' + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} @@ -3801,11 +3677,8 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - - tslib@2.8.0: - resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} tsup@8.3.5: resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} @@ -4070,9 +3943,9 @@ packages: snapshots: - '@acala-network/type-definitions@5.1.2(@polkadot/types@12.4.2)': + '@acala-network/type-definitions@5.1.2(@polkadot/types@14.3.1)': dependencies: - '@polkadot/types': 12.4.2 + '@polkadot/types': 14.3.1 '@adraffy/ens-normalize@1.10.0': {} @@ -4096,9 +3969,9 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@bifrost-finance/type-definitions@1.11.3(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@bifrost-finance/type-definitions@1.11.3(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@biomejs/biome@1.9.1': optionalDependencies: @@ -4487,17 +4360,9 @@ snapshots: '@darwinia/types@2.8.10': {} - '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': + '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: - '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@polkadot/types': 4.17.1 - transitivePeerDependencies: - - '@polkadot/util' - - '@polkadot/util-crypto' - - '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) '@polkadot/types': 4.17.1 transitivePeerDependencies: - '@polkadot/util' @@ -4711,7 +4576,9 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@kiltprotocol/type-definitions@0.35.1': {} + '@kiltprotocol/type-definitions@1.11401.1(@polkadot/types@14.3.1)': + dependencies: + '@polkadot/types': 14.3.1 '@laminar/type-definitions@0.3.1': dependencies: @@ -4730,9 +4597,9 @@ snapshots: - supports-color - utf-8-validate - '@mangata-finance/type-definitions@2.1.2(@polkadot/types@12.4.2)': + '@mangata-finance/type-definitions@2.1.2(@polkadot/types@14.3.1)': dependencies: - '@polkadot/types': 12.4.2 + '@polkadot/types': 14.3.1 '@manypkg/find-root@1.1.0': dependencies: @@ -4929,21 +4796,7 @@ snapshots: '@polkadot/types-augment': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-augment@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-base': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -4957,7 +4810,7 @@ snapshots: '@polkadot/types-augment': 14.3.1 '@polkadot/types-codec': 14.3.1 '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -4996,19 +4849,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/util': 12.6.2 rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-base@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/util': 13.2.2 - rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5020,7 +4861,7 @@ snapshots: '@polkadot/types': 14.3.1 '@polkadot/util': 13.2.3 rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5060,24 +4901,7 @@ snapshots: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5094,7 +4918,7 @@ snapshots: '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5151,31 +4975,7 @@ snapshots: '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) eventemitter3: 5.0.1 rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/rpc-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/types-known': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5199,7 +4999,7 @@ snapshots: '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) eventemitter3: 5.0.1 rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5252,112 +5052,54 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': - dependencies: - '@acala-network/type-definitions': 5.1.2(@polkadot/types@12.4.2) - '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@crustio/type-definitions': 1.3.0 - '@darwinia/types': 2.8.10 - '@darwinia/types-known': 2.8.10 - '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@docknetwork/node-types': 0.16.0 - '@edgeware/node-types': 3.6.2-wako - '@equilab/definitions': 1.4.18 - '@fragnova/api-augment': 0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@frequency-chain/api-augment': 1.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@interlay/interbtc-types': 1.13.0 - '@kiltprotocol/type-definitions': 0.35.1 - '@laminar/type-definitions': 0.3.1 - '@logion/node-api': 0.27.0-4(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@mangata-finance/type-definitions': 2.1.2(@polkadot/types@12.4.2) - '@metaverse-network-sdk/type-definitions': 0.0.1-16 - '@parallel-finance/type-definitions': 2.0.1 - '@peaqnetwork/type-definitions': 0.0.4 - '@pendulum-chain/type-definitions': 0.3.8 - '@phala/typedefs': 0.2.33 - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/networks': 13.0.2 - '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.0.2 - '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polymeshassociation/polymesh-types': 5.7.0 - '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@sora-substrate/type-definitions': 1.27.7 - '@subsocial/definitions': 0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@zeitgeistpm/type-defs': 1.0.0 - '@zeroio/type-definitions': 0.0.14 - moonbeam-types-bundle: 2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - rxjs: 7.8.1 - tslib: 2.7.0 - transitivePeerDependencies: - - '@polkadot/keyring' - - bufferutil - - encoding - - react - - react-dom - - react-is - - supports-color - - utf-8-validate - - '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': + '@polkadot/apps-config@0.146.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - '@acala-network/type-definitions': 5.1.2(@polkadot/types@12.4.2) - '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@acala-network/type-definitions': 5.1.2(@polkadot/types@14.3.1) + '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@crustio/type-definitions': 1.3.0 '@darwinia/types': 2.8.10 '@darwinia/types-known': 2.8.10 - '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) '@docknetwork/node-types': 0.16.0 '@edgeware/node-types': 3.6.2-wako '@equilab/definitions': 1.4.18 '@fragnova/api-augment': 0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@frequency-chain/api-augment': 1.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@interlay/interbtc-types': 1.13.0 - '@kiltprotocol/type-definitions': 0.35.1 + '@kiltprotocol/type-definitions': 1.11401.1(@polkadot/types@14.3.1) '@laminar/type-definitions': 0.3.1 '@logion/node-api': 0.27.0-4(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@mangata-finance/type-definitions': 2.1.2(@polkadot/types@12.4.2) + '@mangata-finance/type-definitions': 2.1.2(@polkadot/types@14.3.1) '@metaverse-network-sdk/type-definitions': 0.0.1-16 '@parallel-finance/type-definitions': 2.0.1 '@peaqnetwork/type-definitions': 0.0.4 '@pendulum-chain/type-definitions': 0.3.8 '@phala/typedefs': 0.2.33 - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/networks': 13.0.2 - '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.0.2 - '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/networks': 13.2.3 + '@polkadot/react-identicon': 3.11.3(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(@polkadot/networks@13.2.3)(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) + '@polkadot/types': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) + '@polkadot/x-fetch': 13.2.3 + '@polkadot/x-ws': 13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polymeshassociation/polymesh-types': 5.7.0 - '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) '@sora-substrate/type-definitions': 1.27.7 '@subsocial/definitions': 0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) - '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) + '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) + '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) + '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) + '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) '@zeitgeistpm/type-defs': 1.0.0 '@zeroio/type-definitions': 0.0.14 moonbeam-types-bundle: 2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - '@polkadot/keyring' - bufferutil @@ -5378,67 +5120,31 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - tslib: 2.8.0 - - '@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - tslib: 2.7.0 - - '@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1)': - dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) - tslib: 2.8.0 - - '@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - tslib: 2.8.0 + tslib: 2.8.1 - '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': + '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) - - '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - - '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': - dependencies: - '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) - - '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': + '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': + '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) '@polkadot/keyring@8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1)': dependencies: @@ -5464,25 +5170,13 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@substrate/ss58-registry': 1.51.0 - tslib: 2.8.0 - - '@polkadot/networks@13.0.2': - dependencies: - '@polkadot/util': 13.0.2 - '@substrate/ss58-registry': 1.50.0 - tslib: 2.8.0 - - '@polkadot/networks@13.2.2': - dependencies: - '@polkadot/util': 13.2.2 - '@substrate/ss58-registry': 1.51.0 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/networks@13.2.3': dependencies: '@polkadot/util': 13.2.3 '@substrate/ss58-registry': 1.51.0 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/networks@6.11.1': dependencies: @@ -5494,31 +5188,13 @@ snapshots: '@polkadot/util': 8.7.1 '@substrate/ss58-registry': 1.51.0 - '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': + '@polkadot/react-identicon@3.11.3(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(@polkadot/networks@13.2.3)(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) - '@polkadot/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2) - '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) - ethereum-blockies-base64: 1.0.2 - jdenticon: 3.2.0 - react: 18.3.1 - react-copy-to-clipboard: 5.1.0(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-is: 16.13.1 - styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - tslib: 2.8.0 - transitivePeerDependencies: - - '@polkadot/networks' - - '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': - dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2) - '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) + '@polkadot/ui-settings': 3.11.3(@polkadot/networks@13.2.3)(@polkadot/util@13.2.3) + '@polkadot/ui-shared': 3.11.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) ethereum-blockies-base64: 1.0.2 jdenticon: 3.2.0 react: 18.3.1 @@ -5526,7 +5202,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - '@polkadot/networks' @@ -5536,19 +5212,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-augment@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5560,7 +5224,7 @@ snapshots: '@polkadot/types': 14.3.1 '@polkadot/types-codec': 14.3.1 '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5596,20 +5260,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/util': 12.6.2 rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-core@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 - '@polkadot/util': 13.2.2 - rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5622,7 +5273,7 @@ snapshots: '@polkadot/types': 14.3.1 '@polkadot/util': 13.2.3 rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color @@ -5666,7 +5317,7 @@ snapshots: eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 - tslib: 2.8.0 + tslib: 2.8.1 optionalDependencies: '@substrate/connect': 0.8.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -5674,27 +5325,6 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': 12.4.2 - '@polkadot/types-support': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.0.2 - '@polkadot/x-global': 13.0.2 - '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.5 - tslib: 2.7.0 - optionalDependencies: - '@substrate/connect': 0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - '@polkadot/rpc-provider@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) @@ -5708,7 +5338,7 @@ snapshots: eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 - tslib: 2.8.0 + tslib: 2.8.1 optionalDependencies: '@substrate/connect': 0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -5761,21 +5391,14 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-augment@12.4.2': - dependencies: - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.7.0 + tslib: 2.8.1 '@polkadot/types-augment@14.3.1': dependencies: '@polkadot/types': 14.3.1 '@polkadot/types-codec': 14.3.1 '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-augment@7.15.1': dependencies: @@ -5795,19 +5418,13 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@polkadot/x-bigint': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-codec@12.4.2': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/x-bigint': 13.0.2 - tslib: 2.7.0 + tslib: 2.8.1 '@polkadot/types-codec@14.3.1': dependencies: '@polkadot/util': 13.2.3 '@polkadot/x-bigint': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-codec@7.15.1': dependencies: @@ -5824,19 +5441,13 @@ snapshots: dependencies: '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-create@12.4.2': - dependencies: - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.7.0 + tslib: 2.8.1 '@polkadot/types-create@14.3.1': dependencies: '@polkadot/types-codec': 14.3.1 '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-create@7.15.1': dependencies: @@ -5857,16 +5468,7 @@ snapshots: '@polkadot/types-codec': 10.13.1 '@polkadot/types-create': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-known@12.4.2': - dependencies: - '@polkadot/networks': 13.0.2 - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.7.0 + tslib: 2.8.1 '@polkadot/types-known@14.3.1': dependencies: @@ -5875,7 +5477,7 @@ snapshots: '@polkadot/types-codec': 14.3.1 '@polkadot/types-create': 14.3.1 '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-known@4.17.1': dependencies: @@ -5912,17 +5514,12 @@ snapshots: '@polkadot/types-support@10.13.1': dependencies: '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-support@12.4.2': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-support@14.3.1': dependencies: '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types-support@7.15.1': dependencies: @@ -5943,18 +5540,7 @@ snapshots: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 - tslib: 2.8.0 - - '@polkadot/types@12.4.2': - dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.1 '@polkadot/types@14.3.1': dependencies: @@ -5965,7 +5551,7 @@ snapshots: '@polkadot/util': 13.2.3 '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/types@4.17.1': dependencies: @@ -6005,27 +5591,20 @@ snapshots: '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) rxjs: 7.8.1 - '@polkadot/ui-settings@3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2)': + '@polkadot/ui-settings@3.11.3(@polkadot/networks@13.2.3)(@polkadot/util@13.2.3)': dependencies: - '@polkadot/networks': 13.0.2 - '@polkadot/util': 13.2.2 + '@polkadot/networks': 13.2.3 + '@polkadot/util': 13.2.3 eventemitter3: 5.0.1 store: 2.0.12 - tslib: 2.8.0 + tslib: 2.8.1 - '@polkadot/ui-shared@3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': + '@polkadot/ui-shared@3.11.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) - colord: 2.9.3 - tslib: 2.8.0 - - '@polkadot/ui-shared@3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/util': 13.2.3 + '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) colord: 2.9.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2)': dependencies: @@ -6047,38 +5626,12 @@ snapshots: '@noble/hashes': 1.5.0 '@polkadot/networks': 12.6.2 '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) - '@scure/base': 1.1.8 - tslib: 2.8.0 - - '@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1)': - dependencies: - '@noble/curves': 1.6.0 - '@noble/hashes': 1.5.0 - '@polkadot/networks': 13.2.2 - '@polkadot/util': 13.1.1 - '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/x-bigint': 13.2.2 - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) '@scure/base': 1.1.8 - tslib: 2.8.0 - - '@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2)': - dependencies: - '@noble/curves': 1.6.0 - '@noble/hashes': 1.5.0 - '@polkadot/networks': 13.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-bigint': 13.2.2 - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - '@scure/base': 1.1.8 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3)': dependencies: @@ -6091,7 +5644,7 @@ snapshots: '@polkadot/x-bigint': 13.2.3 '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) '@scure/base': 1.1.8 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/util-crypto@6.11.1(@polkadot/util@6.11.1)': dependencies: @@ -6144,37 +5697,7 @@ snapshots: '@polkadot/x-textencoder': 12.6.2 '@types/bn.js': 5.1.6 bn.js: 5.2.1 - tslib: 2.8.0 - - '@polkadot/util@13.0.2': - dependencies: - '@polkadot/x-bigint': 13.0.2 - '@polkadot/x-global': 13.0.2 - '@polkadot/x-textdecoder': 13.0.2 - '@polkadot/x-textencoder': 13.0.2 - '@types/bn.js': 5.1.5 - bn.js: 5.2.1 - tslib: 2.7.0 - - '@polkadot/util@13.1.1': - dependencies: - '@polkadot/x-bigint': 13.1.1 - '@polkadot/x-global': 13.1.1 - '@polkadot/x-textdecoder': 13.1.1 - '@polkadot/x-textencoder': 13.1.1 - '@types/bn.js': 5.1.5 - bn.js: 5.2.1 - tslib: 2.7.0 - - '@polkadot/util@13.2.2': - dependencies: - '@polkadot/x-bigint': 13.2.2 - '@polkadot/x-global': 13.2.2 - '@polkadot/x-textdecoder': 13.2.2 - '@polkadot/x-textencoder': 13.2.2 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/util@13.2.3': dependencies: @@ -6184,7 +5707,7 @@ snapshots: '@polkadot/x-textencoder': 13.2.3 '@types/bn.js': 5.1.6 bn.js: 5.2.1 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/util@6.11.1': dependencies: @@ -6213,33 +5736,19 @@ snapshots: '@polkadot/util': 10.4.2 '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-bridge@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)))': + '@polkadot/wasm-bridge@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: '@polkadot/util': 12.6.2 '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) - tslib: 2.8.0 - - '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': - dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) - tslib: 2.8.0 - - '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - tslib: 2.8.0 + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) + tslib: 2.8.1 '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: '@polkadot/util': 13.2.3 '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@6.11.1)': dependencies: @@ -6259,22 +5768,12 @@ snapshots: '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@12.6.2)': dependencies: '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.1.1)': - dependencies: - '@polkadot/util': 13.1.1 - tslib: 2.8.0 - - '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.2.3)': dependencies: '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto-init@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': dependencies: @@ -6285,35 +5784,15 @@ snapshots: '@polkadot/wasm-crypto-wasm': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)))': + '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@12.6.2) '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@12.6.2) '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': - dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - tslib: 2.8.0 + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) + tslib: 2.8.1 '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: @@ -6323,7 +5802,7 @@ snapshots: '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.3) '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@6.11.1)': dependencies: @@ -6345,25 +5824,13 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.1.1)': - dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.2.3)': dependencies: '@polkadot/util': 13.2.3 '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-crypto@4.6.1(@polkadot/util@6.11.1)(@polkadot/x-randomvalues@6.11.1)': dependencies: @@ -6392,38 +5859,16 @@ snapshots: '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-crypto@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)))': + '@polkadot/wasm-crypto@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@12.6.2) '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': - dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - tslib: 2.8.0 + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) + tslib: 2.8.1 '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': dependencies: @@ -6434,37 +5879,22 @@ snapshots: '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.3) '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-util@6.4.1(@polkadot/util@10.4.2)': dependencies: '@babel/runtime': 7.25.6 '@polkadot/util': 10.4.2 - '@polkadot/wasm-util@7.3.2(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - '@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)': dependencies: '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)': - dependencies: - '@polkadot/util': 13.1.1 - tslib: 2.8.0 - - '@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)': dependencies: '@polkadot/util': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-bigint@10.4.2': dependencies: @@ -6474,27 +5904,12 @@ snapshots: '@polkadot/x-bigint@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-bigint@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - tslib: 2.7.0 - - '@polkadot/x-bigint@13.1.1': - dependencies: - '@polkadot/x-global': 13.1.1 - tslib: 2.7.0 - - '@polkadot/x-bigint@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-bigint@13.2.3': dependencies: '@polkadot/x-global': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-bigint@8.7.1': dependencies: @@ -6512,19 +5927,13 @@ snapshots: dependencies: '@polkadot/x-global': 12.6.2 node-fetch: 3.3.2 - tslib: 2.8.0 - - '@polkadot/x-fetch@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - node-fetch: 3.3.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-fetch@13.2.3': dependencies: '@polkadot/x-global': 13.2.3 node-fetch: 3.3.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-fetch@8.7.1': dependencies: @@ -6541,23 +5950,11 @@ snapshots: '@polkadot/x-global@12.6.2': dependencies: - tslib: 2.8.0 - - '@polkadot/x-global@13.0.2': - dependencies: - tslib: 2.7.0 - - '@polkadot/x-global@13.1.1': - dependencies: - tslib: 2.7.0 - - '@polkadot/x-global@13.2.2': - dependencies: - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-global@13.2.3': dependencies: - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-global@6.11.1': dependencies: @@ -6572,33 +5969,19 @@ snapshots: '@babel/runtime': 7.25.6 '@polkadot/x-global': 10.4.2 - '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))': + '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))': - dependencies: - '@polkadot/util': 13.1.1 '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 - - '@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 + '@polkadot/x-global': 12.6.2 + tslib: 2.8.1 '@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))': dependencies: '@polkadot/util': 13.2.3 '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) '@polkadot/x-global': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-randomvalues@6.11.1': dependencies: @@ -6623,27 +6006,12 @@ snapshots: '@polkadot/x-textdecoder@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-textdecoder@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - tslib: 2.7.0 - - '@polkadot/x-textdecoder@13.1.1': - dependencies: - '@polkadot/x-global': 13.1.1 - tslib: 2.7.0 - - '@polkadot/x-textdecoder@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-textdecoder@13.2.3': dependencies: '@polkadot/x-global': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-textdecoder@6.11.1': dependencies: @@ -6663,27 +6031,12 @@ snapshots: '@polkadot/x-textencoder@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-textencoder@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - tslib: 2.7.0 - - '@polkadot/x-textencoder@13.1.1': - dependencies: - '@polkadot/x-global': 13.1.1 - tslib: 2.7.0 - - '@polkadot/x-textencoder@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-textencoder@13.2.3': dependencies: '@polkadot/x-global': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 '@polkadot/x-textencoder@6.11.1': dependencies: @@ -6707,16 +6060,7 @@ snapshots: '@polkadot/x-ws@12.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@polkadot/x-ws@13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/x-global': 13.0.2 - tslib: 2.8.0 + tslib: 2.8.1 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -6725,7 +6069,7 @@ snapshots: '@polkadot/x-ws@13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/x-global': 13.2.3 - tslib: 2.8.0 + tslib: 2.8.1 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -6873,21 +6217,10 @@ snapshots: transitivePeerDependencies: - debug - '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/api': 7.15.1 - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@polkadot/types': 7.15.1 - transitivePeerDependencies: - - '@polkadot/util' - - '@polkadot/util-crypto' - - encoding - - supports-color - - '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': + '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': dependencies: '@polkadot/api': 7.15.1 - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) '@polkadot/types': 7.15.1 transitivePeerDependencies: - '@polkadot/util' @@ -6997,8 +6330,6 @@ snapshots: - utf-8-validate optional: true - '@substrate/ss58-registry@1.50.0': {} - '@substrate/ss58-registry@1.51.0': {} '@types/big.js@6.2.2': {} @@ -7007,10 +6338,6 @@ snapshots: dependencies: '@types/node': 22.5.4 - '@types/bn.js@5.1.5': - dependencies: - '@types/node': 22.5.4 - '@types/bn.js@5.1.6': dependencies: '@types/node': 22.5.4 @@ -7019,6 +6346,8 @@ snapshots: '@types/estree@1.0.6': {} + '@types/json5@0.0.29': {} + '@types/node-fetch@2.6.11': dependencies: '@types/node': 22.5.4 @@ -7044,25 +6373,25 @@ snapshots: dependencies: '@types/node': 22.5.4 - '@unique-nft/opal-testnet-types@1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2)': + '@unique-nft/opal-testnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.3.1 - '@unique-nft/quartz-mainnet-types@1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2)': + '@unique-nft/quartz-mainnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.3.1 - '@unique-nft/sapphire-mainnet-types@1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2)': + '@unique-nft/sapphire-mainnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.3.1 - '@unique-nft/unique-mainnet-types@1001.63.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2)': + '@unique-nft/unique-mainnet-types@1001.63.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': dependencies: - '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 12.4.2 + '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.3.1 '@vitest/expect@2.1.4': dependencies: @@ -7314,6 +6643,11 @@ snapshots: escape-string-regexp: 1.0.5 supports-color: 5.5.0 + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + chalk@5.3.0: {} chardet@0.7.0: {} @@ -7846,6 +7180,8 @@ snapshots: has-flag@3.0.0: {} + has-flag@4.0.0: {} + has-own-prop@2.0.0: {} hash-base@3.1.0: @@ -7961,6 +7297,10 @@ snapshots: json-stringify-safe@5.0.1: {} + json5@1.0.2: + dependencies: + minimist: 1.2.8 + jsonc-parser@3.3.1: {} jsonfile@4.0.0: @@ -8095,6 +7435,8 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimist@1.2.8: {} + minipass@7.1.2: {} mock-socket@9.3.1: {} @@ -8248,18 +7590,9 @@ snapshots: pnglib@0.0.1: {} - pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2): - dependencies: - '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.2.2) - '@polkadot/types': 6.12.1 - typescript: 4.9.5 - transitivePeerDependencies: - - '@polkadot/util' - - '@polkadot/util-crypto' - - pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2): + pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3): dependencies: - '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) '@polkadot/types': 6.12.1 typescript: 4.9.5 transitivePeerDependencies: @@ -8278,7 +7611,7 @@ snapshots: postcss@8.4.38: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 postcss@8.4.45: @@ -8428,7 +7761,7 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.7.0 + tslib: 2.8.1 safe-buffer@5.2.1: {} @@ -8577,6 +7910,10 @@ snapshots: dependencies: has-flag: 3.0.0 + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + syncpack@13.0.0(typescript@5.6.3): dependencies: '@effect/schema': 0.71.1(effect@3.6.5) @@ -8649,15 +7986,26 @@ snapshots: ts-toolbelt@9.6.0: {} + ts-unused-exports@10.1.0(typescript@5.6.3): + dependencies: + chalk: 4.1.2 + tsconfig-paths: 3.15.0 + typescript: 5.6.3 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + tslib@1.14.1: {} tslib@2.4.0: {} tslib@2.6.2: {} - tslib@2.7.0: {} - - tslib@2.8.0: {} + tslib@2.8.1: {} tsup@8.3.5(postcss@8.4.45)(typescript@5.6.3)(yaml@2.5.1): dependencies: