From 99cf0fe7146627d436dbf013df97948376e3cdb0 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 13:08:52 +0300 Subject: [PATCH 01/11] General_xcm_config --- scripts/utils/chain_model.py | 9 +- scripts/xcm_transfers/add_chain_asset_ids.py | 26 ++ scripts/xcm_transfers/sync_parachain_ids.py | 73 ++++ .../xcm_transfers/utils/xcm_config_files.py | 2 + xcm/v8/xcm_general_config.json | 276 +++++++++++++ xcm/v8/xcm_general_config_dev.json | 368 ++++++++++++++++++ 6 files changed, 753 insertions(+), 1 deletion(-) create mode 100644 scripts/xcm_transfers/add_chain_asset_ids.py create mode 100644 scripts/xcm_transfers/sync_parachain_ids.py create mode 100644 xcm/v8/xcm_general_config.json create mode 100644 xcm/v8/xcm_general_config_dev.json diff --git a/scripts/utils/chain_model.py b/scripts/utils/chain_model.py index 011e61445..4e033874c 100644 --- a/scripts/utils/chain_model.py +++ b/scripts/utils/chain_model.py @@ -99,6 +99,9 @@ def has_evm_addresses(self): def get_asset_by_symbol(self, symbol: str) -> ChainAsset: return next((a for a in self.assets if a.symbol == symbol)) + def get_asset_by_symbol_or_null(self, symbol: str) -> ChainAsset | None: + return next((a for a in self.assets if a.symbol == symbol), None) + def get_asset_by_id(self, id: int) -> ChainAsset: return next((a for a in self.assets if a.id == id)) @@ -160,8 +163,12 @@ def __init__(self, data: dict, chain: Chain, chain_cache: dict): def __getitem__(self, item): return self._data[item] + @staticmethod + def unify_symbol(symbol: str) -> str: + return symbol.removeprefix("xc") + def unified_symbol(self) -> str: - return self.symbol.removeprefix("xc") + return self.unify_symbol(self.symbol) def planks(self, amount: int | float) -> int: return int(amount * 10 ** self.precision) diff --git a/scripts/xcm_transfers/add_chain_asset_ids.py b/scripts/xcm_transfers/add_chain_asset_ids.py new file mode 100644 index 000000000..d623cdac9 --- /dev/null +++ b/scripts/xcm_transfers/add_chain_asset_ids.py @@ -0,0 +1,26 @@ +import json + +from scripts.utils.chain_model import Chain, ChainAsset +from scripts.utils.work_with_data import get_data_from_file, write_data_to_file +from scripts.xcm_transfers.config_setup import get_xcm_config_files +from scripts.xcm_transfers.utils.log import warn_log + +config_files = get_xcm_config_files() +chains_file = get_data_from_file(config_files.chains) +chains = [Chain(it) for it in chains_file] +chains_by_id = {chain.chainId:chain for chain in chains} + +general_config = get_data_from_file(config_files.general_config) +asset_locations_config = general_config["assets"]["assetLocations"] + +for (reserve_id, asset_config) in asset_locations_config.entries(): + normalized = ChainAsset.unify_symbol(reserve_id) + chain = chains_by_id[asset_config["chainId"]] + asset = chain.get_asset_by_symbol_or_null(normalized) + + if not asset: + warn_log("Failed to find asset with symbol {}".format(normalized)) + else: + asset_config["assetId"] = asset.id + +write_data_to_file(config_files.general_config, json.dumps(general_config, indent=4)) \ No newline at end of file diff --git a/scripts/xcm_transfers/sync_parachain_ids.py b/scripts/xcm_transfers/sync_parachain_ids.py new file mode 100644 index 000000000..485714b04 --- /dev/null +++ b/scripts/xcm_transfers/sync_parachain_ids.py @@ -0,0 +1,73 @@ +from __future__ import annotations + +import json +from typing import List + +from substrateinterface import SubstrateInterface +from substrateinterface.exceptions import SubstrateRequestException + +from scripts.utils.chain_model import Chain +from scripts.utils.work_with_data import get_data_from_file, write_data_to_file +from scripts.xcm_transfers.config_setup import get_xcm_config_files +from scripts.xcm_transfers.utils.chain_ids import RELAYS +from scripts.xcm_transfers.utils.dry_run_api_types import dry_run_v1, dry_run_v2 + +config_files = get_xcm_config_files() +general_config = get_data_from_file(config_files.general_config) + +data = {} + +def process_chain(idx, chain, len): + print(f"\n{idx + 1}/{len}. {chain.name}") + + chain.create_connection() + + parachainId = None + + if chain.parentId is not None: + try: + parachainId = chain.substrate.query("ParachainInfo", "ParachainId").value + except Exception as e: + print(f"Failed to fetch ParachainId for {chain.name} due to {e}, skipping") + return + + if parachainId is not None: + data[chain.chainId] = parachainId + save_synced_data() + + print(f"{chain.name}: {parachainId}") + +def save_synced_data(): + general_config["chains"]["parachainIds"] = data + + write_data_to_file(config_files.general_config, json.dumps(general_config, indent=4)) + + +def find_xcm_chains(chains: List[Chain], relay_ids: list[str] = RELAYS) -> List[Chain]: + result = [] + + for relay_id in relay_ids: + relay = next((chain for chain in chains if chain.chainId == relay_id), None) + if relay is None: + continue + + parachains = [chain for chain in chains if chain.parentId == relay_id] + if len(parachains) == 0: + continue + + result.extend([relay] + parachains) + + return result + +chains_file = get_data_from_file(config_files.chains) +chains = [Chain(it) for it in chains_file] + +xcm_chains = find_xcm_chains(chains) + +for idx, chain in enumerate(xcm_chains): + try: + process_chain(idx, chain, len(xcm_chains)) + except Exception as e: + print(f"Error happened when processing {chain.name}, skipping: {e}") + + continue diff --git a/scripts/xcm_transfers/utils/xcm_config_files.py b/scripts/xcm_transfers/utils/xcm_config_files.py index 9831c2be1..2f469d0d1 100644 --- a/scripts/xcm_transfers/utils/xcm_config_files.py +++ b/scripts/xcm_transfers/utils/xcm_config_files.py @@ -16,3 +16,5 @@ class XCMConfigFiles(object): xcm_dynamic_config: str xcm_additional_data: str + + general_config: str diff --git a/xcm/v8/xcm_general_config.json b/xcm/v8/xcm_general_config.json new file mode 100644 index 000000000..a6ca488e2 --- /dev/null +++ b/xcm/v8/xcm_general_config.json @@ -0,0 +1,276 @@ +{ + "chains": { + "parachainIds": { + } + }, + "assets": { + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {} + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {} + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + } + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "parachainId": 2086 + } + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "parachainId": 3369 + } + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "parachainId": 2026, + "palletInstance": 2 + } + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "parachainId": 2051, + "generalKey": "0x414a554e" + } + } + }, + "reserveIdOverrides": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "0": "KSM-Statemine", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "4": "KAR", + "5": "BNC", + "11": "HKO", + "3": "KINT", + "16": "SDN", + "2": "KSM", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "7": "USDT-Statemine" + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "4": "USDT-Statemine" + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "10": "USDT-Statemine" + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "0": "DOT-Statemint", + "1": "USDT-Statemint", + "2": "USDC-Statemint" + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "9": "USDT-Statemint", + "15": "USDC-Statemint", + "11": "BNC-Polkadot" + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "1": "DOT", + "10": "USDT-Statemint", + "3": "ACA", + "8": "ASTR", + "5": "INTR", + "6": "iBTC", + "4": "PARA", + "11": "CFG", + "22": "MANTA", + "23": "USDC-Statemint", + "16": "NODL", + "19": "vDOT" + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "3": "USDT-Statemint", + "0": "BNC-Polkadot" + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "9": "USDT-Statemint" + } + } + } +} \ No newline at end of file diff --git a/xcm/v8/xcm_general_config_dev.json b/xcm/v8/xcm_general_config_dev.json new file mode 100644 index 000000000..bc4956434 --- /dev/null +++ b/xcm/v8/xcm_general_config_dev.json @@ -0,0 +1,368 @@ +{ + "chains": { + "parachainIds": { + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, + "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, + "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, + "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, + "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, + "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2": 2000, + "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, + "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, + "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, + "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, + "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, + "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, + "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, + "b2985e778bb748c70e450dcc084cc7da79fe742cc23d3b040abd7028187de69c": 3417, + "4de660c7530d0f46968b5a243d10092ca9a55e3575fc5d83b91e24c20d994502": 2034, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, + "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, + "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, + "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13": 2124, + "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, + "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, + "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, + "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, + "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005, + "086319b29662e34a4f7a3de034afe64c93e3ed477e3aed3ab3ef6e31d33bc179": 3422, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": 1000, + "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782": 1002, + "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c": 1004, + "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44": 1001 + } + }, + "assets": { + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {} + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {} + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {} + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {} + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + } + }, + "DED-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "30" + } + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "parachainId": 2086 + } + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "parachainId": 3369 + } + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "parachainId": 2026, + "palletInstance": 2 + } + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "parachainId": 2051, + "generalKey": "0x414a554e" + } + } + }, + "reserveIdOverrides": { + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "4": "KAR", + "2": "KSM", + "5": "BNC", + "1": "RMRK", + "11": "HKO", + "3": "KINT", + "7": "USDT-Statemine", + "17": "XRT", + "16": "SDN" + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "3": "ACA", + "1": "DOT", + "4": "PARA", + "5": "INTR", + "6": "iBTC", + "10": "USDT-Statemint", + "8": "ASTR", + "11": "CFG", + "22": "MANTA", + "23": "USDC-Statemint", + "16": "NODL", + "19": "vDOT" + }, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "0": "KSM-Statemine", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "7": "USDT-Statemine" + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "0": "DOT-Statemint", + "1": "USDT-Statemint", + "2": "USDC-Statemint" + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "4": "USDT-Statemine" + }, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { + "0": "WND-Westmint" + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "3": "USDT-Statemint", + "0": "BNC-Polkadot" + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "9": "USDT-Statemint", + "15": "USDC-Statemint", + "11": "BNC-Polkadot" + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "9": "USDT-Statemint" + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "10": "USDT-Statemine" + } + } + } +} From 3f3f138784407e0ded07b0592fc729bb53690acf Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 13:18:47 +0300 Subject: [PATCH 02/11] Add chain ids script --- scripts/xcm_transfers/add_chain_asset_ids.py | 6 +- xcm/v8/xcm_general_config_dev.json | 110 ++++++++++++------- 2 files changed, 72 insertions(+), 44 deletions(-) diff --git a/scripts/xcm_transfers/add_chain_asset_ids.py b/scripts/xcm_transfers/add_chain_asset_ids.py index d623cdac9..d0591e0fd 100644 --- a/scripts/xcm_transfers/add_chain_asset_ids.py +++ b/scripts/xcm_transfers/add_chain_asset_ids.py @@ -11,10 +11,10 @@ chains_by_id = {chain.chainId:chain for chain in chains} general_config = get_data_from_file(config_files.general_config) -asset_locations_config = general_config["assets"]["assetLocations"] +asset_locations_config = general_config["assets"]["assetsLocation"] -for (reserve_id, asset_config) in asset_locations_config.entries(): - normalized = ChainAsset.unify_symbol(reserve_id) +for (reserve_id, asset_config) in asset_locations_config.items(): + normalized = ChainAsset.unify_symbol(reserve_id).removesuffix("-Statemine").removesuffix("-Westmint").removesuffix("-Polkadot").removesuffix("-Statemint") chain = chains_by_id[asset_config["chainId"]] asset = chain.get_asset_by_symbol_or_null(normalized) diff --git a/xcm/v8/xcm_general_config_dev.json b/xcm/v8/xcm_general_config_dev.json index bc4956434..c4c5cb5c1 100644 --- a/xcm/v8/xcm_general_config_dev.json +++ b/xcm/v8/xcm_general_config_dev.json @@ -78,58 +78,69 @@ "multiLocation": { "parachainId": 2000, "generalKey": "0x0080" - } + }, + "assetId": 0 }, "KSM": { "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "KSM-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "DOT-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "MOVR": { "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", "multiLocation": { "parachainId": 2023, "palletInstance": 10 - } + }, + "assetId": 0 }, "BNC": { "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "multiLocation": { "parachainId": 2001, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "UNIT": { "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "ACA": { "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", "multiLocation": { "parachainId": 2000, "generalKey": "0x0000" - } + }, + "assetId": 0 }, "DOT": { "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "GLMR": { "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "multiLocation": { "parachainId": 2004, "palletInstance": 10 - } + }, + "assetId": 0 }, "RMRK": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, "multiLocation": { "parachainId": 1000, "palletInstance": 50, @@ -141,57 +152,58 @@ "multiLocation": { "parachainId": 2092, "generalKey": "0x000c" - } - }, - "HKO": { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "multiLocation": { - "parachainId": 2085, - "generalKey": "0x484b4f" - } + }, + "assetId": 0 }, "PARA": { "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", "multiLocation": { "parachainId": 2012, "generalKey": "0x50415241" - } + }, + "assetId": 0 }, "INTR": { "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", "multiLocation": { "parachainId": 2032, "generalKey": "0x0002" - } + }, + "assetId": 0 }, "iBTC": { "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", "multiLocation": { "parachainId": 2032, "generalKey": "0x0001" - } + }, + "assetId": 1 }, "kBTC": { "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "multiLocation": { "parachainId": 2092, "generalKey": "0x000b" - } + }, + "assetId": 1 }, "BSX": { "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", "multiLocation": { "parachainId": 2090, "generalIndex": "0" - } + }, + "assetId": 0 }, "WND": { "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "WND-Westmint": { "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "USDT-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", @@ -199,7 +211,8 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1984" - } + }, + "assetId": 7 }, "USDT-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", @@ -207,32 +220,37 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1984" - } + }, + "assetId": 1 }, "XRT": { "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", "multiLocation": { "parachainId": 2048 - } + }, + "assetId": 0 }, "ASTR": { "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", "multiLocation": { "parachainId": 2006 - } + }, + "assetId": 0 }, "SDN": { "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", "multiLocation": { "parachainId": 2007 - } + }, + "assetId": 0 }, "CFG": { "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", "multiLocation": { "parachainId": 2031, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "USDC-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", @@ -240,33 +258,38 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1337" - } + }, + "assetId": 2 }, "BNC-Polkadot": { "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", "multiLocation": { "parachainId": 2030, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "vDOT": { "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", "multiLocation": { "parachainId": 2030, "generalKey": "0x0900" - } + }, + "assetId": 5 }, "SUB": { "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", "multiLocation": { "parachainId": 2101 - } + }, + "assetId": 0 }, "MANTA": { "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", "multiLocation": { "parachainId": 2104 - } + }, + "assetId": 0 }, "DED-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", @@ -274,33 +297,38 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "30" - } + }, + "assetId": 3 }, "KILT": { "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", "multiLocation": { "parachainId": 2086 - } + }, + "assetId": 0 }, "MYTH": { "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", "multiLocation": { "parachainId": 3369 - } + }, + "assetId": 0 }, "NODL": { "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", "multiLocation": { "parachainId": 2026, "palletInstance": 2 - } + }, + "assetId": 0 }, "AJUN": { "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", "multiLocation": { "parachainId": 2051, "generalKey": "0x414a554e" - } + }, + "assetId": 0 } }, "reserveIdOverrides": { From 0792357fd7709fa7adbdc2c73b3aac84bbc9d2f0 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 13:20:11 +0300 Subject: [PATCH 03/11] Reformat with 2 spaces --- scripts/xcm_transfers/add_chain_asset_ids.py | 2 +- xcm/v8/xcm_general_config_dev.json | 782 +++++++++---------- 2 files changed, 392 insertions(+), 392 deletions(-) diff --git a/scripts/xcm_transfers/add_chain_asset_ids.py b/scripts/xcm_transfers/add_chain_asset_ids.py index d0591e0fd..98f189a4e 100644 --- a/scripts/xcm_transfers/add_chain_asset_ids.py +++ b/scripts/xcm_transfers/add_chain_asset_ids.py @@ -23,4 +23,4 @@ else: asset_config["assetId"] = asset.id -write_data_to_file(config_files.general_config, json.dumps(general_config, indent=4)) \ No newline at end of file +write_data_to_file(config_files.general_config, json.dumps(general_config, indent=2)) \ No newline at end of file diff --git a/xcm/v8/xcm_general_config_dev.json b/xcm/v8/xcm_general_config_dev.json index c4c5cb5c1..5b5656a94 100644 --- a/xcm/v8/xcm_general_config_dev.json +++ b/xcm/v8/xcm_general_config_dev.json @@ -1,396 +1,396 @@ { - "chains": { - "parachainIds": { - "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, - "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, - "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, - "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, - "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, - "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, - "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, - "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, - "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, - "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, - "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, - "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, - "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, - "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, - "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, - "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, - "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, - "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, - "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, - "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, - "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, - "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, - "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, - "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, - "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, - "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2": 2000, - "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, - "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, - "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, - "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, - "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, - "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, - "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, - "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, - "b2985e778bb748c70e450dcc084cc7da79fe742cc23d3b040abd7028187de69c": 3417, - "4de660c7530d0f46968b5a243d10092ca9a55e3575fc5d83b91e24c20d994502": 2034, - "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, - "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, - "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, - "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, - "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, - "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, - "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, - "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, - "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, - "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, - "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, - "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, - "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, - "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, - "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, - "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, - "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, - "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, - "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, - "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, - "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, - "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13": 2124, - "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, - "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, - "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, - "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, - "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005, - "086319b29662e34a4f7a3de034afe64c93e3ed477e3aed3ab3ef6e31d33bc179": 3422, - "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": 1000, - "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782": 1002, - "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c": 1004, - "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44": 1001 - } - }, - "assets": { - "assetsLocation": { - "KAR": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "multiLocation": { - "parachainId": 2000, - "generalKey": "0x0080" - }, - "assetId": 0 - }, - "KSM": { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "multiLocation": {}, - "assetId": 0 - }, - "KSM-Statemine": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "multiLocation": {}, - "assetId": 0 - }, - "DOT-Statemint": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": {}, - "assetId": 0 - }, - "MOVR": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "multiLocation": { - "parachainId": 2023, - "palletInstance": 10 - }, - "assetId": 0 - }, - "BNC": { - "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", - "multiLocation": { - "parachainId": 2001, - "generalKey": "0x0001" - }, - "assetId": 0 - }, - "UNIT": { - "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", - "multiLocation": {}, - "assetId": 0 - }, - "ACA": { - "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", - "multiLocation": { - "parachainId": 2000, - "generalKey": "0x0000" - }, - "assetId": 0 - }, - "DOT": { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "multiLocation": {}, - "assetId": 0 - }, - "GLMR": { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "multiLocation": { - "parachainId": 2004, - "palletInstance": 10 - }, - "assetId": 0 - }, - "RMRK": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assetId": 1, - "multiLocation": { - "parachainId": 1000, - "palletInstance": 50, - "generalIndex": "8" - } - }, - "KINT": { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", - "multiLocation": { - "parachainId": 2092, - "generalKey": "0x000c" - }, - "assetId": 0 - }, - "PARA": { - "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", - "multiLocation": { - "parachainId": 2012, - "generalKey": "0x50415241" - }, - "assetId": 0 - }, - "INTR": { - "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", - "multiLocation": { - "parachainId": 2032, - "generalKey": "0x0002" - }, - "assetId": 0 - }, - "iBTC": { - "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", - "multiLocation": { - "parachainId": 2032, - "generalKey": "0x0001" - }, - "assetId": 1 - }, - "kBTC": { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", - "multiLocation": { - "parachainId": 2092, - "generalKey": "0x000b" - }, - "assetId": 1 - }, - "BSX": { - "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", - "multiLocation": { - "parachainId": 2090, - "generalIndex": "0" - }, - "assetId": 0 - }, - "WND": { - "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", - "multiLocation": {}, - "assetId": 0 - }, - "WND-Westmint": { - "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", - "multiLocation": {}, - "assetId": 0 - }, - "USDT-Statemine": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "multiLocation": { - "parachainId": 1000, - "palletInstance": 50, - "generalIndex": "1984" - }, - "assetId": 7 - }, - "USDT-Statemint": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": { - "parachainId": 1000, - "palletInstance": 50, - "generalIndex": "1984" - }, - "assetId": 1 - }, - "XRT": { - "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", - "multiLocation": { - "parachainId": 2048 - }, - "assetId": 0 - }, - "ASTR": { - "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", - "multiLocation": { - "parachainId": 2006 - }, - "assetId": 0 - }, - "SDN": { - "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", - "multiLocation": { - "parachainId": 2007 - }, - "assetId": 0 - }, - "CFG": { - "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", - "multiLocation": { - "parachainId": 2031, - "generalKey": "0x0001" - }, - "assetId": 0 - }, - "USDC-Statemint": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": { - "parachainId": 1000, - "palletInstance": 50, - "generalIndex": "1337" - }, - "assetId": 2 - }, - "BNC-Polkadot": { - "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", - "multiLocation": { - "parachainId": 2030, - "generalKey": "0x0001" - }, - "assetId": 0 - }, - "vDOT": { - "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", - "multiLocation": { - "parachainId": 2030, - "generalKey": "0x0900" - }, - "assetId": 5 - }, - "SUB": { - "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", - "multiLocation": { - "parachainId": 2101 - }, - "assetId": 0 - }, - "MANTA": { - "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", - "multiLocation": { - "parachainId": 2104 - }, - "assetId": 0 - }, - "DED-Statemint": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": { - "parachainId": 1000, - "palletInstance": 50, - "generalIndex": "30" - }, - "assetId": 3 - }, - "KILT": { - "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", - "multiLocation": { - "parachainId": 2086 - }, - "assetId": 0 - }, - "MYTH": { - "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", - "multiLocation": { - "parachainId": 3369 - }, - "assetId": 0 - }, - "NODL": { - "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", - "multiLocation": { - "parachainId": 2026, - "palletInstance": 2 - }, - "assetId": 0 - }, - "AJUN": { - "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", - "multiLocation": { - "parachainId": 2051, - "generalKey": "0x414a554e" - }, - "assetId": 0 - } + "chains": { + "parachainIds": { + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, + "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, + "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, + "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, + "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, + "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2": 2000, + "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, + "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, + "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, + "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, + "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, + "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, + "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, + "b2985e778bb748c70e450dcc084cc7da79fe742cc23d3b040abd7028187de69c": 3417, + "4de660c7530d0f46968b5a243d10092ca9a55e3575fc5d83b91e24c20d994502": 2034, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, + "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, + "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, + "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13": 2124, + "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, + "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, + "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, + "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, + "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005, + "086319b29662e34a4f7a3de034afe64c93e3ed477e3aed3ab3ef6e31d33bc179": 3422, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": 1000, + "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782": 1002, + "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c": 1004, + "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44": 1001 + } + }, + "assets": { + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "assetId": 0 + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "assetId": 0 + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {}, + "assetId": 0 + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {}, + "assetId": 0 + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 }, - "reserveIdOverrides": { - "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { - "4": "KAR", - "2": "KSM", - "5": "BNC", - "1": "RMRK", - "11": "HKO", - "3": "KINT", - "7": "USDT-Statemine", - "17": "XRT", - "16": "SDN" - }, - "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { - "3": "ACA", - "1": "DOT", - "4": "PARA", - "5": "INTR", - "6": "iBTC", - "10": "USDT-Statemint", - "8": "ASTR", - "11": "CFG", - "22": "MANTA", - "23": "USDC-Statemint", - "16": "NODL", - "19": "vDOT" - }, - "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { - "0": "KSM-Statemine", - "1": "RMRK", - "7": "USDT-Statemine" - }, - "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { - "7": "USDT-Statemine" - }, - "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { - "0": "DOT-Statemint", - "1": "USDT-Statemint", - "2": "USDC-Statemint" - }, - "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { - "4": "USDT-Statemine" - }, - "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { - "0": "WND-Westmint" - }, - "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { - "3": "USDT-Statemint", - "0": "BNC-Polkadot" - }, - "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { - "9": "USDT-Statemint", - "15": "USDC-Statemint", - "11": "BNC-Polkadot" - }, - "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { - "9": "USDT-Statemint" - }, - "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { - "10": "USDT-Statemine" - } + "assetId": 0 + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "assetId": 0 + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "assetId": 0 + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "assetId": 0 + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "assetId": 0 + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "assetId": 0 + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "assetId": 0 + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "assetId": 0 + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "assetId": 1 + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "assetId": 1 + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "assetId": 0 + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "assetId": 0 + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {}, + "assetId": 0 + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 7 + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 1 + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "assetId": 0 + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "assetId": 0 + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "assetId": 0 + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "assetId": 2 + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "assetId": 5 + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "assetId": 0 + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "assetId": 0 + }, + "DED-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "30" + }, + "assetId": 3 + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "parachainId": 2086 + }, + "assetId": 0 + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "parachainId": 3369 + }, + "assetId": 0 + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "parachainId": 2026, + "palletInstance": 2 + }, + "assetId": 0 + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "parachainId": 2051, + "generalKey": "0x414a554e" + }, + "assetId": 0 + } + }, + "reserveIdOverrides": { + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "4": "KAR", + "2": "KSM", + "5": "BNC", + "1": "RMRK", + "11": "HKO", + "3": "KINT", + "7": "USDT-Statemine", + "17": "XRT", + "16": "SDN" + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "3": "ACA", + "1": "DOT", + "4": "PARA", + "5": "INTR", + "6": "iBTC", + "10": "USDT-Statemint", + "8": "ASTR", + "11": "CFG", + "22": "MANTA", + "23": "USDC-Statemint", + "16": "NODL", + "19": "vDOT" + }, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "0": "KSM-Statemine", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "7": "USDT-Statemine" + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "0": "DOT-Statemint", + "1": "USDT-Statemint", + "2": "USDC-Statemint" + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "4": "USDT-Statemine" + }, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { + "0": "WND-Westmint" + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "3": "USDT-Statemint", + "0": "BNC-Polkadot" + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "9": "USDT-Statemint", + "15": "USDC-Statemint", + "11": "BNC-Polkadot" + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "9": "USDT-Statemint" + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "10": "USDT-Statemine" + } } + } } From d627d2bde0cb96334d3c839ffa1508b0b1460548 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 17:59:03 +0300 Subject: [PATCH 04/11] Process prod --- scripts/xcm_transfers/sync_parachain_ids.py | 2 +- xcm/v8/xcm_general_config.json | 161 +++++++++++++++----- xcm/v8/xcm_general_config_dev.json | 4 +- 3 files changed, 125 insertions(+), 42 deletions(-) diff --git a/scripts/xcm_transfers/sync_parachain_ids.py b/scripts/xcm_transfers/sync_parachain_ids.py index 485714b04..dd9c0e8ce 100644 --- a/scripts/xcm_transfers/sync_parachain_ids.py +++ b/scripts/xcm_transfers/sync_parachain_ids.py @@ -40,7 +40,7 @@ def process_chain(idx, chain, len): def save_synced_data(): general_config["chains"]["parachainIds"] = data - write_data_to_file(config_files.general_config, json.dumps(general_config, indent=4)) + write_data_to_file(config_files.general_config, json.dumps(general_config, indent=2)) def find_xcm_chains(chains: List[Chain], relay_ids: list[str] = RELAYS) -> List[Chain]: diff --git a/xcm/v8/xcm_general_config.json b/xcm/v8/xcm_general_config.json index a6ca488e2..ed56f473e 100644 --- a/xcm/v8/xcm_general_config.json +++ b/xcm/v8/xcm_general_config.json @@ -1,6 +1,65 @@ { "chains": { "parachainIds": { + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, + "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, + "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, + "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, + "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, + "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, + "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, + "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, + "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, + "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, + "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, + "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, + "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, + "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, + "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, + "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, + "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, + "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, + "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005 } }, "assets": { @@ -10,51 +69,60 @@ "multiLocation": { "parachainId": 2000, "generalKey": "0x0080" - } + }, + "assetId": 0 }, "KSM": { "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "KSM-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "DOT-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "MOVR": { "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", "multiLocation": { "parachainId": 2023, "palletInstance": 10 - } + }, + "assetId": 0 }, "BNC": { "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "multiLocation": { "parachainId": 2001, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "ACA": { "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", "multiLocation": { "parachainId": 2000, "generalKey": "0x0000" - } + }, + "assetId": 0 }, "DOT": { "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "multiLocation": {} + "multiLocation": {}, + "assetId": 0 }, "GLMR": { "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "multiLocation": { "parachainId": 2004, "palletInstance": 10 - } + }, + "assetId": 0 }, "RMRK": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", @@ -62,55 +130,55 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "8" - } + }, + "assetId": 1 }, "KINT": { "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "multiLocation": { "parachainId": 2092, "generalKey": "0x000c" - } - }, - "HKO": { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "multiLocation": { - "parachainId": 2085, - "generalKey": "0x484b4f" - } + }, + "assetId": 0 }, "PARA": { "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", "multiLocation": { "parachainId": 2012, "generalKey": "0x50415241" - } + }, + "assetId": 0 }, "INTR": { "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", "multiLocation": { "parachainId": 2032, "generalKey": "0x0002" - } + }, + "assetId": 0 }, "iBTC": { "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", "multiLocation": { "parachainId": 2032, "generalKey": "0x0001" - } + }, + "assetId": 1 }, "BSX": { "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", "multiLocation": { "parachainId": 2090, "generalIndex": "0" - } + }, + "assetId": 0 }, "XRT": { "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", "multiLocation": { "parachainId": 2048 - } + }, + "assetId": 0 }, "USDT-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", @@ -118,7 +186,8 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1984" - } + }, + "assetId": 7 }, "USDT-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", @@ -126,59 +195,68 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1984" - } + }, + "assetId": 1 }, "ASTR": { "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", "multiLocation": { "parachainId": 2006 - } + }, + "assetId": 0 }, "CFG": { "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", "multiLocation": { "parachainId": 2031, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "SDN": { "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", "multiLocation": { "parachainId": 2007 - } + }, + "assetId": 0 }, "kBTC": { "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "multiLocation": { "parachainId": 2092, "generalKey": "0x000b" - } + }, + "assetId": 1 }, "BNC-Polkadot": { "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", "multiLocation": { "parachainId": 2030, "generalKey": "0x0001" - } + }, + "assetId": 0 }, "vDOT": { "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", "multiLocation": { "parachainId": 2030, "generalKey": "0x0900" - } + }, + "assetId": 5 }, "SUB": { "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", "multiLocation": { "parachainId": 2101 - } + }, + "assetId": 0 }, "MANTA": { "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", "multiLocation": { "parachainId": 2104 - } + }, + "assetId": 0 }, "USDC-Statemint": { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", @@ -186,33 +264,38 @@ "parachainId": 1000, "palletInstance": 50, "generalIndex": "1337" - } + }, + "assetId": 2 }, "KILT": { "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", "multiLocation": { "parachainId": 2086 - } + }, + "assetId": 0 }, "MYTH": { "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", "multiLocation": { "parachainId": 3369 - } + }, + "assetId": 0 }, "NODL": { "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", "multiLocation": { "parachainId": 2026, "palletInstance": 2 - } + }, + "assetId": 0 }, "AJUN": { "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", "multiLocation": { "parachainId": 2051, "generalKey": "0x414a554e" - } + }, + "assetId": 0 } }, "reserveIdOverrides": { @@ -273,4 +356,4 @@ } } } -} \ No newline at end of file +} diff --git a/xcm/v8/xcm_general_config_dev.json b/xcm/v8/xcm_general_config_dev.json index 5b5656a94..ee811849a 100644 --- a/xcm/v8/xcm_general_config_dev.json +++ b/xcm/v8/xcm_general_config_dev.json @@ -140,12 +140,12 @@ }, "RMRK": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assetId": 1, "multiLocation": { "parachainId": 1000, "palletInstance": 50, "generalIndex": "8" - } + }, + "assetId": 1 }, "KINT": { "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", From 820cf24780e57d11387e7d3dd04ba2391519adb4 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 17:59:48 +0300 Subject: [PATCH 05/11] Config setup --- scripts/xcm_transfers/config_setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/xcm_transfers/config_setup.py b/scripts/xcm_transfers/config_setup.py index 4421523e1..b71ae19f5 100644 --- a/scripts/xcm_transfers/config_setup.py +++ b/scripts/xcm_transfers/config_setup.py @@ -16,6 +16,7 @@ def get_xcm_config_files() -> XCMConfigFiles: xcm_stable_legacy_config=f"xcm/v6/transfers.json", xcm_additional_data="scripts/xcm_transfers/xcm_registry_additional_data.json", xcm_dynamic_config=f"xcm/{XCM_VERSION}/transfers_dynamic.json", + general_config=f"../../xcm/{XCM_VERSION}/xcm_general_config.json", ) else: print("Running in development mode") @@ -25,4 +26,5 @@ def get_xcm_config_files() -> XCMConfigFiles: xcm_stable_legacy_config=f"xcm/v6/transfers_dev.json", xcm_additional_data="scripts/xcm_transfers/xcm_registry_additional_data.json", xcm_dynamic_config=f"xcm/{XCM_VERSION}/transfers_dynamic_dev.json", + general_config=f"../../xcm/{XCM_VERSION}/xcm_general_config_dev.json", ) From e48749b93868ef9f1f35b83a0fea43fff2c481db Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 18:03:49 +0300 Subject: [PATCH 06/11] Fill xcm general config in existing xcm script --- scripts/xcm_transfers/sync_parachain_ids.py | 2 -- .../sync_xcm_preliminary_data.py | 28 +++++++++++++------ 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/scripts/xcm_transfers/sync_parachain_ids.py b/scripts/xcm_transfers/sync_parachain_ids.py index dd9c0e8ce..176d8da2d 100644 --- a/scripts/xcm_transfers/sync_parachain_ids.py +++ b/scripts/xcm_transfers/sync_parachain_ids.py @@ -38,9 +38,7 @@ def process_chain(idx, chain, len): print(f"{chain.name}: {parachainId}") def save_synced_data(): - general_config["chains"]["parachainIds"] = data - write_data_to_file(config_files.general_config, json.dumps(general_config, indent=2)) def find_xcm_chains(chains: List[Chain], relay_ids: list[str] = RELAYS) -> List[Chain]: diff --git a/scripts/xcm_transfers/sync_xcm_preliminary_data.py b/scripts/xcm_transfers/sync_xcm_preliminary_data.py index 58393f492..93f4172bc 100644 --- a/scripts/xcm_transfers/sync_xcm_preliminary_data.py +++ b/scripts/xcm_transfers/sync_xcm_preliminary_data.py @@ -16,6 +16,9 @@ data = {} +general_xcm_config = get_data_from_file(config_files.general_config) +general_xcm_config_data = {} + def get_runtime_prefix(substrate: SubstrateInterface) -> str | None: registry = substrate.get_type_registry(substrate.block_hash) @@ -85,11 +88,27 @@ def construct_v1_dry_run_method_data(substrate: SubstrateInterface, runtime_pref method_data = origin_caller + call return method_data.to_hex() +def write_general_xcm_config(): + general_xcm_config["chains"]["parachainIds"] = general_xcm_config_data + write_data_to_file(config_files.general_config, json.dumps(general_xcm_config, indent=2)) + def process_chain(idx, chain, len): print(f"\n{idx + 1}/{len}. Starting fetching data for {chain.name}") chain.create_connection() + parachainId = None + + if chain.parentId is not None: + try: + parachainId = chain.substrate.query("ParachainInfo", "ParachainId").value + except Exception as e: + print(f"Failed to fetch ParachainId for {chain.name} due to {e}, skipping") + return + + general_xcm_config_data[chain.chainId] = parachainId + write_general_xcm_config() + try: runtime_prefix = get_runtime_prefix(chain.substrate) if runtime_prefix is None: @@ -116,15 +135,6 @@ def process_chain(idx, chain, len): xcm_payment_api_presence = determine_xcm_payment_api_presence(chain.substrate) print(f"{chain.name} xcm payment api presence: {xcm_payment_api_presence}") - parachainId = None - - if chain.parentId is not None: - try: - parachainId = chain.substrate.query("ParachainInfo", "ParachainId").value - except Exception as e: - print(f"Failed to fetch ParachainId for {chain.name} due to {e}, skipping") - return - parachain_info = { "parachainId": parachainId, "runtimePrefix": runtime_prefix, From 605cac3fbc6183d161dcc99d40f0fd6c4bfd5130 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 18:06:32 +0300 Subject: [PATCH 07/11] Fixes --- scripts/xcm_transfers/add_chain_asset_ids.py | 26 ------- scripts/xcm_transfers/sync_parachain_ids.py | 71 ------------------- .../sync_xcm_preliminary_data.py | 5 +- 3 files changed, 3 insertions(+), 99 deletions(-) delete mode 100644 scripts/xcm_transfers/add_chain_asset_ids.py delete mode 100644 scripts/xcm_transfers/sync_parachain_ids.py diff --git a/scripts/xcm_transfers/add_chain_asset_ids.py b/scripts/xcm_transfers/add_chain_asset_ids.py deleted file mode 100644 index 98f189a4e..000000000 --- a/scripts/xcm_transfers/add_chain_asset_ids.py +++ /dev/null @@ -1,26 +0,0 @@ -import json - -from scripts.utils.chain_model import Chain, ChainAsset -from scripts.utils.work_with_data import get_data_from_file, write_data_to_file -from scripts.xcm_transfers.config_setup import get_xcm_config_files -from scripts.xcm_transfers.utils.log import warn_log - -config_files = get_xcm_config_files() -chains_file = get_data_from_file(config_files.chains) -chains = [Chain(it) for it in chains_file] -chains_by_id = {chain.chainId:chain for chain in chains} - -general_config = get_data_from_file(config_files.general_config) -asset_locations_config = general_config["assets"]["assetsLocation"] - -for (reserve_id, asset_config) in asset_locations_config.items(): - normalized = ChainAsset.unify_symbol(reserve_id).removesuffix("-Statemine").removesuffix("-Westmint").removesuffix("-Polkadot").removesuffix("-Statemint") - chain = chains_by_id[asset_config["chainId"]] - asset = chain.get_asset_by_symbol_or_null(normalized) - - if not asset: - warn_log("Failed to find asset with symbol {}".format(normalized)) - else: - asset_config["assetId"] = asset.id - -write_data_to_file(config_files.general_config, json.dumps(general_config, indent=2)) \ No newline at end of file diff --git a/scripts/xcm_transfers/sync_parachain_ids.py b/scripts/xcm_transfers/sync_parachain_ids.py deleted file mode 100644 index 176d8da2d..000000000 --- a/scripts/xcm_transfers/sync_parachain_ids.py +++ /dev/null @@ -1,71 +0,0 @@ -from __future__ import annotations - -import json -from typing import List - -from substrateinterface import SubstrateInterface -from substrateinterface.exceptions import SubstrateRequestException - -from scripts.utils.chain_model import Chain -from scripts.utils.work_with_data import get_data_from_file, write_data_to_file -from scripts.xcm_transfers.config_setup import get_xcm_config_files -from scripts.xcm_transfers.utils.chain_ids import RELAYS -from scripts.xcm_transfers.utils.dry_run_api_types import dry_run_v1, dry_run_v2 - -config_files = get_xcm_config_files() -general_config = get_data_from_file(config_files.general_config) - -data = {} - -def process_chain(idx, chain, len): - print(f"\n{idx + 1}/{len}. {chain.name}") - - chain.create_connection() - - parachainId = None - - if chain.parentId is not None: - try: - parachainId = chain.substrate.query("ParachainInfo", "ParachainId").value - except Exception as e: - print(f"Failed to fetch ParachainId for {chain.name} due to {e}, skipping") - return - - if parachainId is not None: - data[chain.chainId] = parachainId - save_synced_data() - - print(f"{chain.name}: {parachainId}") - -def save_synced_data(): - - - -def find_xcm_chains(chains: List[Chain], relay_ids: list[str] = RELAYS) -> List[Chain]: - result = [] - - for relay_id in relay_ids: - relay = next((chain for chain in chains if chain.chainId == relay_id), None) - if relay is None: - continue - - parachains = [chain for chain in chains if chain.parentId == relay_id] - if len(parachains) == 0: - continue - - result.extend([relay] + parachains) - - return result - -chains_file = get_data_from_file(config_files.chains) -chains = [Chain(it) for it in chains_file] - -xcm_chains = find_xcm_chains(chains) - -for idx, chain in enumerate(xcm_chains): - try: - process_chain(idx, chain, len(xcm_chains)) - except Exception as e: - print(f"Error happened when processing {chain.name}, skipping: {e}") - - continue diff --git a/scripts/xcm_transfers/sync_xcm_preliminary_data.py b/scripts/xcm_transfers/sync_xcm_preliminary_data.py index 93f4172bc..a09c8b2c6 100644 --- a/scripts/xcm_transfers/sync_xcm_preliminary_data.py +++ b/scripts/xcm_transfers/sync_xcm_preliminary_data.py @@ -106,8 +106,9 @@ def process_chain(idx, chain, len): print(f"Failed to fetch ParachainId for {chain.name} due to {e}, skipping") return - general_xcm_config_data[chain.chainId] = parachainId - write_general_xcm_config() + if parachainId is not None: + general_xcm_config_data[chain.chainId] = parachainId + write_general_xcm_config() try: runtime_prefix = get_runtime_prefix(chain.substrate) From 99e276f253e55c56d82504f3fa70071610635851 Mon Sep 17 00:00:00 2001 From: valentunn Date: Mon, 29 Sep 2025 18:09:10 +0300 Subject: [PATCH 08/11] Add todo for v9 --- xcm/v9/TODO_IN_V9 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 xcm/v9/TODO_IN_V9 diff --git a/xcm/v9/TODO_IN_V9 b/xcm/v9/TODO_IN_V9 new file mode 100644 index 000000000..ca2d41e57 --- /dev/null +++ b/xcm/v9/TODO_IN_V9 @@ -0,0 +1,3 @@ +Please apply the following changes when migrating to V9 + +* Remove assetLocations and reserveIdOverrides. They are replaced by xcm_general_config.json \ No newline at end of file From c1abb1b7d3eff65d0b5366203a7eb9a603dde77d Mon Sep 17 00:00:00 2001 From: valentunn <70131744+valentunn@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:14:30 +0000 Subject: [PATCH 09/11] Apply automatic changes --- xcm/v9/TODO_IN_V9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcm/v9/TODO_IN_V9 b/xcm/v9/TODO_IN_V9 index ca2d41e57..6d8db2683 100644 --- a/xcm/v9/TODO_IN_V9 +++ b/xcm/v9/TODO_IN_V9 @@ -1,3 +1,3 @@ Please apply the following changes when migrating to V9 -* Remove assetLocations and reserveIdOverrides. They are replaced by xcm_general_config.json \ No newline at end of file +* Remove assetLocations and reserveIdOverrides. They are replaced by xcm_general_config.json From c90f38ed051de94aad7e81a6cc7979622ba08fc6 Mon Sep 17 00:00:00 2001 From: valentunn Date: Tue, 30 Sep 2025 11:11:35 +0300 Subject: [PATCH 10/11] V9 + global consensus --- scripts/xcm_transfers/add_global_consensus.py | 45 + xcm/v9/TODO_IN_V9 | 3 - xcm/v9/transfers.json | 5179 +++++++++++++++ xcm/v9/transfers_dev.json | 5862 +++++++++++++++++ xcm/v9/transfers_dynamic.json | 857 +++ xcm/v9/transfers_dynamic_dev.json | 1013 +++ xcm/v9/xcm_general_config.json | 394 ++ xcm/v9/xcm_general_config_dev.json | 444 ++ 8 files changed, 13794 insertions(+), 3 deletions(-) create mode 100644 scripts/xcm_transfers/add_global_consensus.py delete mode 100644 xcm/v9/TODO_IN_V9 create mode 100644 xcm/v9/transfers.json create mode 100644 xcm/v9/transfers_dev.json create mode 100644 xcm/v9/transfers_dynamic.json create mode 100644 xcm/v9/transfers_dynamic_dev.json create mode 100644 xcm/v9/xcm_general_config.json create mode 100644 xcm/v9/xcm_general_config_dev.json diff --git a/scripts/xcm_transfers/add_global_consensus.py b/scripts/xcm_transfers/add_global_consensus.py new file mode 100644 index 000000000..9d3ee68c5 --- /dev/null +++ b/scripts/xcm_transfers/add_global_consensus.py @@ -0,0 +1,45 @@ +import json + +from eth_typing import ChainId + +from scripts.utils.chain_model import Chain +from scripts.utils.work_with_data import get_data_from_file, write_data_to_file +from scripts.xcm_transfers.config_setup import get_xcm_config_files + +config_files = get_xcm_config_files() +general_config = get_data_from_file(config_files.general_config) + +chains_file = get_data_from_file(config_files.chains) +chains = [Chain(it) for it in chains_file] + +def find_chain(chainId: ChainId) -> Chain: + return next((chain for chain in chains if chain.chainId == chainId)) + +def get_consensus_root(chainId: ChainId) -> Chain: + chain = find_chain(chainId) + if chain.parentId is None: + return chain + + parent = find_chain(chain.parentId) + return parent + +def construct_global_consensus_arg(consensus_root: Chain): + match consensus_root.chainId: + case "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": + return "Polkadot" + case "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": + return "Kusama" + case _: + return { "ByGenesis": consensus_root.chainId } + +for location in general_config["assets"]["assetsLocation"].values(): + chain_id = location["chainId"] + + consensus_root = get_consensus_root(chain_id) + consensus_arg = construct_global_consensus_arg(consensus_root) + + location_items = list(location["multiLocation"].items()) + location_items.insert(0, ("globalConsensus", consensus_arg)) + location["multiLocation"] = dict(location_items) + +write_data_to_file(config_files.general_config, json.dumps(general_config, indent=2)) diff --git a/xcm/v9/TODO_IN_V9 b/xcm/v9/TODO_IN_V9 deleted file mode 100644 index ca2d41e57..000000000 --- a/xcm/v9/TODO_IN_V9 +++ /dev/null @@ -1,3 +0,0 @@ -Please apply the following changes when migrating to V9 - -* Remove assetLocations and reserveIdOverrides. They are replaced by xcm_general_config.json \ No newline at end of file diff --git a/xcm/v9/transfers.json b/xcm/v9/transfers.json new file mode 100644 index 000000000..d655b27d2 --- /dev/null +++ b/xcm/v9/transfers.json @@ -0,0 +1,5179 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1004710080859067392" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "42976931800" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "parachainId": 2086 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "47535131" + }, + "instructions": "xtokensReserve" + } + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "parachainId": 3369 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "573440000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "parachainId": 2026, + "palletInstance": 2 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xtokensReserve" + } + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "parachainId": 2051, + "generalKey": "0x414a554e" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "70000000000000" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "1000000000", + "sizeFactor": "3333333", + "alwaysHoldingPays": false + } + }, + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "300000000", + "sizeFactor": "1000000" + } + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "16912512364", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + } + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000", + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": "124414000", + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": "1000000000", + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": "1000000000", + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": "1000000000", + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": "1000000000", + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": "1000000" + }, + "chains": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "82320119048" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "17287225" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "100473" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1004710080859067392" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "179650006" + }, + "instructions": "xcmPalletDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "249360255521760000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "41310942824506654720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "249360255521760000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "297" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "17269955" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "1005251" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 23, + "fee": { + "mode": { + "type": "proportional", + "value": "17252719" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 15, + "assetLocation": "MYTH", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "573439999999999737856" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "45871559633" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "42976931800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "32574154417" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 34, + "assetLocation": "KILT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "47535131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 26, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 44, + "assetLocation": "AJUN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "70000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 23, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 16, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "2089595672670131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "112563722370570600448" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "2343508113982" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "23888832078357995520" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "234608835149" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "5880008503401360384" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "assets": [ + { + "assetId": 0, + "assetLocation": "KILT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 34, + "fee": { + "mode": { + "type": "proportional", + "value": "92928220845792352" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assets": [ + { + "assetId": 0, + "assetLocation": "MYTH", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "19052138160000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assets": [ + { + "assetId": 0, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 26, + "fee": { + "mode": { + "type": "proportional", + "value": "57243054451952" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "216679148637925" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "assets": [ + { + "assetId": 0, + "assetLocation": "AJUN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 44, + "fee": { + "mode": { + "type": "proportional", + "value": "172384599880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v9/transfers_dev.json b/xcm/v9/transfers_dev.json new file mode 100644 index 000000000..fbc64749b --- /dev/null +++ b/xcm/v9/transfers_dev.json @@ -0,0 +1,5862 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xtokensReserve" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "933933541289201792" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1167416926611502336" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "9339000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "42976931800" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + }, + "DED-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "30" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensReserve" + } + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "parachainId": 2086 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "47535131" + }, + "instructions": "xtokensReserve" + } + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "parachainId": 3369 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "573440000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "parachainId": 2026, + "palletInstance": 2 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xtokensReserve" + } + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "parachainId": 2051, + "generalKey": "0x414a554e" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "70000000000000" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "30000000000", + "sizeFactor": "100000000", + "alwaysHoldingPays": false + } + }, + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "1000000000", + "sizeFactor": "3333333", + "alwaysHoldingPays": false + } + }, + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "300000000", + "sizeFactor": "1000000" + } + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "16912512364", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + } + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", + "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000", + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": "124414000", + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": "1000000000", + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": "1000000000", + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": "1000000000", + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": "1000000000", + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": "1000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "179650006" + }, + "instructions": "xcmPalletDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "941571977" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1167416926611502336" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "249360255521760000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11673750000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "933933541289201792" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 23, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 16, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet-transferAssets" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "45871559633" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11673750000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "93390000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "933933541289201792" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "2089595672670131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "82320119048" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "17287225" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "100473" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "297" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "17269955" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "1005251" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 23, + "fee": { + "mode": { + "type": "proportional", + "value": "17252719" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 15, + "assetLocation": "MYTH", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 36, + "fee": { + "mode": { + "type": "proportional", + "value": "14880703757504000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "249360255521760000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7471468330240" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "2343508113982" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11673750000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "4883396893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872538112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "9339000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "42976931800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "32574154417" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 34, + "assetLocation": "KILT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "47535131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 36, + "assetLocation": "MYTH", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "19052138160000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 26, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "84817500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 44, + "assetLocation": "AJUN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "70000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "4883396893" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "941571977" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11673750000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "112563722370570600448" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11673750000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "26399155184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "93390000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "23888832078357995520" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 6, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9339335412800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "41310942824506654720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "249360255521760000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "116731806804" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "150596331765" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5175135755" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "5880008503401360384" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "assets": [ + { + "assetId": 0, + "assetLocation": "KILT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 34, + "fee": { + "mode": { + "type": "proportional", + "value": "92928220845792352" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assets": [ + { + "assetId": 0, + "assetLocation": "MYTH", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "19052138160000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "assets": [ + { + "assetId": 0, + "assetLocation": "NODL", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 26, + "fee": { + "mode": { + "type": "proportional", + "value": "57243054451952" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "216679148637925" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "assets": [ + { + "assetId": 0, + "assetLocation": "AJUN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 44, + "fee": { + "mode": { + "type": "proportional", + "value": "172384599880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v9/transfers_dynamic.json b/xcm/v9/transfers_dynamic.json new file mode 100644 index 000000000..b87a42fc1 --- /dev/null +++ b/xcm/v9/transfers_dynamic.json @@ -0,0 +1,857 @@ +{ + "customTeleports": [ + { + "originChain": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "destChain": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "originAsset": 15 + } + ], + "chains": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 7, + "xcmTransfers": [ + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3 + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8 + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 7, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 8, + "xcmTransfers": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 4, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1 + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 2, + "xcmTransfers": [ + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 3, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 16, + "xcmTransfers": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 8, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 9, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 15, + "xcmTransfers": [ + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 3, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 36, + "xcmTransfers": [ + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assetId": 0, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 2, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 3, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 4, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 36, + "hasDeliveryFee": true, + "supportsXcmExecute": false + } + ] + } + ] + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + } + ] +} diff --git a/xcm/v9/transfers_dynamic_dev.json b/xcm/v9/transfers_dynamic_dev.json new file mode 100644 index 000000000..c8678e949 --- /dev/null +++ b/xcm/v9/transfers_dynamic_dev.json @@ -0,0 +1,1013 @@ +{ + "customTeleports": [ + { + "originChain": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "destChain": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "originAsset": 15 + } + ], + "chains": [ + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 7, + "xcmTransfers": [ + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3 + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8 + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 7, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "supportsXcmExecute": true + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 8, + "xcmTransfers": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 4, + "xcmTransfers": [ + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "supportsXcmExecute": true + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1 + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 1, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 2, + "xcmTransfers": [ + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 3, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 15, + "xcmTransfers": [ + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 16, + "xcmTransfers": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 8, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 9, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 15, + "xcmTransfers": [ + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 3, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 36, + "xcmTransfers": [ + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assetId": 0, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 2, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 1, + "xcmTransfers": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 3, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "supportsXcmExecute": true + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "assetId": 2, + "supportsXcmExecute": true + } + ] + }, + { + "assetId": 4, + "xcmTransfers": [ + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "supportsXcmExecute": true + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + }, + { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 36, + "hasDeliveryFee": true, + "supportsXcmExecute": false + } + ] + } + ] + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "assets": [ + { + "assetId": 0, + "xcmTransfers": [ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "hasDeliveryFee": true, + "supportsXcmExecute": true + } + ] + } + ] + } + ] +} diff --git a/xcm/v9/xcm_general_config.json b/xcm/v9/xcm_general_config.json new file mode 100644 index 000000000..0842df9bd --- /dev/null +++ b/xcm/v9/xcm_general_config.json @@ -0,0 +1,394 @@ +{ + "chains": { + "parachainIds": { + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, + "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, + "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, + "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, + "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, + "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, + "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, + "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, + "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, + "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, + "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, + "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, + "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, + "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, + "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, + "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, + "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, + "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, + "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005 + } + }, + "assets": { + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2000, + "generalKey": "0x0080" + }, + "assetId": 0 + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": { + "globalConsensus": "Kusama" + }, + "assetId": 0 + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama" + }, + "assetId": 0 + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot" + }, + "assetId": 0 + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2023, + "palletInstance": 10 + }, + "assetId": 0 + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2001, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2000, + "generalKey": "0x0000" + }, + "assetId": 0 + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": { + "globalConsensus": "Polkadot" + }, + "assetId": 0 + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2004, + "palletInstance": 10 + }, + "assetId": 0 + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + }, + "assetId": 1 + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2092, + "generalKey": "0x000c" + }, + "assetId": 0 + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "assetId": 0 + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2032, + "generalKey": "0x0002" + }, + "assetId": 0 + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2032, + "generalKey": "0x0001" + }, + "assetId": 1 + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2090, + "generalIndex": "0" + }, + "assetId": 0 + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2048 + }, + "assetId": 0 + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 7 + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 1 + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2006 + }, + "assetId": 0 + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2031, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2007 + }, + "assetId": 0 + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2092, + "generalKey": "0x000b" + }, + "assetId": 1 + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2030, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2030, + "generalKey": "0x0900" + }, + "assetId": 5 + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2101 + }, + "assetId": 0 + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2104 + }, + "assetId": 0 + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "assetId": 2 + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2086 + }, + "assetId": 0 + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 3369 + }, + "assetId": 0 + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2026, + "palletInstance": 2 + }, + "assetId": 0 + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2051, + "generalKey": "0x414a554e" + }, + "assetId": 0 + } + }, + "reserveIdOverrides": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "0": "KSM-Statemine", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "4": "KAR", + "5": "BNC", + "11": "HKO", + "3": "KINT", + "16": "SDN", + "2": "KSM", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "7": "USDT-Statemine" + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "4": "USDT-Statemine" + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "10": "USDT-Statemine" + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "0": "DOT-Statemint", + "1": "USDT-Statemint", + "2": "USDC-Statemint" + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "9": "USDT-Statemint", + "15": "USDC-Statemint", + "11": "BNC-Polkadot" + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "1": "DOT", + "10": "USDT-Statemint", + "3": "ACA", + "8": "ASTR", + "5": "INTR", + "6": "iBTC", + "4": "PARA", + "11": "CFG", + "22": "MANTA", + "23": "USDC-Statemint", + "16": "NODL", + "19": "vDOT" + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "3": "USDT-Statemint", + "0": "BNC-Polkadot" + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "9": "USDT-Statemint" + } + } + } +} diff --git a/xcm/v9/xcm_general_config_dev.json b/xcm/v9/xcm_general_config_dev.json new file mode 100644 index 000000000..8fad61837 --- /dev/null +++ b/xcm/v9/xcm_general_config_dev.json @@ -0,0 +1,444 @@ +{ + "chains": { + "parachainIds": { + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": 2086, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": 2000, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": 2004, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": 2006, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": 2002, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": 1000, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": 2031, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": 2034, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": 2032, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": 2026, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": 2035, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": 2043, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": 2030, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": 2013, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": 2037, + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": 2094, + "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7": 2056, + "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8": 2008, + "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee": 2051, + "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e": 2046, + "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1": 2091, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": 1002, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": 1001, + "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008": 1004, + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": 2104, + "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2": 2000, + "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd": 3344, + "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5": 3345, + "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9": 3369, + "61ea8a51fd4a058ee8c0e86df0a89cc85b8b67a0a66432893d09719050c9f540": 3367, + "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c": 3338, + "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b": 3370, + "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a": 3397, + "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4": 1005, + "b2985e778bb748c70e450dcc084cc7da79fe742cc23d3b040abd7028187de69c": 3417, + "4de660c7530d0f46968b5a243d10092ca9a55e3575fc5d83b91e24c20d994502": 2034, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": 1000, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": 2000, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": 2023, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": 2007, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": 2001, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": 2092, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": 2090, + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": 2088, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": 2095, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": 2048, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": 1001, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": 2104, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": 2092, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": 2012, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": 2015, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": 2113, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": 2124, + "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348": 2222, + "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24": 2105, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": 1002, + "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f": 1004, + "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13": 2124, + "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c": 2241, + "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808": 2239, + "c710a5f16adc17bcd212cff0aedcbf1c1212a043cdc0fb2dcba861efe5305b01": 2281, + "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9": 3344, + "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050": 1005, + "086319b29662e34a4f7a3de034afe64c93e3ed477e3aed3ab3ef6e31d33bc179": 3422, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": 1000, + "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782": 1002, + "1eb6fb0ba5187434de017a70cb84d4f47142df1d571d0ef9e7e1407f2b80b93c": 1004, + "713daf193a6301583ff467be736da27ef0a72711b248927ba413f573d2b38e44": 1001 + } + }, + "assets": { + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2000, + "generalKey": "0x0080" + }, + "assetId": 0 + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": { + "globalConsensus": "Kusama" + }, + "assetId": 0 + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama" + }, + "assetId": 0 + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot" + }, + "assetId": 0 + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2023, + "palletInstance": 10 + }, + "assetId": 0 + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2001, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": { + "globalConsensus": { + "ByGenesis": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443" + } + }, + "assetId": 0 + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2000, + "generalKey": "0x0000" + }, + "assetId": 0 + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": { + "globalConsensus": "Polkadot" + }, + "assetId": 0 + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2004, + "palletInstance": 10 + }, + "assetId": 0 + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + }, + "assetId": 1 + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2092, + "generalKey": "0x000c" + }, + "assetId": 0 + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "assetId": 0 + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2032, + "generalKey": "0x0002" + }, + "assetId": 0 + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2032, + "generalKey": "0x0001" + }, + "assetId": 1 + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2092, + "generalKey": "0x000b" + }, + "assetId": 1 + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2090, + "generalIndex": "0" + }, + "assetId": 0 + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": { + "globalConsensus": { + "ByGenesis": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e" + } + }, + "assetId": 0 + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": { + "globalConsensus": { + "ByGenesis": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e" + } + }, + "assetId": 0 + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 7 + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "assetId": 1 + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2048 + }, + "assetId": 0 + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2006 + }, + "assetId": 0 + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2007 + }, + "assetId": 0 + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2031, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "assetId": 2 + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2030, + "generalKey": "0x0001" + }, + "assetId": 0 + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2030, + "generalKey": "0x0900" + }, + "assetId": 5 + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "globalConsensus": "Kusama", + "parachainId": 2101 + }, + "assetId": 0 + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2104 + }, + "assetId": 0 + }, + "DED-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "30" + }, + "assetId": 3 + }, + "KILT": { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2086 + }, + "assetId": 0 + }, + "MYTH": { + "chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 3369 + }, + "assetId": 0 + }, + "NODL": { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2026, + "palletInstance": 2 + }, + "assetId": 0 + }, + "AJUN": { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "multiLocation": { + "globalConsensus": "Polkadot", + "parachainId": 2051, + "generalKey": "0x414a554e" + }, + "assetId": 0 + } + }, + "reserveIdOverrides": { + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "4": "KAR", + "2": "KSM", + "5": "BNC", + "1": "RMRK", + "11": "HKO", + "3": "KINT", + "7": "USDT-Statemine", + "17": "XRT", + "16": "SDN" + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "3": "ACA", + "1": "DOT", + "4": "PARA", + "5": "INTR", + "6": "iBTC", + "10": "USDT-Statemint", + "8": "ASTR", + "11": "CFG", + "22": "MANTA", + "23": "USDC-Statemint", + "16": "NODL", + "19": "vDOT" + }, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "0": "KSM-Statemine", + "1": "RMRK", + "7": "USDT-Statemine" + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "7": "USDT-Statemine" + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "0": "DOT-Statemint", + "1": "USDT-Statemint", + "2": "USDC-Statemint" + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "4": "USDT-Statemine" + }, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { + "0": "WND-Westmint" + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "3": "USDT-Statemint", + "0": "BNC-Polkadot" + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "9": "USDT-Statemint", + "15": "USDC-Statemint", + "11": "BNC-Polkadot" + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "9": "USDT-Statemint" + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "10": "USDT-Statemine" + } + } + } +} From a6a8a61cc37f1c6f68b238a65abf9b426f97a9c0 Mon Sep 17 00:00:00 2001 From: valentunn Date: Tue, 30 Sep 2025 11:13:13 +0300 Subject: [PATCH 11/11] File reorg --- scripts/xcm_transfers/{ => one_time}/add_global_consensus.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename scripts/xcm_transfers/{ => one_time}/add_global_consensus.py (100%) diff --git a/scripts/xcm_transfers/add_global_consensus.py b/scripts/xcm_transfers/one_time/add_global_consensus.py similarity index 100% rename from scripts/xcm_transfers/add_global_consensus.py rename to scripts/xcm_transfers/one_time/add_global_consensus.py