diff --git a/.vscode/settings.json b/.vscode/settings.json index 761b6f50..2cafdf41 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -72,6 +72,7 @@ "teer", "tinkernet", "tnkr", + "tokenbridge", "usdc", "usdcwh", "usdt", diff --git a/package.json b/package.json index 3a415d4b..76053aa7 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,8 @@ "@polkadot/util": "^13.0.2", "@polkadot/util-crypto": "^13.0.2", "@wormhole-foundation/sdk-connect": "^0.10.7", - "@wormhole-foundation/sdk-evm": "^0.10.7" + "@wormhole-foundation/sdk-evm": "^0.10.7", + "@wormhole-foundation/sdk-evm-tokenbridge": "^0.10.7" }, "devDependencies": { "@biomejs/biome": "^1.9.1", diff --git a/packages/config/src/chains.ts b/packages/config/src/chains.ts index e801f6f4..f55b420f 100644 --- a/packages/config/src/chains.ts +++ b/packages/config/src/chains.ts @@ -460,6 +460,11 @@ export const fantomTestnet = new EvmChain({ ChainAsset.fromAsset(ftm, { decimals: 18, }), + // TODO should be WGLMR + ChainAsset.fromAsset(dev, { + address: '0x41E3CFDFC255A4bF3C8D3560Bc8D3D9b5080338e', + decimals: 18, + }), ], ecosystem: Ecosystem.AlphanetRelay, explorer: 'https://testnet.ftmscan.com', diff --git a/packages/config/src/mrl-configs/fantomTestnet.ts b/packages/config/src/mrl-configs/fantomTestnet.ts index a728ce44..803b26ff 100644 --- a/packages/config/src/mrl-configs/fantomTestnet.ts +++ b/packages/config/src/mrl-configs/fantomTestnet.ts @@ -1,6 +1,6 @@ import { BalanceBuilder, MrlBuilder } from '@moonbeam-network/xcm-builder'; import { dev, ftm, ftmwh } from '../assets'; -import { fantomTestnet, peaqAlphanet } from '../chains'; +import { fantomTestnet, moonbaseAlpha, peaqAlphanet } from '../chains'; import { ChainRoutes } from '../types/ChainRoutes'; export const fantomTestnetRoutes = new ChainRoutes({ @@ -24,13 +24,78 @@ export const fantomTestnetRoutes = new ChainRoutes({ amount: 0.01, }, }, + mrl: { + isAutomatic: false, // TODO should be isAutomaticPossible + transfer: MrlBuilder().wormhole().wormhole().tokenTransfer(), + moonChain: { + asset: ftmwh, + fee: { + asset: dev, + amount: 0.1, + balance: BalanceBuilder().substrate().system().account(), + }, + }, + }, + }, + { + source: { + asset: ftm, + balance: BalanceBuilder().evm().native(), + destinationFee: { + asset: ftm, + balance: BalanceBuilder().evm().native(), + }, + }, + destination: { + asset: ftmwh, + chain: moonbaseAlpha, + balance: BalanceBuilder().evm().erc20(), + fee: { + asset: ftmwh, + amount: 0, + }, + }, + mrl: { + isAutomatic: false, + transfer: MrlBuilder().wormhole().wormhole().tokenTransfer(), + moonChain: { + asset: ftmwh, + fee: { + asset: dev, + amount: 0.1, + balance: BalanceBuilder().substrate().system().account(), + }, + }, + }, + }, + { + source: { + asset: dev, + balance: BalanceBuilder().evm().erc20(), + destinationFee: { + asset: dev, + balance: BalanceBuilder().evm().erc20(), + }, + }, + destination: { + asset: dev, + chain: moonbaseAlpha, + balance: BalanceBuilder().substrate().system().account(), + fee: { + asset: dev, + amount: 0, + }, + }, mrl: { isAutomatic: false, transfer: MrlBuilder().wormhole().wormhole().tokenTransfer(), - moonChainFee: { + moonChain: { asset: dev, - amount: 0.1, - balance: BalanceBuilder().substrate().system().account(), + fee: { + asset: dev, + amount: 0.1, + balance: BalanceBuilder().substrate().system().account(), + }, }, }, }, diff --git a/packages/config/src/types/AssetRoute.ts b/packages/config/src/types/AssetRoute.ts index 8f7d5f4a..31895dc5 100644 --- a/packages/config/src/types/AssetRoute.ts +++ b/packages/config/src/types/AssetRoute.ts @@ -48,7 +48,7 @@ export interface FeeConfig { export interface MrlConfig { isAutomatic: boolean; transfer: MrlConfigBuilder; - moonChainFee: MoonChainFeeConfig; + moonChain: MoonChainConfig; } export interface DestinationFeeConfig @@ -56,6 +56,11 @@ export interface DestinationFeeConfig amount: number | FeeConfigBuilder; } +export interface MoonChainConfig { + asset: Asset; + fee: MoonChainFeeConfig; +} + export interface MoonChainFeeConfig extends FeeConfig { amount: number | FeeConfigBuilder; } diff --git a/packages/mrl/src/getTransferData/getMoonChainData.ts b/packages/mrl/src/getTransferData/getMoonChainData.ts index c426a73a..24d2b6cb 100644 --- a/packages/mrl/src/getTransferData/getMoonChainData.ts +++ b/packages/mrl/src/getTransferData/getMoonChainData.ts @@ -25,7 +25,7 @@ export async function getMoonChainData({ } const moonChain = getMoonChain(route.source.chain); - const asset = moonChain.getChainAsset(route.source.asset); + const asset = moonChain.getChainAsset(route.mrl.moonChain.asset); const isDestinationMoonChain = route.destination.chain.isEqual(moonChain); if (isDestinationMoonChain) { @@ -39,7 +39,7 @@ export async function getMoonChainData({ const fee = await getDestinationFee({ asset, chain: moonChain, - fee: route.mrl.moonChainFee.amount, + fee: route.mrl.moonChain.fee.amount, }); let address = sourceAddress; @@ -57,7 +57,7 @@ export async function getMoonChainData({ const balance = await getBalance({ address, asset, - builder: route.mrl.moonChainFee.balance, + builder: route.mrl.moonChain.fee.balance, chain: moonChain, }); diff --git a/packages/mrl/src/getTransferData/getSourceData.ts b/packages/mrl/src/getTransferData/getSourceData.ts index 6f971303..4c7f4160 100644 --- a/packages/mrl/src/getTransferData/getSourceData.ts +++ b/packages/mrl/src/getTransferData/getSourceData.ts @@ -44,7 +44,6 @@ export async function getSourceData({ } const source = route.source.chain; - const destination = route.destination.chain; const asset = source.getChainAsset(route.source.asset); const feeAsset = route.source.fee ? source.getChainAsset(route.source.fee.asset) @@ -71,7 +70,7 @@ export async function getSourceData({ sourceAddress, }); - const existentialDeposit = await getExistentialDeposit(destination); + const existentialDeposit = await getExistentialDeposit(source); const min = await getAssetMin({ asset, builder: route.source.min, diff --git a/packages/mrl/src/services/wormhole/WormholeService.ts b/packages/mrl/src/services/wormhole/WormholeService.ts index 305ea638..1d852096 100644 --- a/packages/mrl/src/services/wormhole/WormholeService.ts +++ b/packages/mrl/src/services/wormhole/WormholeService.ts @@ -2,6 +2,7 @@ import { type WormholeConfig, wormholeFactory, } from '@moonbeam-network/xcm-builder'; +import '@wormhole-foundation/sdk-evm-tokenbridge'; import type { EvmSigner } from '@moonbeam-network/xcm-sdk'; import type { EvmChain, EvmParachain } from '@moonbeam-network/xcm-types'; import { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index facda147..a4a24310 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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) + version: 0.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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/types': specifier: ^12.4.2 version: 12.4.2 @@ -32,6 +32,9 @@ importers: '@wormhole-foundation/sdk-evm': specifier: ^0.10.7 version: 0.10.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@wormhole-foundation/sdk-evm-tokenbridge': + specifier: ^0.10.7 + version: 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) devDependencies: '@biomejs/biome': specifier: ^1.9.1 @@ -279,7 +282,7 @@ importers: version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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) + version: 0.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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/util': specifier: ^13.0.2 version: 13.0.2 @@ -1204,8 +1207,8 @@ packages: resolution: {integrity: sha512-BkG2tQpUUO0iUm65nSqP8hwHkNfN8jQw8apqflJNt9H8EkEL6v7sqwbLvGqtlxM9wzdxbg7lrWp3oHg4rOP31g==} engines: {node: '>=18'} - '@polkadot/api-augment@13.0.1': - resolution: {integrity: sha512-r5R2U8PSPNGBsz+HxZ1JYq/KkDSnDh1aBb+H16wKj2uByXKhedpuGt/z1Myvhfm084ccTloZjXDbfpSdYBLi4Q==} + '@polkadot/api-augment@13.2.1': + resolution: {integrity: sha512-NTkI+/Hm48eWc/4Ojh/5elxnjnow5ptXK97IZdkWAe7mWi9hJR05Uq5lGt/T/57E9LSRWEuYje8cIDS3jbbAAw==} engines: {node: '>=18'} '@polkadot/api-augment@7.15.1': @@ -1224,8 +1227,8 @@ packages: resolution: {integrity: sha512-XYI7Po8i6C4lYZah7Xo0v7zOAawBUfkmtx0YxsLY/665Sup8oqzEj666xtV9qjBzR9coNhQonIFOn+9fh27Ncw==} engines: {node: '>=18'} - '@polkadot/api-base@13.0.1': - resolution: {integrity: sha512-TDkgcSZLd3YQ3j9Zx6coEEiBazaK6y3CboaIuUbPNxR9DchlVdIJWSm/1Agh76opsEABK9SjDfsWzVw0TStidA==} + '@polkadot/api-base@13.2.1': + resolution: {integrity: sha512-00twdIjTjzdYNdU19i2YKLoWBmf2Yr6b3qrvqIVScHipUkKMbfFBgoPRB5FtcviBbEvLurgfyzHklwnrbWo8GQ==} engines: {node: '>=18'} '@polkadot/api-base@7.15.1': @@ -1244,8 +1247,8 @@ packages: resolution: {integrity: sha512-R0AMANEnqs5AiTaiQX2FXCxUlOibeDSgqlkyG1/0KDsdr6PO/l3dJOgEO+grgAwh4hdqzk4I9uQpdKxG83f2Gw==} engines: {node: '>=18'} - '@polkadot/api-derive@13.0.1': - resolution: {integrity: sha512-TiPSFp6l9ks0HLJoEWHyqKKz28eoWz3xqglFG10As0udU8J1u8trPyr+SLWHT0DVsto3u9CP+OneWWMA7fTlCw==} + '@polkadot/api-derive@13.2.1': + resolution: {integrity: sha512-npxvS0kYcSFqmYv2G8QKWAJwFhIv/MBuGU0bV7cGP9K1A3j2Do3yYjvN1dTtY20jBavWNwmWFdXBV6/TRRsgmg==} engines: {node: '>=18'} '@polkadot/api-derive@7.15.1': @@ -1264,8 +1267,8 @@ packages: resolution: {integrity: sha512-e1KS048471iBWZU10TJNEYOZqLO+8h8ajmVqpaIBOVkamN7tmacBxmHgq0+IA8VrGxjxtYNa1xF5Sqrg76uBEg==} engines: {node: '>=18'} - '@polkadot/api@13.0.1': - resolution: {integrity: sha512-st+Y5I8+7/3PCtO651viU4C7PcbDZJHB93acPjqCGzpekwrxOmnBEsupw8CcJwyRVzj/7qMadkSd0b/Uc8JqIA==} + '@polkadot/api@13.2.1': + resolution: {integrity: sha512-QvgKD3/q6KIU3ZuNYFJUNc6B8bGBoqeMF+iaPxJn3Twhh4iVD5XIymD5fVszSqiL1uPXMhzcWecjwE8rDidBoQ==} engines: {node: '>=18'} '@polkadot/api@7.15.1': @@ -1301,6 +1304,13 @@ packages: '@polkadot/util': 13.0.2 '@polkadot/util-crypto': 13.0.2 + '@polkadot/keyring@13.1.1': + resolution: {integrity: sha512-Wm+9gn946GIPjGzvueObLGBBS9s541HE6mvKdWGEmPFMzH93ESN931RZlOd67my5MWryiSP05h5SHTp7bSaQTA==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1 + '@polkadot/keyring@6.11.1': resolution: {integrity: sha512-rW8INl7pO6Dmaffd6Df1yAYCRWa2RmWQ0LGfJeA/M6seVIkI6J3opZqAd4q2Op+h9a7z4TESQGk8yggOEL+Csg==} engines: {node: '>=14.0.0'} @@ -1338,6 +1348,10 @@ packages: resolution: {integrity: sha512-ABAL+vug/gIwkdFEzeh87JoJd0YKrxSYg/HjUrZ+Zis2ucxQEKpvtCpJ34ku+YrjacBfVqIAkkwd3ZdIPGq9aQ==} engines: {node: '>=18'} + '@polkadot/networks@13.1.1': + resolution: {integrity: sha512-eEQ4+Mfl1xFtApeU5PdXZ2XBhxNSvUz9yW+YQVGUCkXRjWFbqNRsTOYWGd9uFbiAOXiiiXbtqfZpxSDzIm4XOg==} + engines: {node: '>=18'} + '@polkadot/networks@6.11.1': resolution: {integrity: sha512-0C6Ha2kvr42se3Gevx6UhHzv3KnPHML0N73Amjwvdr4y0HLZ1Nfw+vcm5yqpz5gpiehqz97XqFrsPRauYdcksQ==} engines: {node: '>=14.0.0'} @@ -1365,8 +1379,8 @@ packages: resolution: {integrity: sha512-IEco5pnso+fYkZNMlMAN5i4XAxdXPv0PZ0HNuWlCwF/MmRvWl8pq5JFtY1FiByHEbeuHwMIUhHM5SDKQ85q9Hg==} engines: {node: '>=18'} - '@polkadot/rpc-augment@13.0.1': - resolution: {integrity: sha512-igXNG8mONVgqS4Olt7+WmPoX7G/QL/xrHkPOAD2sbS8+p8LC2gDe/+vVFIkKtEKAHgYSel3vZT3iIppjtEG6gw==} + '@polkadot/rpc-augment@13.2.1': + resolution: {integrity: sha512-HkndaAJPR1fi2xrzvP3q4g48WUCb26btGTeg1AKG9FGx9P2dgtpaPRmbMitmgVSzzRurrkxf3Meip8nC7BwDeg==} engines: {node: '>=18'} '@polkadot/rpc-augment@7.15.1': @@ -1385,8 +1399,8 @@ packages: resolution: {integrity: sha512-yaveqxNcmyluyNgsBT5tpnCa/md0CGbOtRK7K82LWsz7gsbh0x80GBbJrQGxsUybg1gPeZbO1q9IigwA6fY8ag==} engines: {node: '>=18'} - '@polkadot/rpc-core@13.0.1': - resolution: {integrity: sha512-+z7/4RUsJKiELEunZgXvi4GkGgjPhQd3+RYwCCN455efJ15SHPgdREsAOwUSBO5/dODqXeqZYojKAUIxMlJNqw==} + '@polkadot/rpc-core@13.2.1': + resolution: {integrity: sha512-hy0GksUlb/TfQ38m3ysIWj3qD+rIsyCdxx8Ug5rIx1u0odv86NZ7nTqtH066Ct2riVaPBgBkObFnlpDWTJ6auA==} engines: {node: '>=18'} '@polkadot/rpc-core@7.15.1': @@ -1405,8 +1419,8 @@ packages: resolution: {integrity: sha512-cAhfN937INyxwW1AdjABySdCKhC7QCIONRDHDea1aLpiuxq/w+QwjxauR9fCNGh3lTaAwwnmZ5WfFU2PtkDMGQ==} engines: {node: '>=18'} - '@polkadot/rpc-provider@13.0.1': - resolution: {integrity: sha512-rl7jizh0b9FI2Z81vbpm+ui6cND3zxMMC8SSxkIzemC0t1L6O/I+zaPYwNpqVpa7wIeZbSfe69SrvtjeZBcn2g==} + '@polkadot/rpc-provider@13.2.1': + resolution: {integrity: sha512-bbMVYHTNFUa89aY3UQ1hFYD+dP+v+0vhjsnHYYlv37rSUTqOGqW91rkHd63xYCpLAimFt7KRw8xR+SMSYiuDjw==} engines: {node: '>=18'} '@polkadot/rpc-provider@7.15.1': @@ -1425,8 +1439,8 @@ packages: resolution: {integrity: sha512-3fDCOy2BEMuAtMYl4crKg76bv/0pDNEuzpAzV4EBUMIlJwypmjy5sg3gUPCMcA+ckX3xb8DhkWU4ceUdS7T2KQ==} engines: {node: '>=18'} - '@polkadot/types-augment@13.0.1': - resolution: {integrity: sha512-MKS8OAiKHgeeLwyjPukHRwlUlrTkdPTVdsFs6H3yWUr0G2I2nIgHuOTK/8OYVBMplNnLgPsNtpEpY+VduAEefQ==} + '@polkadot/types-augment@13.2.1': + resolution: {integrity: sha512-FpV7/2kIJmmswRmwUbp41lixdNX15olueUjHnSweFk0xEn2Ur43oC0Y3eU3Ab7Y5gPJpceMCfwYz+PjCUGedDA==} engines: {node: '>=18'} '@polkadot/types-augment@7.15.1': @@ -1445,8 +1459,8 @@ packages: resolution: {integrity: sha512-DiPGRFWtVMepD9i05eC3orSbGtpN7un/pXOrXu0oriU+oxLkpvZH68ZsPNtJhKdQy03cAYtvB8elJOFJZYqoqQ==} engines: {node: '>=18'} - '@polkadot/types-codec@13.0.1': - resolution: {integrity: sha512-E+8Ny8wr/BEGqchoLejP8Z6qmQQaJmBui1rlwWgKCypI4gnDvhNa+hHheIgrUfSzNwUgsxC/04G9fIRnCaxDpw==} + '@polkadot/types-codec@13.2.1': + resolution: {integrity: sha512-tFAzzS8sMYItoD5a91sFMD+rskWyv4WjSmUZaj0Y4OfLtDAiQvgO0KncdGJIB6D+zZ/T7khpgsv/CZbN3YnezA==} engines: {node: '>=18'} '@polkadot/types-codec@7.15.1': @@ -1465,8 +1479,8 @@ packages: resolution: {integrity: sha512-nOpeAKZLdSqNMfzS3waQXgyPPaNt8rUHEmR5+WNv6c/Ke/vyf710wjxiTewfp0wpBgtdrimlgG4DLX1J9Ms1LA==} engines: {node: '>=18'} - '@polkadot/types-create@13.0.1': - resolution: {integrity: sha512-ge5ZmZOQoCqSOB1JtcZZFq2ysh4rnS9xrwC5BVbtk9GZaop5hRmLLmCXqDn49zEsgynRWHgOiKMP8T9AvOigMg==} + '@polkadot/types-create@13.2.1': + resolution: {integrity: sha512-O/WKdsrNuMaZLf+XRCdum2xJYs5OKC6N3EMPF5Uhg10b80Y/hQCbzA/iWd3/aMNDLUA5XWhixwzJdrZWIMVIzg==} engines: {node: '>=18'} '@polkadot/types-create@7.15.1': @@ -1485,8 +1499,8 @@ packages: resolution: {integrity: sha512-bvhO4KQu/dgPmdwQXsweSMRiRisJ7Bp38lZVEIFykfd2qYyRW3OQEbIPKYpx9raD+fDATU0bTiKQnELrSGhYXw==} engines: {node: '>=18'} - '@polkadot/types-known@13.0.1': - resolution: {integrity: sha512-ZWtQSrDoO290RJu7mZDo1unKcfz1O3ylQkKH7g3oh6Mzmq9I4q7jeS1kS22rJml45berAPIVqZ3zFfODTl6ngA==} + '@polkadot/types-known@13.2.1': + resolution: {integrity: sha512-uz3c4/IvspLpgN8q15A+QH8KWFauzcrV3RfLFlMP2BkkF5qpOwNeP7c4U8j0CZGQySqBsJRCGWmgBXrXg669KA==} engines: {node: '>=18'} '@polkadot/types-known@4.17.1': @@ -1513,8 +1527,8 @@ packages: resolution: {integrity: sha512-bz6JSt23UEZ2eXgN4ust6z5QF9pO5uNH7UzCP+8I/Nm85ZipeBYj2Wu6pLlE3Hw30hWZpuPxMDOKoEhN5bhLgw==} engines: {node: '>=18'} - '@polkadot/types-support@13.0.1': - resolution: {integrity: sha512-UeGnjvyZSegFgzZ6HlR4H7+1itJBAEkGm9NKwEvZTTZJ0dG4zdxbHLNPURJ9UhDYCZ7bOGqkcB49o+hWY25dDA==} + '@polkadot/types-support@13.2.1': + resolution: {integrity: sha512-jSbbUTXU+yZJQPRAWmxaDoe4NRO6SjpZPzBIbpuiadx1slON8XB80fVYIGBXuM2xRVrNrB6fCjyCTG7Razj6Hg==} engines: {node: '>=18'} '@polkadot/types-support@7.15.1': @@ -1533,8 +1547,8 @@ packages: resolution: {integrity: sha512-ivYtt7hYcRvo69ULb1BJA9BE1uefijXcaR089Dzosr9+sMzvsB1yslNQReOq+Wzq6h6AQj4qex6qVqjWZE6Z4A==} engines: {node: '>=18'} - '@polkadot/types@13.0.1': - resolution: {integrity: sha512-01uOx24Fjvhjt1CvKOL+oy1eExAsF4EVuwgZhwAL+WkD0zqlOlAhqlXn5Wg7sY80yzwmgDTLd8Oej/pHFOdCBQ==} + '@polkadot/types@13.2.1': + resolution: {integrity: sha512-5yQ0mHMNvwgXeHQ1RZOuHaeak3utAdcBqCpHoagnYrAnGHqtO7kg7YLtT4LkFw2nwL85axu8tOQMv6/3kpFy9w==} engines: {node: '>=18'} '@polkadot/types@4.17.1': @@ -1585,6 +1599,12 @@ packages: peerDependencies: '@polkadot/util': 13.0.2 + '@polkadot/util-crypto@13.1.1': + resolution: {integrity: sha512-FG68rrLPdfLcscEyH10vnGkakM4O2lqr71S3GDhgc9WXaS8y9jisLgMPg8jbMHiQBJ3iKYkmtPKiLBowRslj2w==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto@6.11.1': resolution: {integrity: sha512-fWA1Nz17FxWJslweZS4l0Uo30WXb5mYV1KEACVzM+BSZAvG5eoiOAYX6VYZjyw6/7u53XKrWQlD83iPsg3KvZw==} engines: {node: '>=14.0.0'} @@ -1609,6 +1629,10 @@ packages: resolution: {integrity: sha512-/6bS9sfhJLhs8QuqWaR1eRapzfDdGC5XAQZEPL9NN5sTTA7HxWos8rVleai0UERm8QUMabjZ9rK9KpzbXl7ojg==} engines: {node: '>=18'} + '@polkadot/util@13.1.1': + resolution: {integrity: sha512-M4iQ5Um8tFdDmD7a96nPzfrEt+kxyWOqQDPqXyaax4QBnq/WCbq0jo8IO61uz55mdMQnGZvq8jd8uge4V6JzzQ==} + engines: {node: '>=18'} + '@polkadot/util@6.11.1': resolution: {integrity: sha512-TEdCetr9rsdUfJZqQgX/vxLuV4XU8KMoKBMJdx+JuQ5EWemIdQkEtMBdL8k8udNGbgSNiYFA6rPppATeIxAScg==} engines: {node: '>=14.0.0'} @@ -1745,6 +1769,10 @@ packages: 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@8.7.1': resolution: {integrity: sha512-ClkhgdB/KqcAKk3zA6Qw8wBL6Wz67pYTPkrAtImpvoPJmR+l4RARauv+MH34JXMUNlNb3aUwqN6lq2Z1zN+mJg==} engines: {node: '>=14.0.0'} @@ -1761,6 +1789,10 @@ packages: resolution: {integrity: sha512-B/gf9iriUr6za/Ui7zIFBfHz7UBZ68rJEIteWHx1UHRCZPcLqv+hgpev6xIGrkfFljI0/lI7IwtN2qy6HYzFBg==} engines: {node: '>=18'} + '@polkadot/x-fetch@13.1.1': + resolution: {integrity: sha512-qA6mIUUebJbS+oWzq/EagZflmaoa9b25WvsxSFn7mCvzKngXzr+GYCY4XiDwKY/S+/pr/kvSCKZ1ia8BDqPBYQ==} + engines: {node: '>=18'} + '@polkadot/x-fetch@8.7.1': resolution: {integrity: sha512-ygNparcalYFGbspXtdtZOHvNXZBkNgmNO+um9C0JYq74K5OY9/be93uyfJKJ8JcRJtOqBfVDsJpbiRkuJ1PRfg==} engines: {node: '>=14.0.0'} @@ -1777,6 +1809,10 @@ packages: 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@6.11.1': resolution: {integrity: sha512-lsBK/e4KbjfieyRmnPs7bTiGbP/6EoCZz7rqD/voNS5qsJAaXgB9LR+ilubun9gK/TDpebyxgO+J19OBiQPIRw==} engines: {node: '>=14.0.0'} @@ -1803,6 +1839,13 @@ packages: '@polkadot/util': 13.0.2 '@polkadot/wasm-util': '*' + '@polkadot/x-randomvalues@13.1.1': + resolution: {integrity: sha512-cXj4omwbgzQQSiBtV1ZBw+XhJUU3iz/DS6ghUnGllSZEK+fGqiyaNgeFQzDY0tKjm6kYaDpvtOHR3mHsbzDuTg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': '*' + '@polkadot/x-randomvalues@6.11.1': resolution: {integrity: sha512-2MfUfGZSOkuPt7GF5OJkPDbl4yORI64SUuKM25EGrJ22o1UyoBnPOClm9eYujLMD6BfDZRM/7bQqqoLW+NuHVw==} engines: {node: '>=14.0.0'} @@ -1827,6 +1870,10 @@ packages: 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@6.11.1': resolution: {integrity: sha512-DI1Ym2lyDSS/UhnTT2e9WutukevFZ0WGpzj4eotuG2BTHN3e21uYtYTt24SlyRNMrWJf5+TkZItmZeqs1nwAfQ==} engines: {node: '>=14.0.0'} @@ -1847,6 +1894,10 @@ packages: 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@6.11.1': resolution: {integrity: sha512-8ipjWdEuqFo+R4Nxsc3/WW9CSEiprX4XU91a37ZyRVC4e9R1bmvClrpXmRQLVcAQyhRvG8DKOOtWbz8xM+oXKg==} engines: {node: '>=14.0.0'} @@ -1867,6 +1918,10 @@ packages: resolution: {integrity: sha512-nC5e2eY5D5ZR5teQOB7ib+dWLbmNws86cTz3BjKCalSMBBIn6i3V9ElgABpierBmnSJe9D94EyrH1BxdVfDxUg==} engines: {node: '>=18'} + '@polkadot/x-ws@13.1.1': + resolution: {integrity: sha512-E/xFmJTiFzu+IK5M3/8W/9fnvNJFelcnunPv/IgO6UST94SDaTsN/Gbeb6SqPb6CsrTHRl3WD+AZ3ErGGwQfEA==} + engines: {node: '>=18'} + '@polkadot/x-ws@8.7.1': resolution: {integrity: sha512-Mt0tcNzGXyKnN3DQ06alkv+JLtTfXWu6zSypFrrKHSQe3u79xMQ1nSicmpT3gWLhIa8YF+8CYJXMrqaXgCnDhw==} engines: {node: '>=14.0.0'} @@ -2130,6 +2185,9 @@ packages: '@wormhole-foundation/sdk-base@0.10.7': resolution: {integrity: sha512-2UEy0BREBT8mtJFzkTx8zsBtw8s1LppHQ8r+1CPT1McMLPYcHSVRAg8OBOYsdhx2N2iyvMjJgGIeE1I0Y6c8Vg==} + '@wormhole-foundation/sdk-base@0.10.8': + resolution: {integrity: sha512-adEVbpG/FxaM0rZ/vFVqt2XG7mf+7MNQmcn7rG4MzVR02VmyyeX8me4JjSgNqVSjZDlL1NE4210Fyv8doNeKmw==} + '@wormhole-foundation/sdk-base@0.8.2': resolution: {integrity: sha512-LuR1X+6Ge0yyMZNg2F5WZUko4rR7SaKPTOpfsje381c/D9Mu7shQTwgtsE6o5IwZpMdoYKFzB8oRjHqAC23soA==} @@ -2137,6 +2195,10 @@ packages: resolution: {integrity: sha512-NzJXVG4auD6JuMsysLQUGiK4NVJ8p1me59Rjys87I+wBRszLfe6gRy0/tKhXT/ArjXzYPKNRsgymFi7mYXEe8w==} engines: {node: '>=16'} + '@wormhole-foundation/sdk-connect@0.10.8': + resolution: {integrity: sha512-5f1XGxGyKlxo32gJacI5uV5iaybevAEDbXJY8jUBwvsAwt8VGLqjH1ZPyYEWsbl6biZhypIt+V6+QlpnoBpnVg==} + engines: {node: '>=16'} + '@wormhole-foundation/sdk-connect@0.8.2': resolution: {integrity: sha512-wXkrgfpAUDqV4CZND/Qn08jay2my1z7DwyJ84yPkYSsExfaTIPSSrj6fqpZrj2iDOALvIzMApJQPswyaYIIG/w==} engines: {node: '>=16'} @@ -2144,13 +2206,28 @@ packages: '@wormhole-foundation/sdk-definitions@0.10.7': resolution: {integrity: sha512-9FUVqxbp91TjWofp2/3C/wCYlkdkt0ceM6Copc0zVDvD7sW8RpKVceWCttTZs843aKkRnGAkM+zLdT8kW/UUSw==} + '@wormhole-foundation/sdk-definitions@0.10.8': + resolution: {integrity: sha512-O7tw6shcCh/5OVch9g8m3ujE7xi0t/AF29tk3RvxDPKt5bETuXSFR85Wibmh5IP4yEgzEsQ1gm4uw1pG857G9A==} + '@wormhole-foundation/sdk-definitions@0.8.2': resolution: {integrity: sha512-anUH5p/DVj7jnmOPL65yGn+Yt8LafFw9gcOYeU/lFvW8T1pqhxdFyydyW4LSriZzZO2mD9qi8Sv5/ndJf0sUXg==} + '@wormhole-foundation/sdk-evm-core@0.10.8': + resolution: {integrity: sha512-7XIN1rwaqG7QB7Txc+o2wYPn20Rt5wD6cUJQ5888gvLH4uyQYaJQUORBqAxv4JrATkdryKwIvMnsdLmXw2JVLw==} + engines: {node: '>=16'} + + '@wormhole-foundation/sdk-evm-tokenbridge@0.10.8': + resolution: {integrity: sha512-bVlxo6PWEO5mOeUsUVAxfb52HAnJE1wU3kpvhad7Fk1L5NeEbm+omy/vt0OegtLHa3G/iA0sjx0bij6DfvCWyw==} + engines: {node: '>=16'} + '@wormhole-foundation/sdk-evm@0.10.7': resolution: {integrity: sha512-SLZBlvllNXBiJAI0n5GTFyRwKG19CBT/i/hFbzH/xx0JJ72J0HpUklm02fyEe4I/Qg2pRoJvN65Z4/YdYLcMnw==} engines: {node: '>=16'} + '@wormhole-foundation/sdk-evm@0.10.8': + resolution: {integrity: sha512-/P8QKdVdemGYIDfAodSf7GmKBV0Yk23FaQ5lfJe2wBWMVVr4Vjmaw8oYEqJTdjrnZKdvQGYTpeIFymhG5ZzYRA==} + engines: {node: '>=16'} + '@wormhole-foundation/sdk-evm@0.8.2': resolution: {integrity: sha512-TfnQMIqdYFjUs11vzpN75Kv75ri/nsvyScqmLvIgLb8eybMNeSDeldEMEWYXmaQgaqYX0/+UelvEoHOaKfdF5g==} engines: {node: '>=16'} @@ -2277,7 +2354,6 @@ packages: bun@1.1.27: resolution: {integrity: sha512-FLnMaOuVVuhjPIfmlRtAE42B2x+oSWO6jW8MZ/Ss179qokN//nzIhuj/07bdA016U6d11HyLvvGb6eaH0HKhBQ==} - cpu: [arm64, x64] os: [darwin, linux, win32] hasBin: true @@ -4758,14 +4834,14 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-augment@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-augment@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/types-augment': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/api-base': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/types-augment': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/util': 13.1.1 tslib: 2.7.0 transitivePeerDependencies: - bufferutil @@ -4823,11 +4899,11 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/rpc-core': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/util': 13.1.1 rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -4892,16 +4968,16 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-derive@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/api': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -4990,22 +5066,22 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) - '@polkadot/rpc-augment': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/types-augment': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/types-create': 13.0.1 - '@polkadot/types-known': 13.0.1 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/api@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/api-augment': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) + '@polkadot/rpc-augment': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/types-augment': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/types-create': 13.2.1 + '@polkadot/types-known': 13.2.1 + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.7.0 @@ -5061,7 +5137,7 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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)': 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)) @@ -5087,7 +5163,7 @@ snapshots: '@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.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) + '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.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.0.2 @@ -5137,6 +5213,18 @@ snapshots: '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) tslib: 2.7.0 + '@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + dependencies: + '@polkadot/util': 13.0.2 + '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + tslib: 2.7.0 + + '@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1)': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) + tslib: 2.7.0 + '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': dependencies: '@babel/runtime': 7.25.6 @@ -5187,6 +5275,12 @@ snapshots: '@substrate/ss58-registry': 1.50.0 tslib: 2.7.0 + '@polkadot/networks@13.1.1': + dependencies: + '@polkadot/util': 13.1.1 + '@substrate/ss58-registry': 1.50.0 + tslib: 2.7.0 + '@polkadot/networks@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -5197,9 +5291,9 @@ snapshots: '@polkadot/util': 8.7.1 '@substrate/ss58-registry': 1.50.0 - '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': + '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) '@polkadot/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.0.2) '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) '@polkadot/util': 13.0.2 @@ -5239,12 +5333,12 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-augment@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-augment@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/rpc-core': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/util': 13.1.1 tslib: 2.7.0 transitivePeerDependencies: - bufferutil @@ -5300,12 +5394,12 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-core@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-core@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-augment': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/rpc-augment': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 13.2.1 + '@polkadot/util': 13.1.1 rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -5380,16 +5474,16 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-provider@13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) - '@polkadot/types': 13.0.1 - '@polkadot/types-support': 13.0.1 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.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) + '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) + '@polkadot/types': 13.2.1 + '@polkadot/types-support': 13.2.1 + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) + '@polkadot/x-fetch': 13.1.1 + '@polkadot/x-global': 13.1.1 + '@polkadot/x-ws': 13.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 @@ -5455,11 +5549,11 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 - '@polkadot/types-augment@13.0.1': + '@polkadot/types-augment@13.2.1': dependencies: - '@polkadot/types': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/types': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/util': 13.1.1 tslib: 2.7.0 '@polkadot/types-augment@7.15.1': @@ -5488,10 +5582,10 @@ snapshots: '@polkadot/x-bigint': 13.0.2 tslib: 2.7.0 - '@polkadot/types-codec@13.0.1': + '@polkadot/types-codec@13.2.1': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/x-bigint': 13.0.2 + '@polkadot/util': 13.1.1 + '@polkadot/x-bigint': 13.1.1 tslib: 2.7.0 '@polkadot/types-codec@7.15.1': @@ -5517,10 +5611,10 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 - '@polkadot/types-create@13.0.1': + '@polkadot/types-create@13.2.1': dependencies: - '@polkadot/types-codec': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/types-codec': 13.2.1 + '@polkadot/util': 13.1.1 tslib: 2.7.0 '@polkadot/types-create@7.15.1': @@ -5553,13 +5647,13 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 - '@polkadot/types-known@13.0.1': + '@polkadot/types-known@13.2.1': dependencies: - '@polkadot/networks': 13.0.2 - '@polkadot/types': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/types-create': 13.0.1 - '@polkadot/util': 13.0.2 + '@polkadot/networks': 13.1.1 + '@polkadot/types': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/types-create': 13.2.1 + '@polkadot/util': 13.1.1 tslib: 2.7.0 '@polkadot/types-known@4.17.1': @@ -5604,9 +5698,9 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 - '@polkadot/types-support@13.0.1': + '@polkadot/types-support@13.2.1': dependencies: - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.1.1 tslib: 2.7.0 '@polkadot/types-support@7.15.1': @@ -5641,14 +5735,14 @@ snapshots: rxjs: 7.8.1 tslib: 2.7.0 - '@polkadot/types@13.0.1': + '@polkadot/types@13.2.1': dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) - '@polkadot/types-augment': 13.0.1 - '@polkadot/types-codec': 13.0.1 - '@polkadot/types-create': 13.0.1 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) + '@polkadot/types-augment': 13.2.1 + '@polkadot/types-codec': 13.2.1 + '@polkadot/types-create': 13.2.1 + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) rxjs: 7.8.1 tslib: 2.7.0 @@ -5725,10 +5819,10 @@ snapshots: '@noble/hashes': 1.5.0 '@polkadot/networks': 12.6.2 '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) + '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) '@polkadot/wasm-util': 7.3.2(@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.3.2(@polkadot/util@13.0.2)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) '@scure/base': 1.1.8 tslib: 2.7.0 @@ -5745,6 +5839,19 @@ snapshots: '@scure/base': 1.1.8 tslib: 2.7.0 + '@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1)': + dependencies: + '@noble/curves': 1.6.0 + '@noble/hashes': 1.5.0 + '@polkadot/networks': 13.1.1 + '@polkadot/util': 13.1.1 + '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/x-bigint': 13.1.1 + '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) + '@scure/base': 1.1.8 + tslib: 2.7.0 + '@polkadot/util-crypto@6.11.1(@polkadot/util@6.11.1)': dependencies: '@babel/runtime': 7.25.6 @@ -5808,6 +5915,16 @@ snapshots: 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@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -5835,11 +5952,11 @@ snapshots: '@polkadot/util': 10.4.2 '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': + '@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: '@polkadot/util': 12.6.2 '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.7.0 '@polkadot/wasm-bridge@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': @@ -5849,6 +5966,13 @@ snapshots: '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) tslib: 2.7.0 + '@polkadot/wasm-bridge@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) + tslib: 2.7.0 + '@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@6.11.1)': dependencies: '@babel/runtime': 7.25.6 @@ -5874,6 +5998,11 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 + '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@13.1.1)': + dependencies: + '@polkadot/util': 13.1.1 + tslib: 2.7.0 + '@polkadot/wasm-crypto-init@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': dependencies: '@babel/runtime': 7.25.6 @@ -5883,14 +6012,14 @@ snapshots: '@polkadot/wasm-crypto-wasm': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': + '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.7.0 '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': @@ -5903,6 +6032,16 @@ snapshots: '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) tslib: 2.7.0 + '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) + tslib: 2.7.0 + '@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@6.11.1)': dependencies: '@babel/runtime': 7.25.6 @@ -5931,6 +6070,12 @@ snapshots: '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) tslib: 2.7.0 + '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@13.1.1)': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + tslib: 2.7.0 + '@polkadot/wasm-crypto@4.6.1(@polkadot/util@6.11.1)(@polkadot/x-randomvalues@6.11.1)': dependencies: '@babel/runtime': 7.25.6 @@ -5958,15 +6103,15 @@ snapshots: '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.2 - '@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': + '@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) + '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.7.0 '@polkadot/wasm-crypto@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': @@ -5980,6 +6125,17 @@ snapshots: '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) tslib: 2.7.0 + '@polkadot/wasm-crypto@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) + tslib: 2.7.0 + '@polkadot/wasm-util@6.4.1(@polkadot/util@10.4.2)': dependencies: '@babel/runtime': 7.25.6 @@ -5995,6 +6151,11 @@ snapshots: '@polkadot/util': 13.0.2 tslib: 2.7.0 + '@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)': + dependencies: + '@polkadot/util': 13.1.1 + tslib: 2.7.0 + '@polkadot/x-bigint@10.4.2': dependencies: '@babel/runtime': 7.25.6 @@ -6010,6 +6171,11 @@ snapshots: '@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@8.7.1': dependencies: '@babel/runtime': 7.25.6 @@ -6034,6 +6200,12 @@ snapshots: node-fetch: 3.3.2 tslib: 2.7.0 + '@polkadot/x-fetch@13.1.1': + dependencies: + '@polkadot/x-global': 13.1.1 + node-fetch: 3.3.2 + tslib: 2.7.0 + '@polkadot/x-fetch@8.7.1': dependencies: '@babel/runtime': 7.25.6 @@ -6055,6 +6227,10 @@ snapshots: dependencies: tslib: 2.7.0 + '@polkadot/x-global@13.1.1': + dependencies: + tslib: 2.7.0 + '@polkadot/x-global@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6068,10 +6244,10 @@ 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.3.2(@polkadot/util@13.0.2))': + '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) '@polkadot/x-global': 12.6.2 tslib: 2.7.0 @@ -6082,6 +6258,13 @@ snapshots: '@polkadot/x-global': 13.0.2 tslib: 2.7.0 + '@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))': + dependencies: + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) + '@polkadot/x-global': 13.1.1 + tslib: 2.7.0 + '@polkadot/x-randomvalues@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6112,6 +6295,11 @@ snapshots: '@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@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6137,6 +6325,11 @@ snapshots: '@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@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6174,6 +6367,15 @@ snapshots: - bufferutil - utf-8-validate + '@polkadot/x-ws@13.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/x-global': 13.1.1 + tslib: 2.7.0 + ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + '@polkadot/x-ws@8.7.1': dependencies: '@babel/runtime': 7.25.6 @@ -6279,7 +6481,7 @@ snapshots: '@subsocial/definitions@0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 13.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 13.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash.camelcase: 4.3.0 transitivePeerDependencies: - bufferutil @@ -6480,6 +6682,10 @@ snapshots: dependencies: '@scure/base': 1.1.8 + '@wormhole-foundation/sdk-base@0.10.8': + dependencies: + '@scure/base': 1.1.8 + '@wormhole-foundation/sdk-base@0.8.2': dependencies: '@scure/base': 1.1.8 @@ -6492,6 +6698,14 @@ snapshots: transitivePeerDependencies: - debug + '@wormhole-foundation/sdk-connect@0.10.8': + dependencies: + '@wormhole-foundation/sdk-base': 0.10.8 + '@wormhole-foundation/sdk-definitions': 0.10.8 + axios: 1.7.7 + transitivePeerDependencies: + - debug + '@wormhole-foundation/sdk-connect@0.8.2': dependencies: '@wormhole-foundation/sdk-base': 0.8.2 @@ -6506,12 +6720,39 @@ snapshots: '@noble/hashes': 1.5.0 '@wormhole-foundation/sdk-base': 0.10.7 + '@wormhole-foundation/sdk-definitions@0.10.8': + dependencies: + '@noble/curves': 1.6.0 + '@noble/hashes': 1.5.0 + '@wormhole-foundation/sdk-base': 0.10.8 + '@wormhole-foundation/sdk-definitions@0.8.2': dependencies: '@noble/curves': 1.6.0 '@noble/hashes': 1.5.0 '@wormhole-foundation/sdk-base': 0.8.2 + '@wormhole-foundation/sdk-evm-core@0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@wormhole-foundation/sdk-connect': 0.10.8 + '@wormhole-foundation/sdk-evm': 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + + '@wormhole-foundation/sdk-evm-tokenbridge@0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@wormhole-foundation/sdk-connect': 0.10.8 + '@wormhole-foundation/sdk-evm': 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@wormhole-foundation/sdk-evm-core': 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + '@wormhole-foundation/sdk-evm@0.10.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@wormhole-foundation/sdk-connect': 0.10.7 @@ -6521,6 +6762,15 @@ snapshots: - debug - utf-8-validate + '@wormhole-foundation/sdk-evm@0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@wormhole-foundation/sdk-connect': 0.10.8 + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + '@wormhole-foundation/sdk-evm@0.8.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@wormhole-foundation/sdk-connect': 0.8.2