diff --git a/contracts/scripts/DeployBeefyClient.sol b/contracts/scripts/DeployBeefyClient.sol index cf7e3125b..42a9c9934 100644 --- a/contracts/scripts/DeployBeefyClient.sol +++ b/contracts/scripts/DeployBeefyClient.sol @@ -55,21 +55,21 @@ contract DeployBeefyClient is Script { function westendConfig() internal pure returns (Config memory config) { config = Config({ - startBlock: 29_879_785, + startBlock: 30_057_085, current: BeefyClient.ValidatorSet({ - id: 19_849, + id: 20_144, length: 20, root: 0xff1d13b4dc453f2f88261fbc1ec53922bce47d740489c9022bed06f345395f8c }), next: BeefyClient.ValidatorSet({ - id: 19_850, + id: 20_145, length: 20, root: 0xff1d13b4dc453f2f88261fbc1ec53922bce47d740489c9022bed06f345395f8c }), randaoCommitDelay: 0, randaoCommitExpiration: 1024, minimumSignatures: 12, - fiatShamirRequiredSignatures: 101 + fiatShamirRequiredSignatures: 111 }); } diff --git a/contracts/scripts/upgrade/DeployGateway.sol b/contracts/scripts/upgrade/DeployGateway.sol index fd9bb970e..8c444d852 100644 --- a/contracts/scripts/upgrade/DeployGateway.sol +++ b/contracts/scripts/upgrade/DeployGateway.sol @@ -4,7 +4,7 @@ pragma solidity 0.8.33; import {AgentExecutor} from "../../src/AgentExecutor.sol"; import {Gateway202602} from "../../src/upgrade/Gateway202602.sol"; -import {GatewaySepolia202602} from "../../src/upgrade/Gateway202602.sepolia.sol"; +import {GatewaySepolia202603} from "../../src/upgrade/Gateway202603.sepolia.sol"; import {Gateway} from "../../src/Gateway.sol"; import {ParaID} from "../../src/Types.sol"; import {Script} from "forge-std/Script.sol"; @@ -30,8 +30,8 @@ contract DeployGateway is Script { keccak256(abi.encodePacked(vm.envString("SNOWBRIDGE_DEPLOY_STAGE"))) == keccak256(abi.encodePacked("westend_sepolia")) ) { - address beefyClient = 0x2Bc7eC7fe8EC8BDDE511003F4fe82Bc86b69894a; - gatewayLogic = new GatewaySepolia202602(address(beefyClient), address(executor)); + address beefyClient = 0xEBD1CFcF82BaA170b86BDe532f69A6A49c6c790D; + gatewayLogic = new GatewaySepolia202603(address(beefyClient), address(executor)); } console.log("Snowbridge deployment stage: %s", vm.envString("SNOWBRIDGE_DEPLOY_STAGE")); diff --git a/contracts/scripts/verify-gateway-libs.sh b/contracts/scripts/verify-gateway-libs.sh new file mode 100755 index 000000000..550569270 --- /dev/null +++ b/contracts/scripts/verify-gateway-libs.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash + +set -eux + +# Verify linked libraries for GatewaySepolia202603 on Sepolia +# These must be verified separately after the main gateway contract is deployed + +ETHERSCAN_API_KEY="${ETHERSCAN_API_KEY}" +CHAIN="${ETH_NETWORK:-sepolia}" + +# Library addresses from Sepolia deployment of GatewaySepolia202603 +VERIFICATION_LIB="0x23d6c0bb025570b291b834cd48b78984cffc6e5c" +CALLSV1_LIB="0x3ef6c570c43761cdcd3b05fbef120ecfddbf1104" + +echo "Verifying linked libraries on $CHAIN..." + +# Verify Verification library +echo "Verifying Verification library at $VERIFICATION_LIB..." +forge verify-contract "$VERIFICATION_LIB" \ + src/Verification.sol:Verification \ + --chain "$CHAIN" \ + --etherscan-api-key "$ETHERSCAN_API_KEY" \ + --watch + +# Verify CallsV1 library +echo "Verifying CallsV1 library at $CALLSV1_LIB..." +forge verify-contract "$CALLSV1_LIB" \ + src/v1/Calls.sol:CallsV1 \ + --chain "$CHAIN" \ + --etherscan-api-key "$ETHERSCAN_API_KEY" \ + --watch + +echo "Library verification complete!" diff --git a/contracts/src/upgrade/Gateway202601.sepolia.sol b/contracts/src/upgrade/Gateway202603.sepolia.sol similarity index 84% rename from contracts/src/upgrade/Gateway202601.sepolia.sol rename to contracts/src/upgrade/Gateway202603.sepolia.sol index 84a257868..98bc00c72 100644 --- a/contracts/src/upgrade/Gateway202601.sepolia.sol +++ b/contracts/src/upgrade/Gateway202603.sepolia.sol @@ -5,11 +5,11 @@ pragma solidity 0.8.33; import "../Gateway.sol"; // New Gateway logic contract with an fee initializer -contract GatewaySepolia202601 is Gateway { +contract GatewaySepolia202603 is Gateway { constructor(address beefyClient, address agentExecutor) Gateway(beefyClient, agentExecutor) {} // Override parent initializer to prevent re-initialization of storage. - function initialize(bytes calldata) external override { + function initialize(bytes calldata) external view override { // Ensure that arbitrary users cannot initialize storage in this logic contract. if (ERC1967.load() == address(0)) { revert Unauthorized(); diff --git a/smoketest/make-bindings.sh b/smoketest/make-bindings.sh index 779f55442..80c1e2f5e 100755 --- a/smoketest/make-bindings.sh +++ b/smoketest/make-bindings.sh @@ -6,10 +6,6 @@ rm -rf src/contracts mkdir -p src/contracts contracts_root="../contracts" -if [ "$snowbridge_v1" = "true" ]; then - # Deploy legacy V1 contracts - contracts_root="../../snowbridge-v1/contracts" -fi # Generate Rust bindings for contracts forge bind --module --overwrite \ diff --git a/smoketest/tests/v2/transfer_ena.rs b/smoketest/tests/v2/transfer_ena.rs index 70ddd95b2..fc31d9c1c 100644 --- a/smoketest/tests/v2/transfer_ena.rs +++ b/smoketest/tests/v2/transfer_ena.rs @@ -107,15 +107,6 @@ async fn transfer_ena() { let signer = sr25519::Keypair::from_uri(&suri).expect("valid keypair"); - // Mint ether to sender to pay fees - mint_token_to( - &test_clients.asset_hub_client, - eth_location(), - signer.public_key().0, - INITIAL_FUND, - ) - .await; - let token_transfer_call = TransactionApi.execute(xcm, Weight { ref_time: 8_000_000_000, proof_size: 80_000 }); diff --git a/web/packages/api/package.json b/web/packages/api/package.json index 7ced00600..06b432ba6 100644 --- a/web/packages/api/package.json +++ b/web/packages/api/package.json @@ -28,11 +28,11 @@ "typescript": "5.9.3" }, "dependencies": { - "@polkadot/api": "16.4.8", - "@polkadot/keyring": "13.5.6", - "@polkadot/types": "16.4.8", - "@polkadot/util": "13.5.6", - "@polkadot/util-crypto": "13.5.6", + "@polkadot/api": "16.5.4", + "@polkadot/keyring": "14.0.1", + "@polkadot/types": "16.5.4", + "@polkadot/util": "14.0.1", + "@polkadot/util-crypto": "14.0.1", "@snowbridge/base-types": "workspace:*", "@snowbridge/contract-types": "workspace:*", "ethers": "6.16.0" diff --git a/web/packages/api/src/toEthereum_v2.ts b/web/packages/api/src/toEthereum_v2.ts index 9a5214492..aaa0d0d28 100644 --- a/web/packages/api/src/toEthereum_v2.ts +++ b/web/packages/api/src/toEthereum_v2.ts @@ -819,7 +819,7 @@ export async function signAndSend( try { transfer.tx.signAndSend(account, options, (c) => { if (c.isError) { - console.error(c) + console.error(c.toHuman()) reject(c.internalError || c.dispatchError || c) } // We have to check for finalization here because re-orgs will produce a different messageId on Asset Hub. diff --git a/web/packages/operations/package.json b/web/packages/operations/package.json index 2f1dc68f9..3badd2457 100644 --- a/web/packages/operations/package.json +++ b/web/packages/operations/package.json @@ -42,7 +42,7 @@ "registerWeth": "npx ts-node src/register_token_v2.ts 0xb8ea8cb425d85536b158d661da1ef0895bb92f1d", "createAgent": "npx ts-node src/create_agent.ts", "addTip": "npx ts-node src/add_tip.ts Inbound 1 ETH 1000000000000000", - "registerTokenV2": "npx ts-node src/register_token_v2.ts 0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2", + "registerTokenV2": "npx ts-node src/register_token_v2.ts 0x7169D38820dfd117C3FA1f22a697dBA58d90BA06", "transferWethToAH": "npx ts-node src/transfer_from_e2p.ts 1000 WETH 200000000000000", "transferEthToAcalaV1": "npx ts-node src/transfer_from_e2p.ts 2000 ETH 150000000000000", "transferEthToAcalaV2": "npx ts-node src/transfer_from_e2p_v2.ts 2000 ETH 150000000000000", @@ -111,12 +111,12 @@ }, "dependencies": { "@aws-sdk/client-cloudwatch": "^3.901.0", - "@polkadot/api": "16.4.8", - "@polkadot/keyring": "13.5.6", - "@polkadot/types": "16.4.8", - "@polkadot/types-codec": "16.4.8", - "@polkadot/util": "13.5.6", - "@polkadot/util-crypto": "13.5.6", + "@polkadot/api": "16.5.4", + "@polkadot/keyring": "14.0.1", + "@polkadot/types": "16.5.4", + "@polkadot/types-codec": "16.5.4", + "@polkadot/util": "14.0.1", + "@polkadot/util-crypto": "14.0.1", "@snowbridge/api": "workspace:*", "@snowbridge/base-types": "workspace:*", "@snowbridge/contract-types": "workspace:*", diff --git a/web/packages/registry/package.json b/web/packages/registry/package.json index fe55930be..2266149df 100644 --- a/web/packages/registry/package.json +++ b/web/packages/registry/package.json @@ -17,8 +17,8 @@ "format": "prettier src --write && prettier scripts --write" }, "devDependencies": { - "@polkadot/api": "16.4.8", - "@polkadot/util": "13.5.6", + "@polkadot/api": "16.5.4", + "@polkadot/util": "14.0.1", "@snowbridge/api": "workspace:*", "@snowbridge/contract-types": "workspace:*", "@types/node": "24.6.2", diff --git a/web/packages/registry/scripts/buildRegistry.ts b/web/packages/registry/scripts/buildRegistry.ts index afb2f832d..dd4724f8e 100644 --- a/web/packages/registry/scripts/buildRegistry.ts +++ b/web/packages/registry/scripts/buildRegistry.ts @@ -208,13 +208,13 @@ const SNOWBRIDGE_ENV: { [env: string]: Environment } = { "84532": "https://base-sepolia-rpc.publicnode.com", "421614": "https://arbitrum-sepolia-rpc.publicnode.com", }, - relaychainUrl: "wss://westend-rpc.n.dwellir.com", + relaychainUrl: "https://westend-rpc.polkadot.io", parachains: { - "1000": "wss://asset-hub-westend-rpc.n.dwellir.com", - "1002": "wss://bridge-hub-westend-rpc.n.dwellir.com", + "1000": "https://westend-asset-hub-rpc.polkadot.io", + "1002": "https://westend-bridge-hub-rpc.polkadot.io", }, gatewayContract: "0x9ed8b47bc3417e3bd0507adc06e56e2fa360a4e9", - beefyContract: "0x2bc7ec7fe8ec8bdde511003f4fe82bc86b69894a", + beefyContract: "0xEBD1CFcF82BaA170b86BDe532f69A6A49c6c790D".toLowerCase(), assetHubParaId: 1000, bridgeHubParaId: 1002, v2_parachains: [1000], diff --git a/web/packages/registry/src/westend_sepolia_bridge_info.g.ts b/web/packages/registry/src/westend_sepolia_bridge_info.g.ts index acc6f8d43..b71894b58 100644 --- a/web/packages/registry/src/westend_sepolia_bridge_info.g.ts +++ b/web/packages/registry/src/westend_sepolia_bridge_info.g.ts @@ -8,13 +8,13 @@ const registry = { "421614": "https://arbitrum-sepolia-rpc.publicnode.com", "11155111": "https://ethereum-sepolia-rpc.publicnode.com", }, - relaychainUrl: "wss://westend-rpc.n.dwellir.com", + relaychainUrl: "https://westend-rpc.polkadot.io", parachains: { - "1000": "wss://asset-hub-westend-rpc.n.dwellir.com", - "1002": "wss://bridge-hub-westend-rpc.n.dwellir.com", + "1000": "https://westend-asset-hub-rpc.polkadot.io", + "1002": "https://westend-bridge-hub-rpc.polkadot.io", }, gatewayContract: "0x9ed8b47bc3417e3bd0507adc06e56e2fa360a4e9", - beefyContract: "0x2bc7ec7fe8ec8bdde511003f4fe82bc86b69894a", + beefyContract: "0xebd1cfcf82baa170b86bde532f69a6a49c6c790d", assetHubParaId: 1000, bridgeHubParaId: 1002, v2_parachains: [1000], diff --git a/web/packages/test-helpers/package.json b/web/packages/test-helpers/package.json index 4e3b0075a..2b79d35d9 100644 --- a/web/packages/test-helpers/package.json +++ b/web/packages/test-helpers/package.json @@ -30,12 +30,12 @@ "typescript": "5.9.3" }, "dependencies": { - "@polkadot/api": "16.4.8", - "@polkadot/keyring": "13.5.6", - "@polkadot/types": "16.4.8", - "@polkadot/types-codec": "16.4.8", - "@polkadot/util": "13.5.6", - "@polkadot/util-crypto": "13.5.6", + "@polkadot/api": "16.5.4", + "@polkadot/keyring": "14.0.1", + "@polkadot/types": "16.5.4", + "@polkadot/types-codec": "16.5.4", + "@polkadot/util": "14.0.1", + "@polkadot/util-crypto": "14.0.1", "@snowbridge/contract-types": "workspace:*", "@typechain/ethers-v6": "^0.5.1", "@types/keccak": "^3.0.5", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index d39d25a31..84194f507 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -24,20 +24,20 @@ importers: packages/api: dependencies: '@polkadot/api': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/keyring': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) '@polkadot/types': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/util': - specifier: 13.5.6 - version: 13.5.6 + specifier: 14.0.1 + version: 14.0.1 '@polkadot/util-crypto': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util@14.0.1) '@snowbridge/base-types': specifier: workspace:* version: link:../base-types @@ -142,23 +142,23 @@ importers: specifier: ^3.901.0 version: 3.901.0 '@polkadot/api': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/keyring': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) '@polkadot/types': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/types-codec': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/util': - specifier: 13.5.6 - version: 13.5.6 + specifier: 14.0.1 + version: 14.0.1 '@polkadot/util-crypto': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util@14.0.1) '@snowbridge/api': specifier: workspace:* version: link:../api @@ -222,11 +222,11 @@ importers: version: link:../base-types devDependencies: '@polkadot/api': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/util': - specifier: 13.5.6 - version: 13.5.6 + specifier: 14.0.1 + version: 14.0.1 '@snowbridge/api': specifier: workspace:* version: link:../api @@ -279,23 +279,23 @@ importers: packages/test-helpers: dependencies: '@polkadot/api': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/keyring': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) '@polkadot/types': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/types-codec': - specifier: 16.4.8 - version: 16.4.8 + specifier: 16.5.4 + version: 16.5.4 '@polkadot/util': - specifier: 13.5.6 - version: 13.5.6 + specifier: 14.0.1 + version: 14.0.1 '@polkadot/util-crypto': - specifier: 13.5.6 - version: 13.5.6(@polkadot/util@13.5.6) + specifier: 14.0.1 + version: 14.0.1(@polkadot/util@14.0.1) '@snowbridge/contract-types': specifier: workspace:* version: link:../contract-types @@ -653,6 +653,10 @@ packages: resolution: {integrity: sha512-hBjSCkQjKqfUmhD1eNFg01Q1kivD5EGnq7zCaKFof+2Y1pdCs9EI5Qa+7MLJFJA0TvHBY6ILt5mSW6Gp/b0dtw==} engines: {node: '>=18'} + '@polkadot/api-augment@16.5.4': + resolution: {integrity: sha512-9FTohz13ih458V2JBFjRACKHPqfM6j4bmmTbcSaE7hXcIOYzm4ABFo7xq5osLyvItganjsICErL2vRn2zULycw==} + engines: {node: '>=18'} + '@polkadot/api-base@14.3.1': resolution: {integrity: sha512-GZT6rTpT3HYZ/C3rLPjoX3rX3DOxNG/zgts+jKjNrCumAeZkVq5JErKIX8/3f2TVaE2Kbqniy3d1TH/AL4HBPA==} engines: {node: '>=18'} @@ -661,6 +665,10 @@ packages: resolution: {integrity: sha512-RqLG0DFvS99RAWb60r1u5AAnZu6cS1Cit/ASTnzXYysLKVpVd6RCPSZVl+e8NX42pOgGuwh0e1P6LtoIaK2qYQ==} engines: {node: '>=18'} + '@polkadot/api-base@16.5.4': + resolution: {integrity: sha512-V69v3ieg5+91yRUCG1vFRSLr7V7MvHPvo/QrzleIUu8tPXWldJ0kyXbWKHVNZEpVBA9LpjGvII+MHUW7EaKMNg==} + engines: {node: '>=18'} + '@polkadot/api-cli@0.63.16': resolution: {integrity: sha512-KNvG+8B3sBebr2DSwA+foCConOmtIDFHcbN3dHTWu2WMyfvI83Mu2mlUyJEh5F03fGEfVZ+af1X5SCy89da9HQ==} engines: {node: '>=18'} @@ -670,16 +678,16 @@ packages: resolution: {integrity: sha512-PhqUEJCY54vXtIaoYqGUtJY06wHd/K0cBmBz9yCLxp8UZkLoGWhfJRTruI25Jnucf9awS5cZKYqbsoDrL09Oqg==} engines: {node: '>=18'} - '@polkadot/api-derive@16.4.8': - resolution: {integrity: sha512-qTCVtTNCi95sORld964juDhh8ydbJkUKJK7/4PiZcB3h5dLscBI/Prg6rFRyp0k8w7n0qCvjjBHJrDqov8LPmg==} + '@polkadot/api-derive@16.5.4': + resolution: {integrity: sha512-0JP2a6CaqTviacHsmnUKF4VLRsKdYOzQCqdL9JpwY/QBz/ZLqIKKPiSRg285EVLf8n/hWdTfxbWqQCsRa5NL+Q==} engines: {node: '>=18'} '@polkadot/api@14.3.1': resolution: {integrity: sha512-ZBKSXEVJa1S1bnmpnA7KT/fX3sJDIJOdVD9Hp3X+G73yvXzuK5k1Mn5z9bD/AcMs/HAGcbuYU+b9+b9IByH9YQ==} engines: {node: '>=18'} - '@polkadot/api@16.4.8': - resolution: {integrity: sha512-72OMPwd47t/ZJB9zIE7d60FqqgCrRqBZqYNkPRBtPYTQNDUsStg3g6hswSp8cdzPua3oKxeamD2GF+BBr0wB3A==} + '@polkadot/api@16.5.4': + resolution: {integrity: sha512-mX1fwtXCBAHXEyZLSnSrMDGP+jfU2rr7GfDVQBz0cBY1nmY8N34RqPWGrZWj8o4DxVu1DQ91sGncOmlBwEl0Qg==} engines: {node: '>=18'} '@polkadot/keyring@13.5.6': @@ -689,10 +697,21 @@ packages: '@polkadot/util': 13.5.6 '@polkadot/util-crypto': 13.5.6 + '@polkadot/keyring@14.0.1': + resolution: {integrity: sha512-kHydQPCeTvJrMC9VQO8LPhAhTUxzxfNF1HEknhZDBPPsxP/XpkYsEy/Ln1QzJmQqD5VsgwzLDE6cExbJ2CT9CA==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1 + '@polkadot/networks@13.5.6': resolution: {integrity: sha512-9HqUIBOHnz9x/ssPb0aOD/7XcU8vGokEYpLoNgexFNIJzqDgrDHXR197iFpkbMqA/+98zagrvYUyPYj1yYs9Jw==} engines: {node: '>=18'} + '@polkadot/networks@14.0.1': + resolution: {integrity: sha512-wGlBtXDkusRAj4P7uxfPz80gLO1+j99MLBaQi3bEym2xrFrFhgIWVHOZlBit/1PfaBjhX2Z8XjRxaM2w1p7w2w==} + engines: {node: '>=18'} + '@polkadot/rpc-augment@14.3.1': resolution: {integrity: sha512-Z8Hp8fFHwFCiTX0bBCDqCZ4U26wLIJl1NRSjJTsAr+SS68pYZBDGCwhKztpKGqndk1W1akRUaxrkGqYdIFmspQ==} engines: {node: '>=18'} @@ -701,6 +720,10 @@ packages: resolution: {integrity: sha512-ri5yjmVa0zw56nVQr2P0ozxxz89+RwBUD01sgusNraRbrYOCpNyJlOUsom/1qTVIylyOknzIxpAgFoMkALuqwg==} engines: {node: '>=18'} + '@polkadot/rpc-augment@16.5.4': + resolution: {integrity: sha512-j9v3Ttqv/EYGezHtVksGJAFZhE/4F7LUWooOazh/53ATowMby3lZUdwInrK6bpYmG2whmYMw/Fo283fwDroBtQ==} + engines: {node: '>=18'} + '@polkadot/rpc-core@14.3.1': resolution: {integrity: sha512-FV2NPhFwFxmX8LqibDcGc6IKTBqmvwr7xwF2OA60Br4cX+AQzMSVpFlfQcETll+0M+LnRhqGKGkP0EQWXaSowA==} engines: {node: '>=18'} @@ -709,6 +732,10 @@ packages: resolution: {integrity: sha512-LN5BgUeBjGaxybUyFB8WbBU5clwthcMu4XYT0vN4howx/3BvJgBPMvm+K52eWdzSWlPojGtVkNNCy9QTNFWx0w==} engines: {node: '>=18'} + '@polkadot/rpc-core@16.5.4': + resolution: {integrity: sha512-92LOSTWujPjtmKOPvfCPs8rAaPFU+18wTtkIzwPwKxvxkN/SWsYSGIxmsoags9ramyHB6jp7Lr59TEuGMxIZzQ==} + engines: {node: '>=18'} + '@polkadot/rpc-provider@14.3.1': resolution: {integrity: sha512-NF/Z/7lzT+jp5LZzC49g+YIjRzXVI0hFag3+B+4zh6E/kKADdF59EHj2Im4LDhRGOnEO9AE4H6/UjNEbZ94JtA==} engines: {node: '>=18'} @@ -717,6 +744,10 @@ packages: resolution: {integrity: sha512-FD65zi3tBdBYccAWrTbxLP6ZxdU8rJAawD71dx3+RcHwIc5aLHoeK2ZuuXlaLi2LvnhvFDWCm5qJRMElXVYZbA==} engines: {node: '>=18'} + '@polkadot/rpc-provider@16.5.4': + resolution: {integrity: sha512-mNAIBRA3jMvpnHsuqAX4InHSIqBdgxFD6ayVUFFAzOX8Fh6Xpd4RdI1dqr6a1pCzjnPSby4nbg+VuadWwauVtg==} + engines: {node: '>=18'} + '@polkadot/types-augment@14.3.1': resolution: {integrity: sha512-SC4M6TBlgCglNz+gRbvfoVRDz0Vyeev6v0HeAdw0H6ayEW4BXUdo5bFr0092bdS5uTrEPgiSyUry5TJs2KoXig==} engines: {node: '>=18'} @@ -725,6 +756,10 @@ packages: resolution: {integrity: sha512-oAJ2okk+z210yS8D3Bj51Bgg5c3L2bAnL7PLnXpfcavGJh8cnvWoEi438lhqPuLKNrTnMw9qrnxH+YRLqRGhqA==} engines: {node: '>=18'} + '@polkadot/types-augment@16.5.4': + resolution: {integrity: sha512-AGjXR+Q9O9UtVkGw/HuOXlbRqVpvG6H8nr+taXP71wuC6RD9gznFBFBqoNkfWHD2w89esNVQLTvXHVxlLpTXqA==} + engines: {node: '>=18'} + '@polkadot/types-codec@14.3.1': resolution: {integrity: sha512-3y3RBGd+8ebscGbNUOjqUjnRE7hgicgid5LtofHK3O1EDcJQJnYBDkJ7fOAi96CDgHsg+f2FWWkBWEPgpOQoMQ==} engines: {node: '>=18'} @@ -733,6 +768,10 @@ packages: resolution: {integrity: sha512-JMaXwnaZUwpgHqdpU7zRh2HtDDzMDwYK0qHK5p1UhDK3eArq3rYLUsCvLatC8tNaZUB4wHHBIbG0qSslWHDf+A==} engines: {node: '>=18'} + '@polkadot/types-codec@16.5.4': + resolution: {integrity: sha512-OQtT1pmJu2F3/+Vh1OiXifKoeRy+CU1+Lu7dgTcdO705dnxU4447Zup5JVCJDnxBmMITts/38vbFN2pD225AnA==} + engines: {node: '>=18'} + '@polkadot/types-create@14.3.1': resolution: {integrity: sha512-F4EBvF3Zvym0xrkAA5Yz01IAVMepMV3w2Dwd0C9IygEAQ5sYLLPHmf72/aXn+Ag+bSyT2wlJHpDc+nEBXNQ3Gw==} engines: {node: '>=18'} @@ -741,12 +780,16 @@ packages: resolution: {integrity: sha512-YpI+yv8tsyV1Psn5KjPbAOmZ+KwrmYRxQD1GIbo72LbsEV0mCfELsKJiJLT16xgIe4JaWDKOu4ofgHV42cBmUg==} engines: {node: '>=18'} + '@polkadot/types-create@16.5.4': + resolution: {integrity: sha512-URQnvr/sgvgIRSxIW3lmml6HMSTRRj2hTZIm6nhMTlYSVT4rLWx0ZbYUAjoPBbaJ+BmoqZ6Bbs+tA+5cQViv5Q==} + engines: {node: '>=18'} + '@polkadot/types-known@14.3.1': resolution: {integrity: sha512-58b3Yc7+sxwNjs8axmrA9OCgnxmEKIq7XCH2VxSgLqTeqbohVtxwUSCW/l8NPrq1nxzj4J2sopu0PPg8/++q4g==} engines: {node: '>=18'} - '@polkadot/types-known@16.4.8': - resolution: {integrity: sha512-WoyOe1hhaoIfIwhVpCM4foK/9VS1/hlQ1BDRoPfQCIw4UP9Al9a3yU2oabjlIwGR6ivptxIL7BB9/C6jtBU8pQ==} + '@polkadot/types-known@16.5.4': + resolution: {integrity: sha512-Dd59y4e3AFCrH9xiqMU4xlG5+Zy0OTy7GQvqJVYXZFyAH+4HYDlxXjJGcSidGAmJcclSYfS3wyEkfw+j1EOVEw==} engines: {node: '>=18'} '@polkadot/types-support@14.3.1': @@ -757,6 +800,10 @@ packages: resolution: {integrity: sha512-rXv4S4QJK3ge5pkiSo83PWNl/SBxibAhvJrV4Myg5vXE/x6iDtd+gOxdz00C2MATaZaSNCsdI78WlK+00jDtCQ==} engines: {node: '>=18'} + '@polkadot/types-support@16.5.4': + resolution: {integrity: sha512-Ra6keCaO73ibxN6MzA56jFq9EReje7jjE4JQfzV5IpyDZdXcmPyJiEfa2Yps/YSP13Gc2e38t9FFyVau0V+SFQ==} + engines: {node: '>=18'} + '@polkadot/types@14.3.1': resolution: {integrity: sha512-O748XgCLDQYxS5nQ6TJSqW88oC4QNIoNVlWZC2Qq4SmEXuSzaNHQwSVtdyPRJCCc4Oi1DCQvGui4O+EukUl7HA==} engines: {node: '>=18'} @@ -765,16 +812,30 @@ packages: resolution: {integrity: sha512-w593kgSlcREBhV349sAzfZI/RTqjVmruZ8vhwxte+nwJnzAINWwM0epFrVVFSQVE+FYjiZrVlH9LWenm5TDx3g==} engines: {node: '>=18'} + '@polkadot/types@16.5.4': + resolution: {integrity: sha512-8Oo1QWaL0DkIc/n2wKBIozPWug/0b2dPVhL+XrXHxJX7rIqS0x8sXDRbM9r166sI0nTqJiUho7pRIkt2PR/DMQ==} + engines: {node: '>=18'} + '@polkadot/util-crypto@13.5.6': resolution: {integrity: sha512-1l+t5lVc9UWxvbJe7/3V+QK8CwrDPuQjDK6FKtDZgZCU0JRrjySOxV0J4PeDIv8TgXZtbIcQFVUhIsJTyKZZJQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': 13.5.6 + '@polkadot/util-crypto@14.0.1': + resolution: {integrity: sha512-Cu7AKUzBTsUkbOtyuNzXcTpDjR9QW0fVR56o3gBmzfUCmvO1vlsuGzmmPzqpHymQQ3rrfqV78CPs62EGhw0R+A==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 14.0.1 + '@polkadot/util@13.5.6': resolution: {integrity: sha512-V+CkW2VdhcMWvl7eXdmlCLGqLxrKvXZtXE76KBbPP5n0Z+8DqQ58IHNOE9xe2LOgqDwIzdLlOUwkyF9Zj19y+Q==} engines: {node: '>=18'} + '@polkadot/util@14.0.1': + resolution: {integrity: sha512-764HhxkPV3x5rM0/p6QdynC2dw26n+SaE+jisjx556ViCd4E28Ke4xSPef6C0Spy4aoXf2gt0PuLEcBvd6fVZg==} + engines: {node: '>=18'} + '@polkadot/wasm-bridge@7.5.1': resolution: {integrity: sha512-E+N3CSnX3YaXpAmfIQ+4bTyiAqJQKvVcMaXjkuL8Tp2zYffClWLG5e+RY15Uh+EWfUl9If4y6cLZi3D5NcpAGQ==} engines: {node: '>=18'} @@ -782,12 +843,25 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-bridge@7.5.4': + resolution: {integrity: sha512-6xaJVvoZbnbgpQYXNw9OHVNWjXmtcoPcWh7hlwx3NpfiLkkjljj99YS+XGZQlq7ks2fVCg7FbfknkNb8PldDaA==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-crypto-asmjs@7.5.1': resolution: {integrity: sha512-jAg7Uusk+xeHQ+QHEH4c/N3b1kEGBqZb51cWe+yM61kKpQwVGZhNdlWetW6U23t/BMyZArIWMsZqmK/Ij0PHog==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' + '@polkadot/wasm-crypto-asmjs@7.5.4': + resolution: {integrity: sha512-ZYwxQHAJ8pPt6kYk9XFmyuFuSS+yirJLonvP+DYbxOrARRUHfN4nzp4zcZNXUuaFhpbDobDSFn6gYzye6BUotA==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/wasm-crypto-init@7.5.1': resolution: {integrity: sha512-Obu4ZEo5jYO6sN31eqCNOXo88rPVkP9TrUOyynuFCnXnXr8V/HlmY/YkAd9F87chZnkTJRlzak17kIWr+i7w3A==} engines: {node: '>=18'} @@ -795,12 +869,25 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-crypto-init@7.5.4': + resolution: {integrity: sha512-U6s4Eo2rHs2n1iR01vTz/sOQ7eOnRPjaCsGWhPV+ZC/20hkVzwPAhiizu/IqMEol4tO2yiSheD4D6bn0KxUJhg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-crypto-wasm@7.5.1': resolution: {integrity: sha512-S2yQSGbOGTcaV6UdipFVyEGanJvG6uD6Tg7XubxpiGbNAblsyYKeFcxyH1qCosk/4qf+GIUwlOL4ydhosZflqg==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' + '@polkadot/wasm-crypto-wasm@7.5.4': + resolution: {integrity: sha512-PsHgLsVTu43eprwSvUGnxybtOEuHPES6AbApcs7y5ZbM2PiDMzYbAjNul098xJK/CPtrxZ0ePDFnaQBmIJyTFw==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/wasm-crypto@7.5.1': resolution: {integrity: sha512-acjt4VJ3w19v7b/SIPsV/5k9s6JsragHKPnwoZ0KTfBvAFXwzz80jUzVGxA06SKHacfCUe7vBRlz7M5oRby1Pw==} engines: {node: '>=18'} @@ -808,24 +895,49 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-crypto@7.5.4': + resolution: {integrity: sha512-1seyClxa7Jd7kQjfnCzTTTfYhTa/KUTDUaD3DMHBk5Q4ZUN1D1unJgX+v1aUeXSPxmzocdZETPJJRZjhVOqg9g==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + '@polkadot/wasm-util@7.5.1': resolution: {integrity: sha512-sbvu71isFhPXpvMVX+EkRnUg/+54Tx7Sf9BEMqxxoPj7cG1I/MKeDEwbQz6MaU4gm7xJqvEWCAemLFcXfHQ/2A==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' + '@polkadot/wasm-util@7.5.4': + resolution: {integrity: sha512-hqPpfhCpRAqCIn/CYbBluhh0TXmwkJnDRjxrU9Bnqtw9nMNa97D8JuOjdd2pi0rxm+eeLQ/f1rQMp71RMM9t4w==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-bigint@13.5.6': resolution: {integrity: sha512-HpqZJ9ud94iK/+0Ofacw7QdtvzFp6SucBBml4XwWZTWoLaLOGDsO7FoWE7yCuwPbX8nLgIM6YmQBeUoZmBtVqQ==} engines: {node: '>=18'} + '@polkadot/x-bigint@14.0.1': + resolution: {integrity: sha512-gfozjGnebr2rqURs31KtaWumbW4rRZpbiluhlmai6luCNrf5u8pB+oLA35kPEntrsLk9PnIG9OsC/n4hEtx4OQ==} + engines: {node: '>=18'} + '@polkadot/x-fetch@13.5.6': resolution: {integrity: sha512-gqx8c6lhnD7Qht+56J+4oeTA8YZ9bAPqzOt2cRJf9MTplMy44W6671T2p6hA3QMvzy4aBTxMie3uKc4tGpLu4A==} engines: {node: '>=18'} + '@polkadot/x-fetch@14.0.1': + resolution: {integrity: sha512-yFsnO0xfkp3bIcvH70ZvmeUINYH1YnjOIS1B430f3w6axkqKhAOWCgzzKGMSRgn4dtm3YgwMBKPQ4nyfIsGOJQ==} + engines: {node: '>=18'} + '@polkadot/x-global@13.5.6': resolution: {integrity: sha512-iw97n0Bnl2284WgAK732LYR4DW6w5+COfBfHzkhiHqs5xwPEwWMgWGrf2hM8WAQqNIz6Ni8w/jagucPyQBur3Q==} engines: {node: '>=18'} + '@polkadot/x-global@14.0.1': + resolution: {integrity: sha512-aCI44DJU4fU0XXqrrSGIpi7JrZXK2kpe0jaQ2p6oDVXOOYEnZYXnMhTTmBE1lF/xtxzX50MnZrrU87jziU0qbA==} + engines: {node: '>=18'} + '@polkadot/x-randomvalues@13.5.6': resolution: {integrity: sha512-w1F9G7FxrJ7+hGC8bh9/VpPH4KN8xmyzgiQdR7+rVB2V8KsKQBQidG69pj5Kwsh3oODOz0yQYsTG6Rm6TAJbGA==} engines: {node: '>=18'} @@ -833,18 +945,37 @@ packages: '@polkadot/util': 13.5.6 '@polkadot/wasm-util': '*' + '@polkadot/x-randomvalues@14.0.1': + resolution: {integrity: sha512-/XkQcvshzJLHITuPrN3zmQKuFIPdKWoaiHhhVLD6rQWV60lTXA3ajw3ocju8ZN7xRxnweMS9Ce0kMPYa0NhRMg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-util': '*' + '@polkadot/x-textdecoder@13.5.6': resolution: {integrity: sha512-jTGeYCxFh89KRrP7bNj1CPqKO36Onsi0iA6A+5YtRS5wjdQU+/OFM/EHLTP2nvkvZo/tOkOewMR9sausisUvVQ==} engines: {node: '>=18'} + '@polkadot/x-textdecoder@14.0.1': + resolution: {integrity: sha512-CcWiPCuPVJsNk4Vq43lgFHqLRBQHb4r9RD7ZIYgmwoebES8TNm4g2ew9ToCzakFKSpzKu6I07Ne9wv/dt5zLuw==} + engines: {node: '>=18'} + '@polkadot/x-textencoder@13.5.6': resolution: {integrity: sha512-iVwz9+OrYCEF9QbNfr9M206mmWvY/AhDmGPfAIeTR4fRgKGVYqcP8RIF8iu/x0MVQWqiVO3vlhlUk7MfrmAnoQ==} engines: {node: '>=18'} + '@polkadot/x-textencoder@14.0.1': + resolution: {integrity: sha512-VY51SpQmF1ccmAGLfxhYnAe95Spfz049WZ/+kK4NfsGF9WejxVdU53Im5C80l45r8qHuYQsCWU3+t0FNunh2Kg==} + engines: {node: '>=18'} + '@polkadot/x-ws@13.5.6': resolution: {integrity: sha512-247ktVp/iE57NTXjFpHaoPoDcvoEPb8+16r2Eq0IBQ2umOV7P6KmxvdNx5eFUvRsgXvBpNwUXE1WVnXjK/eDtA==} engines: {node: '>=18'} + '@polkadot/x-ws@14.0.1': + resolution: {integrity: sha512-Q18hoSuOl7F4aENNGNt9XYxkrjwZlC6xye9OQrPDeHam1SrvflGv9mSZHyo+mwJs0z1PCz2STpPEN9PKfZvHng==} + engines: {node: '>=18'} + '@protobufjs/aspromise@1.1.2': resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -878,6 +1009,9 @@ packages: '@scure/base@1.2.6': resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==} + '@scure/sr25519@0.2.0': + resolution: {integrity: sha512-uUuLP7Z126XdSizKtrCGqYyR3b3hYtJ6Fg/XFUXmc2//k2aXHDLqZwFeXxL97gg4XydPROPVnuaHGF2+xriSKg==} + '@smithy/abort-controller@4.2.0': resolution: {integrity: sha512-PLUYa+SUKOEZtXFURBu/CNxlsxfaFGxSBPcStL13KpVeVWIfdezWyDqkz7iDLmwnxojXD0s5KzuB5HGHvt4Aeg==} engines: {node: '>=18.0.0'} @@ -3228,6 +3362,20 @@ snapshots: - supports-color - utf-8-validate + '@polkadot/api-augment@16.5.4': + dependencies: + '@polkadot/api-base': 16.5.4 + '@polkadot/rpc-augment': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/types-augment': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + '@polkadot/api-base@14.3.1': dependencies: '@polkadot/rpc-core': 14.3.1 @@ -3252,12 +3400,24 @@ snapshots: - supports-color - utf-8-validate + '@polkadot/api-base@16.5.4': + dependencies: + '@polkadot/rpc-core': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/util': 14.0.1 + rxjs: 7.8.2 + tslib: 2.8.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + '@polkadot/api-cli@0.63.16': dependencies: - '@polkadot/api': 16.4.8 + '@polkadot/api': 16.5.4 '@polkadot/api-augment': 16.4.8 '@polkadot/keyring': 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) - '@polkadot/types': 16.4.8 + '@polkadot/types': 16.5.4 '@polkadot/util': 13.5.6 '@polkadot/util-crypto': 13.5.6(@polkadot/util@13.5.6) tslib: 2.8.1 @@ -3284,16 +3444,16 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@16.4.8': + '@polkadot/api-derive@16.5.4': dependencies: - '@polkadot/api': 16.4.8 - '@polkadot/api-augment': 16.4.8 - '@polkadot/api-base': 16.4.8 - '@polkadot/rpc-core': 16.4.8 - '@polkadot/types': 16.4.8 - '@polkadot/types-codec': 16.4.8 - '@polkadot/util': 13.5.6 - '@polkadot/util-crypto': 13.5.6(@polkadot/util@13.5.6) + '@polkadot/api': 16.5.4 + '@polkadot/api-augment': 16.5.4 + '@polkadot/api-base': 16.5.4 + '@polkadot/rpc-core': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1(@polkadot/util@14.0.1) rxjs: 7.8.2 tslib: 2.8.1 transitivePeerDependencies: @@ -3325,22 +3485,22 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@16.4.8': - dependencies: - '@polkadot/api-augment': 16.4.8 - '@polkadot/api-base': 16.4.8 - '@polkadot/api-derive': 16.4.8 - '@polkadot/keyring': 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) - '@polkadot/rpc-augment': 16.4.8 - '@polkadot/rpc-core': 16.4.8 - '@polkadot/rpc-provider': 16.4.8 - '@polkadot/types': 16.4.8 - '@polkadot/types-augment': 16.4.8 - '@polkadot/types-codec': 16.4.8 - '@polkadot/types-create': 16.4.8 - '@polkadot/types-known': 16.4.8 - '@polkadot/util': 13.5.6 - '@polkadot/util-crypto': 13.5.6(@polkadot/util@13.5.6) + '@polkadot/api@16.5.4': + dependencies: + '@polkadot/api-augment': 16.5.4 + '@polkadot/api-base': 16.5.4 + '@polkadot/api-derive': 16.5.4 + '@polkadot/keyring': 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) + '@polkadot/rpc-augment': 16.5.4 + '@polkadot/rpc-core': 16.5.4 + '@polkadot/rpc-provider': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/types-augment': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/types-create': 16.5.4 + '@polkadot/types-known': 16.5.4 + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1(@polkadot/util@14.0.1) eventemitter3: 5.0.1 rxjs: 7.8.2 tslib: 2.8.1 @@ -3355,12 +3515,24 @@ snapshots: '@polkadot/util-crypto': 13.5.6(@polkadot/util@13.5.6) tslib: 2.8.1 + '@polkadot/keyring@14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1)': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1(@polkadot/util@14.0.1) + tslib: 2.8.1 + '@polkadot/networks@13.5.6': dependencies: '@polkadot/util': 13.5.6 '@substrate/ss58-registry': 1.51.0 tslib: 2.8.1 + '@polkadot/networks@14.0.1': + dependencies: + '@polkadot/util': 14.0.1 + '@substrate/ss58-registry': 1.51.0 + tslib: 2.8.1 + '@polkadot/rpc-augment@14.3.1': dependencies: '@polkadot/rpc-core': 14.3.1 @@ -3385,6 +3557,18 @@ snapshots: - supports-color - utf-8-validate + '@polkadot/rpc-augment@16.5.4': + dependencies: + '@polkadot/rpc-core': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + '@polkadot/rpc-core@14.3.1': dependencies: '@polkadot/rpc-augment': 14.3.1 @@ -3411,6 +3595,19 @@ snapshots: - supports-color - utf-8-validate + '@polkadot/rpc-core@16.5.4': + dependencies: + '@polkadot/rpc-augment': 16.5.4 + '@polkadot/rpc-provider': 16.5.4 + '@polkadot/types': 16.5.4 + '@polkadot/util': 14.0.1 + rxjs: 7.8.2 + tslib: 2.8.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + '@polkadot/rpc-provider@14.3.1': dependencies: '@polkadot/keyring': 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) @@ -3453,6 +3650,27 @@ snapshots: - supports-color - utf-8-validate + '@polkadot/rpc-provider@16.5.4': + dependencies: + '@polkadot/keyring': 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) + '@polkadot/types': 16.5.4 + '@polkadot/types-support': 16.5.4 + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1(@polkadot/util@14.0.1) + '@polkadot/x-fetch': 14.0.1 + '@polkadot/x-global': 14.0.1 + '@polkadot/x-ws': 14.0.1 + eventemitter3: 5.0.1 + mock-socket: 9.3.1 + nock: 13.5.6 + tslib: 2.8.1 + optionalDependencies: + '@substrate/connect': 0.8.11 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + '@polkadot/types-augment@14.3.1': dependencies: '@polkadot/types': 14.3.1 @@ -3467,6 +3685,13 @@ snapshots: '@polkadot/util': 13.5.6 tslib: 2.8.1 + '@polkadot/types-augment@16.5.4': + dependencies: + '@polkadot/types': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + '@polkadot/types-codec@14.3.1': dependencies: '@polkadot/util': 13.5.6 @@ -3479,6 +3704,12 @@ snapshots: '@polkadot/x-bigint': 13.5.6 tslib: 2.8.1 + '@polkadot/types-codec@16.5.4': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/x-bigint': 14.0.1 + tslib: 2.8.1 + '@polkadot/types-create@14.3.1': dependencies: '@polkadot/types-codec': 14.3.1 @@ -3491,6 +3722,12 @@ snapshots: '@polkadot/util': 13.5.6 tslib: 2.8.1 + '@polkadot/types-create@16.5.4': + dependencies: + '@polkadot/types-codec': 16.5.4 + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + '@polkadot/types-known@14.3.1': dependencies: '@polkadot/networks': 13.5.6 @@ -3500,13 +3737,13 @@ snapshots: '@polkadot/util': 13.5.6 tslib: 2.8.1 - '@polkadot/types-known@16.4.8': + '@polkadot/types-known@16.5.4': dependencies: - '@polkadot/networks': 13.5.6 - '@polkadot/types': 16.4.8 - '@polkadot/types-codec': 16.4.8 - '@polkadot/types-create': 16.4.8 - '@polkadot/util': 13.5.6 + '@polkadot/networks': 14.0.1 + '@polkadot/types': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/types-create': 16.5.4 + '@polkadot/util': 14.0.1 tslib: 2.8.1 '@polkadot/types-support@14.3.1': @@ -3519,6 +3756,11 @@ snapshots: '@polkadot/util': 13.5.6 tslib: 2.8.1 + '@polkadot/types-support@16.5.4': + dependencies: + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + '@polkadot/types@14.3.1': dependencies: '@polkadot/keyring': 13.5.6(@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6))(@polkadot/util@13.5.6) @@ -3541,6 +3783,17 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 + '@polkadot/types@16.5.4': + dependencies: + '@polkadot/keyring': 14.0.1(@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1))(@polkadot/util@14.0.1) + '@polkadot/types-augment': 16.5.4 + '@polkadot/types-codec': 16.5.4 + '@polkadot/types-create': 16.5.4 + '@polkadot/util': 14.0.1 + '@polkadot/util-crypto': 14.0.1(@polkadot/util@14.0.1) + rxjs: 7.8.2 + tslib: 2.8.1 + '@polkadot/util-crypto@13.5.6(@polkadot/util@13.5.6)': dependencies: '@noble/curves': 1.9.7 @@ -3554,6 +3807,20 @@ snapshots: '@scure/base': 1.2.6 tslib: 2.8.1 + '@polkadot/util-crypto@14.0.1(@polkadot/util@14.0.1)': + dependencies: + '@noble/curves': 1.9.7 + '@noble/hashes': 1.8.0 + '@polkadot/networks': 14.0.1 + '@polkadot/util': 14.0.1 + '@polkadot/wasm-crypto': 7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1))) + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/x-bigint': 14.0.1 + '@polkadot/x-randomvalues': 14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)) + '@scure/base': 1.2.6 + '@scure/sr25519': 0.2.0 + tslib: 2.8.1 + '@polkadot/util@13.5.6': dependencies: '@polkadot/x-bigint': 13.5.6 @@ -3564,6 +3831,16 @@ snapshots: bn.js: 5.2.2 tslib: 2.8.1 + '@polkadot/util@14.0.1': + dependencies: + '@polkadot/x-bigint': 14.0.1 + '@polkadot/x-global': 14.0.1 + '@polkadot/x-textdecoder': 14.0.1 + '@polkadot/x-textencoder': 14.0.1 + '@types/bn.js': 5.2.0 + bn.js: 5.2.2 + tslib: 2.8.1 + '@polkadot/wasm-bridge@7.5.1(@polkadot/util@13.5.6)(@polkadot/x-randomvalues@13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)))': dependencies: '@polkadot/util': 13.5.6 @@ -3571,11 +3848,23 @@ snapshots: '@polkadot/x-randomvalues': 13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)) tslib: 2.8.1 + '@polkadot/wasm-bridge@7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)))': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/x-randomvalues': 14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)) + tslib: 2.8.1 + '@polkadot/wasm-crypto-asmjs@7.5.1(@polkadot/util@13.5.6)': dependencies: '@polkadot/util': 13.5.6 tslib: 2.8.1 + '@polkadot/wasm-crypto-asmjs@7.5.4(@polkadot/util@14.0.1)': + dependencies: + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + '@polkadot/wasm-crypto-init@7.5.1(@polkadot/util@13.5.6)(@polkadot/x-randomvalues@13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)))': dependencies: '@polkadot/util': 13.5.6 @@ -3586,12 +3875,28 @@ snapshots: '@polkadot/x-randomvalues': 13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)) tslib: 2.8.1 + '@polkadot/wasm-crypto-init@7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)))': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-bridge': 7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1))) + '@polkadot/wasm-crypto-asmjs': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/wasm-crypto-wasm': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/x-randomvalues': 14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)) + tslib: 2.8.1 + '@polkadot/wasm-crypto-wasm@7.5.1(@polkadot/util@13.5.6)': dependencies: '@polkadot/util': 13.5.6 '@polkadot/wasm-util': 7.5.1(@polkadot/util@13.5.6) tslib: 2.8.1 + '@polkadot/wasm-crypto-wasm@7.5.4(@polkadot/util@14.0.1)': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + tslib: 2.8.1 + '@polkadot/wasm-crypto@7.5.1(@polkadot/util@13.5.6)(@polkadot/x-randomvalues@13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)))': dependencies: '@polkadot/util': 13.5.6 @@ -3603,26 +3908,57 @@ snapshots: '@polkadot/x-randomvalues': 13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)) tslib: 2.8.1 + '@polkadot/wasm-crypto@7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)))': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-bridge': 7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1))) + '@polkadot/wasm-crypto-asmjs': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/wasm-crypto-init': 7.5.4(@polkadot/util@14.0.1)(@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1))) + '@polkadot/wasm-crypto-wasm': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/x-randomvalues': 14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)) + tslib: 2.8.1 + '@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6)': dependencies: '@polkadot/util': 13.5.6 tslib: 2.8.1 + '@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1)': + dependencies: + '@polkadot/util': 14.0.1 + tslib: 2.8.1 + '@polkadot/x-bigint@13.5.6': dependencies: '@polkadot/x-global': 13.5.6 tslib: 2.8.1 + '@polkadot/x-bigint@14.0.1': + dependencies: + '@polkadot/x-global': 14.0.1 + tslib: 2.8.1 + '@polkadot/x-fetch@13.5.6': dependencies: '@polkadot/x-global': 13.5.6 node-fetch: 3.3.2 tslib: 2.8.1 + '@polkadot/x-fetch@14.0.1': + dependencies: + '@polkadot/x-global': 14.0.1 + node-fetch: 3.3.2 + tslib: 2.8.1 + '@polkadot/x-global@13.5.6': dependencies: tslib: 2.8.1 + '@polkadot/x-global@14.0.1': + dependencies: + tslib: 2.8.1 + '@polkadot/x-randomvalues@13.5.6(@polkadot/util@13.5.6)(@polkadot/wasm-util@7.5.1(@polkadot/util@13.5.6))': dependencies: '@polkadot/util': 13.5.6 @@ -3630,16 +3966,33 @@ snapshots: '@polkadot/x-global': 13.5.6 tslib: 2.8.1 + '@polkadot/x-randomvalues@14.0.1(@polkadot/util@14.0.1)(@polkadot/wasm-util@7.5.4(@polkadot/util@14.0.1))': + dependencies: + '@polkadot/util': 14.0.1 + '@polkadot/wasm-util': 7.5.4(@polkadot/util@14.0.1) + '@polkadot/x-global': 14.0.1 + tslib: 2.8.1 + '@polkadot/x-textdecoder@13.5.6': dependencies: '@polkadot/x-global': 13.5.6 tslib: 2.8.1 + '@polkadot/x-textdecoder@14.0.1': + dependencies: + '@polkadot/x-global': 14.0.1 + tslib: 2.8.1 + '@polkadot/x-textencoder@13.5.6': dependencies: '@polkadot/x-global': 13.5.6 tslib: 2.8.1 + '@polkadot/x-textencoder@14.0.1': + dependencies: + '@polkadot/x-global': 14.0.1 + tslib: 2.8.1 + '@polkadot/x-ws@13.5.6': dependencies: '@polkadot/x-global': 13.5.6 @@ -3649,6 +4002,15 @@ snapshots: - bufferutil - utf-8-validate + '@polkadot/x-ws@14.0.1': + dependencies: + '@polkadot/x-global': 14.0.1 + tslib: 2.8.1 + ws: 8.19.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + '@protobufjs/aspromise@1.1.2': {} '@protobufjs/base64@1.1.2': {} @@ -3674,6 +4036,11 @@ snapshots: '@scure/base@1.2.6': {} + '@scure/sr25519@0.2.0': + dependencies: + '@noble/curves': 1.9.7 + '@noble/hashes': 1.8.0 + '@smithy/abort-controller@4.2.0': dependencies: '@smithy/types': 4.6.0