@snowbridge/registry 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc +23 -0
- package/build.ts +6 -13
- package/dist/local_e2e.registry.json +14 -9
- package/dist/paseo_sepolia.registry.json +51 -5
- package/dist/polkadot_mainnet.registry.json +84 -44
- package/package.json +3 -3
- package/src/local_e2e.registry.json +14 -9
- package/src/paseo_sepolia.registry.json +51 -5
- package/src/polkadot_mainnet.registry.json +84 -44
package/.prettierrc
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"overrides": [
|
|
3
|
+
{
|
|
4
|
+
"files": "*.sol",
|
|
5
|
+
"options": {
|
|
6
|
+
"printWidth": 100,
|
|
7
|
+
"tabWidth": 4,
|
|
8
|
+
"singleQuote": false,
|
|
9
|
+
"bracketSpacing": true,
|
|
10
|
+
"explicitTypes": "always"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"files": "*.ts",
|
|
15
|
+
"options": {
|
|
16
|
+
"semi": false,
|
|
17
|
+
"printWidth": 100,
|
|
18
|
+
"tabWidth": 4,
|
|
19
|
+
"singleQuote": false
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
package/build.ts
CHANGED
|
@@ -18,18 +18,11 @@ async function buildRegistry(env: string, options: assetsV2.RegistryOptions) {
|
|
|
18
18
|
await writeFile(filepath, json)
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
(async () => {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"paseo_sepolia",
|
|
26
|
-
]
|
|
27
|
-
const apiKey = process.env.ETHEREUM_API_KEY
|
|
28
|
-
if(!apiKey || apiKey.trim().length === 0) {
|
|
29
|
-
throw Error(`ETHEREUM_API_KEY env variable not set.`)
|
|
21
|
+
;(async () => {
|
|
22
|
+
let env = "local_e2e"
|
|
23
|
+
if (process.env.NODE_ENV !== undefined) {
|
|
24
|
+
env = process.env.NODE_ENV
|
|
30
25
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
await buildRegistry(env, options)
|
|
34
|
-
}))
|
|
26
|
+
const options = assetsV2.fromEnvironment(environment.SNOWBRIDGE_ENV[env])
|
|
27
|
+
await buildRegistry(env, options)
|
|
35
28
|
})()
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-08-13T06:09:22.989Z",
|
|
3
3
|
"environment": "local_e2e",
|
|
4
4
|
"ethChainId": 11155111,
|
|
5
5
|
"gatewayAddress": "0xb1185ede04202fe62d38f5db72f71e38ff3e8305",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Westend Local Testnet",
|
|
15
15
|
"specName": "westend",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1019002
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "WND",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"accountType": "AccountId32",
|
|
24
24
|
"name": "Westend BridgeHub Local",
|
|
25
25
|
"specName": "bridge-hub-westend",
|
|
26
|
-
"specVersion":
|
|
26
|
+
"specVersion": 1019002
|
|
27
27
|
},
|
|
28
28
|
"ethereumChains": {
|
|
29
29
|
"11155111": {
|
|
@@ -39,31 +39,36 @@
|
|
|
39
39
|
"token": "0xb8ea8cb425d85536b158d661da1ef0895bb92f1d",
|
|
40
40
|
"name": "Wrapped Ether",
|
|
41
41
|
"symbol": "WETH",
|
|
42
|
-
"decimals": 18
|
|
42
|
+
"decimals": 18,
|
|
43
|
+
"deliveryGas": "bigint:80000"
|
|
43
44
|
},
|
|
44
45
|
"0xd8597eb7ef761e3315623edfee9defcbacd72e8b": {
|
|
45
46
|
"token": "0xd8597eb7ef761e3315623edfee9defcbacd72e8b",
|
|
46
47
|
"name": "roc",
|
|
47
48
|
"symbol": "roc",
|
|
48
49
|
"decimals": 12,
|
|
49
|
-
"foreignId": "0xbcd4282ca0c30cbd9c578b5c790e88c803d80cd9cc91f28686f24ac25a61e06e"
|
|
50
|
+
"foreignId": "0xbcd4282ca0c30cbd9c578b5c790e88c803d80cd9cc91f28686f24ac25a61e06e",
|
|
51
|
+
"deliveryGas": "bigint:80000"
|
|
50
52
|
},
|
|
51
53
|
"0xde45448ca2d57797c0bec0ee15a1e42334744219": {
|
|
52
54
|
"token": "0xde45448ca2d57797c0bec0ee15a1e42334744219",
|
|
53
55
|
"name": "wnd",
|
|
54
56
|
"symbol": "wnd",
|
|
55
57
|
"decimals": 12,
|
|
56
|
-
"foreignId": "0x9441dceeeffa7e032eedaccf9b7632e60e86711551a82ffbbb0dda8afd9e4ef7"
|
|
58
|
+
"foreignId": "0x9441dceeeffa7e032eedaccf9b7632e60e86711551a82ffbbb0dda8afd9e4ef7",
|
|
59
|
+
"deliveryGas": "bigint:80000"
|
|
57
60
|
},
|
|
58
61
|
"0x805c5a7d4e97908a8ec726dccc94a047d073eb7e": {
|
|
59
62
|
"token": "0x805c5a7d4e97908a8ec726dccc94a047d073eb7e",
|
|
60
63
|
"name": "pal-2",
|
|
61
64
|
"symbol": "pal-2",
|
|
62
65
|
"decimals": 12,
|
|
63
|
-
"foreignId": "0x17444ededa61bdbfcb1e5c39b2aed47f73b8970b65bbb0574c0a0ab1b0c99279"
|
|
66
|
+
"foreignId": "0x17444ededa61bdbfcb1e5c39b2aed47f73b8970b65bbb0574c0a0ab1b0c99279",
|
|
67
|
+
"deliveryGas": "bigint:80000"
|
|
64
68
|
}
|
|
65
69
|
},
|
|
66
|
-
"id": "sepolia"
|
|
70
|
+
"id": "sepolia",
|
|
71
|
+
"baseDeliveryGas": "bigint:120000"
|
|
67
72
|
}
|
|
68
73
|
},
|
|
69
74
|
"parachains": {
|
|
@@ -84,7 +89,7 @@
|
|
|
84
89
|
"accountType": "AccountId32",
|
|
85
90
|
"name": "Westend Asset Hub Local",
|
|
86
91
|
"specName": "westmint",
|
|
87
|
-
"specVersion":
|
|
92
|
+
"specVersion": 1019002
|
|
88
93
|
},
|
|
89
94
|
"assets": {
|
|
90
95
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-09-09T21:32:39.144Z",
|
|
3
3
|
"environment": "paseo_sepolia",
|
|
4
4
|
"ethChainId": 11155111,
|
|
5
5
|
"gatewayAddress": "0x1607C1368bc943130258318c91bBd8cFf3D063E6",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Paseo Testnet",
|
|
15
15
|
"specName": "paseo",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1006002
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "PAS",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"accountType": "AccountId32",
|
|
24
24
|
"name": "Paseo Bridge Hub",
|
|
25
25
|
"specName": "bridge-hub-paseo",
|
|
26
|
-
"specVersion":
|
|
26
|
+
"specVersion": 1006000
|
|
27
27
|
},
|
|
28
28
|
"ethereumChains": {
|
|
29
29
|
"11155111": {
|
|
@@ -41,6 +41,12 @@
|
|
|
41
41
|
"symbol": "wPILT",
|
|
42
42
|
"decimals": 15
|
|
43
43
|
},
|
|
44
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
45
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
46
|
+
"name": "OriginTrail TRAC",
|
|
47
|
+
"symbol": "TRAC",
|
|
48
|
+
"decimals": 18
|
|
49
|
+
},
|
|
44
50
|
"0x99e743964c036bc28931fb564817db428aa7f752": {
|
|
45
51
|
"token": "0x99e743964c036bc28931fb564817db428aa7f752",
|
|
46
52
|
"name": "KILT",
|
|
@@ -75,7 +81,7 @@
|
|
|
75
81
|
"accountType": "AccountId32",
|
|
76
82
|
"name": "Paseo Asset Hub",
|
|
77
83
|
"specName": "asset-hub-paseo",
|
|
78
|
-
"specVersion":
|
|
84
|
+
"specVersion": 1006002
|
|
79
85
|
},
|
|
80
86
|
"assets": {
|
|
81
87
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -94,6 +100,14 @@
|
|
|
94
100
|
"decimals": 0,
|
|
95
101
|
"isSufficient": false
|
|
96
102
|
},
|
|
103
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
104
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
105
|
+
"name": "",
|
|
106
|
+
"minimumBalance": "bigint:1",
|
|
107
|
+
"symbol": "",
|
|
108
|
+
"decimals": 0,
|
|
109
|
+
"isSufficient": false
|
|
110
|
+
},
|
|
97
111
|
"0x99e743964c036bc28931fb564817db428aa7f752": {
|
|
98
112
|
"token": "0x99e743964c036bc28931fb564817db428aa7f752",
|
|
99
113
|
"name": "",
|
|
@@ -114,6 +128,38 @@
|
|
|
114
128
|
"estimatedExecutionFeeDOT": "bigint:0",
|
|
115
129
|
"estimatedDeliveryFeeDOT": "bigint:0"
|
|
116
130
|
},
|
|
131
|
+
"2043": {
|
|
132
|
+
"parachainId": 2043,
|
|
133
|
+
"features": {
|
|
134
|
+
"hasPalletXcm": true,
|
|
135
|
+
"hasDryRunApi": false,
|
|
136
|
+
"hasTxPaymentApi": true,
|
|
137
|
+
"hasDryRunRpc": true,
|
|
138
|
+
"hasDotBalance": true
|
|
139
|
+
},
|
|
140
|
+
"info": {
|
|
141
|
+
"tokenSymbols": "NEURO",
|
|
142
|
+
"tokenDecimals": 12,
|
|
143
|
+
"ss58Format": 101,
|
|
144
|
+
"isEthereum": false,
|
|
145
|
+
"accountType": "AccountId32",
|
|
146
|
+
"name": "Neuro Testnet",
|
|
147
|
+
"specName": "origintrail-parachain",
|
|
148
|
+
"specVersion": 146
|
|
149
|
+
},
|
|
150
|
+
"assets": {
|
|
151
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
152
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
153
|
+
"name": "Trac",
|
|
154
|
+
"minimumBalance": "bigint:1000000000000000",
|
|
155
|
+
"symbol": "TRAC",
|
|
156
|
+
"decimals": 18,
|
|
157
|
+
"isSufficient": true
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"estimatedExecutionFeeDOT": "bigint:10000000000",
|
|
161
|
+
"estimatedDeliveryFeeDOT": "bigint:307250000"
|
|
162
|
+
},
|
|
117
163
|
"3369": {
|
|
118
164
|
"parachainId": 3369,
|
|
119
165
|
"features": {
|
|
@@ -131,7 +177,7 @@
|
|
|
131
177
|
"accountType": "AccountId20",
|
|
132
178
|
"name": "Muse Testnet",
|
|
133
179
|
"specName": "muse",
|
|
134
|
-
"specVersion":
|
|
180
|
+
"specVersion": 1029
|
|
135
181
|
},
|
|
136
182
|
"assets": {
|
|
137
183
|
"0xb34a6924a02100ba6ef12af1c798285e8f7a16ee": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-08-15T03:20:22.213Z",
|
|
3
3
|
"environment": "polkadot_mainnet",
|
|
4
4
|
"ethChainId": 1,
|
|
5
5
|
"gatewayAddress": "0x27ca963c279c93801941e1eb8799c23f407d68e7",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Polkadot",
|
|
15
15
|
"specName": "polkadot",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1006001
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "DOT",
|
|
@@ -33,121 +33,141 @@
|
|
|
33
33
|
"token": "0x9d39a5de30e57443bff2a8307a4256c8797a3497",
|
|
34
34
|
"name": "Staked USDe",
|
|
35
35
|
"symbol": "sUSDe",
|
|
36
|
-
"decimals": 18
|
|
36
|
+
"decimals": 18,
|
|
37
|
+
"deliveryGas": "bigint:80000"
|
|
37
38
|
},
|
|
38
39
|
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
39
40
|
"token": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
40
41
|
"name": "Wrapped Ether",
|
|
41
42
|
"symbol": "WETH",
|
|
42
|
-
"decimals": 18
|
|
43
|
+
"decimals": 18,
|
|
44
|
+
"deliveryGas": "bigint:80000"
|
|
43
45
|
},
|
|
44
46
|
"0x6982508145454ce325ddbe47a25d4ec3d2311933": {
|
|
45
47
|
"token": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
|
|
46
48
|
"name": "Pepe",
|
|
47
49
|
"symbol": "PEPE",
|
|
48
|
-
"decimals": 18
|
|
50
|
+
"decimals": 18,
|
|
51
|
+
"deliveryGas": "bigint:80000"
|
|
49
52
|
},
|
|
50
53
|
"0x5a98fcbea516cf06857215779fd812ca3bef1b32": {
|
|
51
54
|
"token": "0x5a98fcbea516cf06857215779fd812ca3bef1b32",
|
|
52
55
|
"name": "Lido DAO Token",
|
|
53
56
|
"symbol": "LDO",
|
|
54
|
-
"decimals": 18
|
|
57
|
+
"decimals": 18,
|
|
58
|
+
"deliveryGas": "bigint:150000"
|
|
55
59
|
},
|
|
56
60
|
"0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": {
|
|
57
61
|
"token": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd",
|
|
58
62
|
"name": "Savings USDS",
|
|
59
63
|
"symbol": "sUSDS",
|
|
60
|
-
"decimals": 18
|
|
64
|
+
"decimals": 18,
|
|
65
|
+
"deliveryGas": "bigint:80000"
|
|
61
66
|
},
|
|
62
67
|
"0x8236a87084f8b84306f72007f36f2618a5634494": {
|
|
63
68
|
"token": "0x8236a87084f8b84306f72007f36f2618a5634494",
|
|
64
69
|
"name": "Lombard Staked Bitcoin",
|
|
65
70
|
"symbol": "LBTC",
|
|
66
|
-
"decimals": 8
|
|
71
|
+
"decimals": 8,
|
|
72
|
+
"deliveryGas": "bigint:80000"
|
|
67
73
|
},
|
|
68
74
|
"0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": {
|
|
69
75
|
"token": "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c",
|
|
70
76
|
"name": "Euro Coin",
|
|
71
77
|
"symbol": "EURC",
|
|
72
|
-
"decimals": 6
|
|
78
|
+
"decimals": 6,
|
|
79
|
+
"deliveryGas": "bigint:80000"
|
|
73
80
|
},
|
|
74
81
|
"0x56072c95faa701256059aa122697b133aded9279": {
|
|
75
82
|
"token": "0x56072c95faa701256059aa122697b133aded9279",
|
|
76
83
|
"name": "SKY Governance Token",
|
|
77
84
|
"symbol": "SKY",
|
|
78
|
-
"decimals": 18
|
|
85
|
+
"decimals": 18,
|
|
86
|
+
"deliveryGas": "bigint:80000"
|
|
79
87
|
},
|
|
80
88
|
"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
|
|
81
89
|
"token": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
|
82
90
|
"name": "USD Coin",
|
|
83
91
|
"symbol": "USDC",
|
|
84
|
-
"decimals": 6
|
|
92
|
+
"decimals": 6,
|
|
93
|
+
"deliveryGas": "bigint:80000"
|
|
85
94
|
},
|
|
86
95
|
"0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003": {
|
|
87
96
|
"token": "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003",
|
|
88
97
|
"name": "Mythos",
|
|
89
98
|
"symbol": "MYTH",
|
|
90
|
-
"decimals": 18
|
|
99
|
+
"decimals": 18,
|
|
100
|
+
"deliveryGas": "bigint:80000"
|
|
91
101
|
},
|
|
92
102
|
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
93
103
|
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
94
104
|
"name": "Curio Gas Token",
|
|
95
105
|
"symbol": "CGT2.0",
|
|
96
|
-
"decimals": 18
|
|
106
|
+
"decimals": 18,
|
|
107
|
+
"deliveryGas": "bigint:80000"
|
|
97
108
|
},
|
|
98
109
|
"0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": {
|
|
99
110
|
"token": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
|
|
100
111
|
"name": "OriginTrail TRAC",
|
|
101
112
|
"symbol": "TRAC",
|
|
102
|
-
"decimals": 18
|
|
113
|
+
"decimals": 18,
|
|
114
|
+
"deliveryGas": "bigint:80000"
|
|
103
115
|
},
|
|
104
116
|
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
|
105
117
|
"token": "0x18084fba666a33d37592fa2633fd49a74dd93a88",
|
|
106
118
|
"name": "tBTC v2",
|
|
107
119
|
"symbol": "tBTC",
|
|
108
|
-
"decimals": 18
|
|
120
|
+
"decimals": 18,
|
|
121
|
+
"deliveryGas": "bigint:80000"
|
|
109
122
|
},
|
|
110
123
|
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
|
111
124
|
"token": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
|
|
112
125
|
"name": "Wrapped liquid staked Ether 2.0",
|
|
113
126
|
"symbol": "wstETH",
|
|
114
|
-
"decimals": 18
|
|
127
|
+
"decimals": 18,
|
|
128
|
+
"deliveryGas": "bigint:80000"
|
|
115
129
|
},
|
|
116
130
|
"0x582d872a1b094fc48f5de31d3b73f2d9be47def1": {
|
|
117
131
|
"token": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
|
|
118
132
|
"name": "Wrapped TON Coin",
|
|
119
133
|
"symbol": "TONCOIN",
|
|
120
|
-
"decimals": 9
|
|
134
|
+
"decimals": 9,
|
|
135
|
+
"deliveryGas": "bigint:80000"
|
|
121
136
|
},
|
|
122
137
|
"0x6b175474e89094c44da98b954eedeac495271d0f": {
|
|
123
138
|
"token": "0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
124
139
|
"name": "Dai Stablecoin",
|
|
125
140
|
"symbol": "DAI",
|
|
126
|
-
"decimals": 18
|
|
141
|
+
"decimals": 18,
|
|
142
|
+
"deliveryGas": "bigint:80000"
|
|
127
143
|
},
|
|
128
144
|
"0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": {
|
|
129
145
|
"token": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
|
|
130
146
|
"name": "SHIBA INU",
|
|
131
147
|
"symbol": "SHIB",
|
|
132
|
-
"decimals": 18
|
|
148
|
+
"decimals": 18,
|
|
149
|
+
"deliveryGas": "bigint:80000"
|
|
133
150
|
},
|
|
134
151
|
"0x7de91b204c1c737bcee6f000aaa6569cf7061cb7": {
|
|
135
152
|
"token": "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7",
|
|
136
153
|
"name": "Robonomics",
|
|
137
154
|
"symbol": "XRT",
|
|
138
|
-
"decimals": 9
|
|
155
|
+
"decimals": 9,
|
|
156
|
+
"deliveryGas": "bigint:80000"
|
|
139
157
|
},
|
|
140
158
|
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
|
141
159
|
"token": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
|
|
142
160
|
"name": "Wrapped BTC",
|
|
143
161
|
"symbol": "WBTC",
|
|
144
|
-
"decimals": 8
|
|
162
|
+
"decimals": 8,
|
|
163
|
+
"deliveryGas": "bigint:80000"
|
|
145
164
|
},
|
|
146
165
|
"0x8daebade922df735c38c80c7ebd708af50815faa": {
|
|
147
166
|
"token": "0x8daebade922df735c38c80c7ebd708af50815faa",
|
|
148
167
|
"name": "tBTC",
|
|
149
168
|
"symbol": "TBTC",
|
|
150
|
-
"decimals": 18
|
|
169
|
+
"decimals": 18,
|
|
170
|
+
"deliveryGas": "bigint:80000"
|
|
151
171
|
},
|
|
152
172
|
"0x0000000000000000000000000000000000000000": {
|
|
153
173
|
"token": "0x0000000000000000000000000000000000000000",
|
|
@@ -159,77 +179,89 @@
|
|
|
159
179
|
"token": "0x5d3d01fd6d2ad1169b17918eb4f153c6616288eb",
|
|
160
180
|
"name": "KILT",
|
|
161
181
|
"symbol": "KILT",
|
|
162
|
-
"decimals": 15
|
|
182
|
+
"decimals": 15,
|
|
183
|
+
"deliveryGas": "bigint:80000"
|
|
163
184
|
},
|
|
164
185
|
"0xdac17f958d2ee523a2206206994597c13d831ec7": {
|
|
165
186
|
"token": "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
166
187
|
"name": "Tether USD",
|
|
167
188
|
"symbol": "USDT",
|
|
168
|
-
"decimals": 6
|
|
189
|
+
"decimals": 6,
|
|
190
|
+
"deliveryGas": "bigint:80000"
|
|
169
191
|
},
|
|
170
192
|
"0x514910771af9ca656af840dff83e8264ecf986ca": {
|
|
171
193
|
"token": "0x514910771af9ca656af840dff83e8264ecf986ca",
|
|
172
194
|
"name": "ChainLink Token",
|
|
173
195
|
"symbol": "LINK",
|
|
174
|
-
"decimals": 18
|
|
196
|
+
"decimals": 18,
|
|
197
|
+
"deliveryGas": "bigint:80000"
|
|
175
198
|
},
|
|
176
199
|
"0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": {
|
|
177
200
|
"token": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
|
|
178
201
|
"name": "Aave Token",
|
|
179
202
|
"symbol": "AAVE",
|
|
180
|
-
"decimals": 18
|
|
203
|
+
"decimals": 18,
|
|
204
|
+
"deliveryGas": "bigint:80000"
|
|
181
205
|
},
|
|
182
206
|
"0x196c20da81fbc324ecdf55501e95ce9f0bd84d14": {
|
|
183
207
|
"token": "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14",
|
|
184
208
|
"name": "Polkadot",
|
|
185
209
|
"symbol": "DOT",
|
|
186
210
|
"decimals": 10,
|
|
187
|
-
"foreignId": "0x4e241583d94b5d48a27a22064cd49b2ed6f5231d2d950e432f9b7c2e0ade52b2"
|
|
211
|
+
"foreignId": "0x4e241583d94b5d48a27a22064cd49b2ed6f5231d2d950e432f9b7c2e0ade52b2",
|
|
212
|
+
"deliveryGas": "bigint:80000"
|
|
188
213
|
},
|
|
189
214
|
"0x21fab0ea070f162180447881d5873cf3d57200d6": {
|
|
190
215
|
"token": "0x21fab0ea070f162180447881d5873cf3d57200d6",
|
|
191
216
|
"name": "Kolkadot",
|
|
192
217
|
"symbol": "KOL",
|
|
193
218
|
"decimals": 12,
|
|
194
|
-
"foreignId": "0xad050334b66c8d3abaac7ef6667e97e3e6f4a25d9b7b4765133290f0dc19aa6e"
|
|
219
|
+
"foreignId": "0xad050334b66c8d3abaac7ef6667e97e3e6f4a25d9b7b4765133290f0dc19aa6e",
|
|
220
|
+
"deliveryGas": "bigint:80000"
|
|
195
221
|
},
|
|
196
222
|
"0x12bbfdc9e813614eef8dc8a2560b0efbeaf7c2ab": {
|
|
197
223
|
"token": "0x12bbfdc9e813614eef8dc8a2560b0efbeaf7c2ab",
|
|
198
224
|
"name": "Kusama",
|
|
199
225
|
"symbol": "KSM",
|
|
200
226
|
"decimals": 12,
|
|
201
|
-
"foreignId": "0x03b6054d0c576dd8391e34e1609cf398f68050c23009d19ce93c000922bcd852"
|
|
227
|
+
"foreignId": "0x03b6054d0c576dd8391e34e1609cf398f68050c23009d19ce93c000922bcd852",
|
|
228
|
+
"deliveryGas": "bigint:80000"
|
|
202
229
|
},
|
|
203
230
|
"0x5fdcd48f09fb67de3d202cd854b372aec1100ed5": {
|
|
204
231
|
"token": "0x5fdcd48f09fb67de3d202cd854b372aec1100ed5",
|
|
205
232
|
"name": "GAVUN WUD",
|
|
206
233
|
"symbol": "WUD",
|
|
207
234
|
"decimals": 10,
|
|
208
|
-
"foreignId": "0x7ca757304cac2ff0881de18dc6a1dfa7f10e51b0cba0297e0e762f8072049c98"
|
|
235
|
+
"foreignId": "0x7ca757304cac2ff0881de18dc6a1dfa7f10e51b0cba0297e0e762f8072049c98",
|
|
236
|
+
"deliveryGas": "bigint:80000"
|
|
209
237
|
},
|
|
210
238
|
"0xa37b046782518a80e2e69056009fbd0431d36e50": {
|
|
211
239
|
"token": "0xa37b046782518a80e2e69056009fbd0431d36e50",
|
|
212
240
|
"name": "PINK",
|
|
213
241
|
"symbol": "PINK",
|
|
214
242
|
"decimals": 10,
|
|
215
|
-
"foreignId": "0xbc8785969587ef3d22739d3385cb519a9e0133dd5da8d320c376772468c19be6"
|
|
243
|
+
"foreignId": "0xbc8785969587ef3d22739d3385cb519a9e0133dd5da8d320c376772468c19be6",
|
|
244
|
+
"deliveryGas": "bigint:80000"
|
|
216
245
|
},
|
|
217
246
|
"0x769916a66fdac0e3d57363129caac59386ea622b": {
|
|
218
247
|
"token": "0x769916a66fdac0e3d57363129caac59386ea622b",
|
|
219
248
|
"name": "Integritee TEER",
|
|
220
249
|
"symbol": "TEER",
|
|
221
250
|
"decimals": 12,
|
|
222
|
-
"foreignId": "0x3b7f577715347bdcde4739a1bf1a7f1dec71e8ff4dbe23a6a49348ebf920c658"
|
|
251
|
+
"foreignId": "0x3b7f577715347bdcde4739a1bf1a7f1dec71e8ff4dbe23a6a49348ebf920c658",
|
|
252
|
+
"deliveryGas": "bigint:80000"
|
|
223
253
|
},
|
|
224
254
|
"0x92262680a8d6636bba9bffdf484c274ca2de6400": {
|
|
225
255
|
"token": "0x92262680a8d6636bba9bffdf484c274ca2de6400",
|
|
226
256
|
"name": "DED",
|
|
227
257
|
"symbol": "DED",
|
|
228
258
|
"decimals": 10,
|
|
229
|
-
"foreignId": "0x536917d1276896038c09bb6499bd0d7197e609983ec22e9ca4e75b394b23752b"
|
|
259
|
+
"foreignId": "0x536917d1276896038c09bb6499bd0d7197e609983ec22e9ca4e75b394b23752b",
|
|
260
|
+
"deliveryGas": "bigint:80000"
|
|
230
261
|
}
|
|
231
262
|
},
|
|
232
|
-
"id": "mainnet"
|
|
263
|
+
"id": "mainnet",
|
|
264
|
+
"baseDeliveryGas": "bigint:120000"
|
|
233
265
|
},
|
|
234
266
|
"1284": {
|
|
235
267
|
"chainId": 1284,
|
|
@@ -401,10 +433,10 @@
|
|
|
401
433
|
},
|
|
402
434
|
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
403
435
|
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
404
|
-
"name": "",
|
|
436
|
+
"name": "Curio Gas Token",
|
|
437
|
+
"symbol": "CGT2.0",
|
|
438
|
+
"decimals": 18,
|
|
405
439
|
"minimumBalance": "bigint:1",
|
|
406
|
-
"symbol": "",
|
|
407
|
-
"decimals": 0,
|
|
408
440
|
"isSufficient": false
|
|
409
441
|
},
|
|
410
442
|
"0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": {
|
|
@@ -919,7 +951,7 @@
|
|
|
919
951
|
"evmChainId": 1284,
|
|
920
952
|
"name": "Moonbeam",
|
|
921
953
|
"specName": "moonbeam",
|
|
922
|
-
"specVersion":
|
|
954
|
+
"specVersion": 3800
|
|
923
955
|
},
|
|
924
956
|
"xcDOT": "0xffffffff1fcacbd218edc0eba20fc2308c778080",
|
|
925
957
|
"assets": {
|
|
@@ -987,7 +1019,7 @@
|
|
|
987
1019
|
"xc20": "0xffffffff7bc304425217b49e9598415c514ae81b"
|
|
988
1020
|
}
|
|
989
1021
|
},
|
|
990
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1022
|
+
"estimatedExecutionFeeDOT": "bigint:104787198",
|
|
991
1023
|
"estimatedDeliveryFeeDOT": "bigint:306500000"
|
|
992
1024
|
},
|
|
993
1025
|
"2030": {
|
|
@@ -1008,7 +1040,7 @@
|
|
|
1008
1040
|
"evmChainId": 996,
|
|
1009
1041
|
"name": "Bifrost Polkadot",
|
|
1010
1042
|
"specName": "bifrost_polkadot",
|
|
1011
|
-
"specVersion":
|
|
1043
|
+
"specVersion": 20002
|
|
1012
1044
|
},
|
|
1013
1045
|
"assets": {
|
|
1014
1046
|
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
@@ -1028,7 +1060,7 @@
|
|
|
1028
1060
|
"isSufficient": false
|
|
1029
1061
|
}
|
|
1030
1062
|
},
|
|
1031
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1063
|
+
"estimatedExecutionFeeDOT": "bigint:67285511",
|
|
1032
1064
|
"estimatedDeliveryFeeDOT": "bigint:307100000"
|
|
1033
1065
|
},
|
|
1034
1066
|
"2034": {
|
|
@@ -1049,7 +1081,7 @@
|
|
|
1049
1081
|
"evmChainId": 222222,
|
|
1050
1082
|
"name": "Hydration",
|
|
1051
1083
|
"specName": "hydradx",
|
|
1052
|
-
"specVersion":
|
|
1084
|
+
"specVersion": 335
|
|
1053
1085
|
},
|
|
1054
1086
|
"assets": {
|
|
1055
1087
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -1173,7 +1205,7 @@
|
|
|
1173
1205
|
"isSufficient": true
|
|
1174
1206
|
}
|
|
1175
1207
|
},
|
|
1176
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1208
|
+
"estimatedExecutionFeeDOT": "bigint:1695406",
|
|
1177
1209
|
"estimatedDeliveryFeeDOT": "bigint:307100000"
|
|
1178
1210
|
},
|
|
1179
1211
|
"3369": {
|
|
@@ -1228,7 +1260,7 @@
|
|
|
1228
1260
|
"accountType": "AccountId32",
|
|
1229
1261
|
"name": "Kusama Asset Hub",
|
|
1230
1262
|
"specName": "statemine",
|
|
1231
|
-
"specVersion":
|
|
1263
|
+
"specVersion": 1006001
|
|
1232
1264
|
},
|
|
1233
1265
|
"assets": {
|
|
1234
1266
|
"0x9d39a5de30e57443bff2a8307a4256c8797a3497": {
|
|
@@ -1303,6 +1335,14 @@
|
|
|
1303
1335
|
"decimals": 6,
|
|
1304
1336
|
"isSufficient": true
|
|
1305
1337
|
},
|
|
1338
|
+
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
1339
|
+
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
1340
|
+
"name": "Curio Gas Token",
|
|
1341
|
+
"symbol": "CGT2.0",
|
|
1342
|
+
"decimals": 18,
|
|
1343
|
+
"minimumBalance": "bigint:1",
|
|
1344
|
+
"isSufficient": false
|
|
1345
|
+
},
|
|
1306
1346
|
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
|
1307
1347
|
"token": "0x18084fba666a33d37592fa2633fd49a74dd93a88",
|
|
1308
1348
|
"name": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowbridge/registry",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Snowbridge Asset Registry",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"ts-node": "^10.9.2",
|
|
21
21
|
"tsconfig-paths": "^4.2.0",
|
|
22
22
|
"typescript": "^5.4.5",
|
|
23
|
-
"@snowbridge/api": "0.2.
|
|
23
|
+
"@snowbridge/api": "0.2.4"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@snowbridge/base-types": "0.2.
|
|
26
|
+
"@snowbridge/base-types": "0.2.4"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc --build --force",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-08-13T06:09:22.989Z",
|
|
3
3
|
"environment": "local_e2e",
|
|
4
4
|
"ethChainId": 11155111,
|
|
5
5
|
"gatewayAddress": "0xb1185ede04202fe62d38f5db72f71e38ff3e8305",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Westend Local Testnet",
|
|
15
15
|
"specName": "westend",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1019002
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "WND",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"accountType": "AccountId32",
|
|
24
24
|
"name": "Westend BridgeHub Local",
|
|
25
25
|
"specName": "bridge-hub-westend",
|
|
26
|
-
"specVersion":
|
|
26
|
+
"specVersion": 1019002
|
|
27
27
|
},
|
|
28
28
|
"ethereumChains": {
|
|
29
29
|
"11155111": {
|
|
@@ -39,31 +39,36 @@
|
|
|
39
39
|
"token": "0xb8ea8cb425d85536b158d661da1ef0895bb92f1d",
|
|
40
40
|
"name": "Wrapped Ether",
|
|
41
41
|
"symbol": "WETH",
|
|
42
|
-
"decimals": 18
|
|
42
|
+
"decimals": 18,
|
|
43
|
+
"deliveryGas": "bigint:80000"
|
|
43
44
|
},
|
|
44
45
|
"0xd8597eb7ef761e3315623edfee9defcbacd72e8b": {
|
|
45
46
|
"token": "0xd8597eb7ef761e3315623edfee9defcbacd72e8b",
|
|
46
47
|
"name": "roc",
|
|
47
48
|
"symbol": "roc",
|
|
48
49
|
"decimals": 12,
|
|
49
|
-
"foreignId": "0xbcd4282ca0c30cbd9c578b5c790e88c803d80cd9cc91f28686f24ac25a61e06e"
|
|
50
|
+
"foreignId": "0xbcd4282ca0c30cbd9c578b5c790e88c803d80cd9cc91f28686f24ac25a61e06e",
|
|
51
|
+
"deliveryGas": "bigint:80000"
|
|
50
52
|
},
|
|
51
53
|
"0xde45448ca2d57797c0bec0ee15a1e42334744219": {
|
|
52
54
|
"token": "0xde45448ca2d57797c0bec0ee15a1e42334744219",
|
|
53
55
|
"name": "wnd",
|
|
54
56
|
"symbol": "wnd",
|
|
55
57
|
"decimals": 12,
|
|
56
|
-
"foreignId": "0x9441dceeeffa7e032eedaccf9b7632e60e86711551a82ffbbb0dda8afd9e4ef7"
|
|
58
|
+
"foreignId": "0x9441dceeeffa7e032eedaccf9b7632e60e86711551a82ffbbb0dda8afd9e4ef7",
|
|
59
|
+
"deliveryGas": "bigint:80000"
|
|
57
60
|
},
|
|
58
61
|
"0x805c5a7d4e97908a8ec726dccc94a047d073eb7e": {
|
|
59
62
|
"token": "0x805c5a7d4e97908a8ec726dccc94a047d073eb7e",
|
|
60
63
|
"name": "pal-2",
|
|
61
64
|
"symbol": "pal-2",
|
|
62
65
|
"decimals": 12,
|
|
63
|
-
"foreignId": "0x17444ededa61bdbfcb1e5c39b2aed47f73b8970b65bbb0574c0a0ab1b0c99279"
|
|
66
|
+
"foreignId": "0x17444ededa61bdbfcb1e5c39b2aed47f73b8970b65bbb0574c0a0ab1b0c99279",
|
|
67
|
+
"deliveryGas": "bigint:80000"
|
|
64
68
|
}
|
|
65
69
|
},
|
|
66
|
-
"id": "sepolia"
|
|
70
|
+
"id": "sepolia",
|
|
71
|
+
"baseDeliveryGas": "bigint:120000"
|
|
67
72
|
}
|
|
68
73
|
},
|
|
69
74
|
"parachains": {
|
|
@@ -84,7 +89,7 @@
|
|
|
84
89
|
"accountType": "AccountId32",
|
|
85
90
|
"name": "Westend Asset Hub Local",
|
|
86
91
|
"specName": "westmint",
|
|
87
|
-
"specVersion":
|
|
92
|
+
"specVersion": 1019002
|
|
88
93
|
},
|
|
89
94
|
"assets": {
|
|
90
95
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-09-09T21:32:39.144Z",
|
|
3
3
|
"environment": "paseo_sepolia",
|
|
4
4
|
"ethChainId": 11155111,
|
|
5
5
|
"gatewayAddress": "0x1607C1368bc943130258318c91bBd8cFf3D063E6",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Paseo Testnet",
|
|
15
15
|
"specName": "paseo",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1006002
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "PAS",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"accountType": "AccountId32",
|
|
24
24
|
"name": "Paseo Bridge Hub",
|
|
25
25
|
"specName": "bridge-hub-paseo",
|
|
26
|
-
"specVersion":
|
|
26
|
+
"specVersion": 1006000
|
|
27
27
|
},
|
|
28
28
|
"ethereumChains": {
|
|
29
29
|
"11155111": {
|
|
@@ -41,6 +41,12 @@
|
|
|
41
41
|
"symbol": "wPILT",
|
|
42
42
|
"decimals": 15
|
|
43
43
|
},
|
|
44
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
45
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
46
|
+
"name": "OriginTrail TRAC",
|
|
47
|
+
"symbol": "TRAC",
|
|
48
|
+
"decimals": 18
|
|
49
|
+
},
|
|
44
50
|
"0x99e743964c036bc28931fb564817db428aa7f752": {
|
|
45
51
|
"token": "0x99e743964c036bc28931fb564817db428aa7f752",
|
|
46
52
|
"name": "KILT",
|
|
@@ -75,7 +81,7 @@
|
|
|
75
81
|
"accountType": "AccountId32",
|
|
76
82
|
"name": "Paseo Asset Hub",
|
|
77
83
|
"specName": "asset-hub-paseo",
|
|
78
|
-
"specVersion":
|
|
84
|
+
"specVersion": 1006002
|
|
79
85
|
},
|
|
80
86
|
"assets": {
|
|
81
87
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -94,6 +100,14 @@
|
|
|
94
100
|
"decimals": 0,
|
|
95
101
|
"isSufficient": false
|
|
96
102
|
},
|
|
103
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
104
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
105
|
+
"name": "",
|
|
106
|
+
"minimumBalance": "bigint:1",
|
|
107
|
+
"symbol": "",
|
|
108
|
+
"decimals": 0,
|
|
109
|
+
"isSufficient": false
|
|
110
|
+
},
|
|
97
111
|
"0x99e743964c036bc28931fb564817db428aa7f752": {
|
|
98
112
|
"token": "0x99e743964c036bc28931fb564817db428aa7f752",
|
|
99
113
|
"name": "",
|
|
@@ -114,6 +128,38 @@
|
|
|
114
128
|
"estimatedExecutionFeeDOT": "bigint:0",
|
|
115
129
|
"estimatedDeliveryFeeDOT": "bigint:0"
|
|
116
130
|
},
|
|
131
|
+
"2043": {
|
|
132
|
+
"parachainId": 2043,
|
|
133
|
+
"features": {
|
|
134
|
+
"hasPalletXcm": true,
|
|
135
|
+
"hasDryRunApi": false,
|
|
136
|
+
"hasTxPaymentApi": true,
|
|
137
|
+
"hasDryRunRpc": true,
|
|
138
|
+
"hasDotBalance": true
|
|
139
|
+
},
|
|
140
|
+
"info": {
|
|
141
|
+
"tokenSymbols": "NEURO",
|
|
142
|
+
"tokenDecimals": 12,
|
|
143
|
+
"ss58Format": 101,
|
|
144
|
+
"isEthereum": false,
|
|
145
|
+
"accountType": "AccountId32",
|
|
146
|
+
"name": "Neuro Testnet",
|
|
147
|
+
"specName": "origintrail-parachain",
|
|
148
|
+
"specVersion": 146
|
|
149
|
+
},
|
|
150
|
+
"assets": {
|
|
151
|
+
"0xef32abea56beff54f61da319a7311098d6fbcea9": {
|
|
152
|
+
"token": "0xef32abea56beff54f61da319a7311098d6fbcea9",
|
|
153
|
+
"name": "Trac",
|
|
154
|
+
"minimumBalance": "bigint:1000000000000000",
|
|
155
|
+
"symbol": "TRAC",
|
|
156
|
+
"decimals": 18,
|
|
157
|
+
"isSufficient": true
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"estimatedExecutionFeeDOT": "bigint:10000000000",
|
|
161
|
+
"estimatedDeliveryFeeDOT": "bigint:307250000"
|
|
162
|
+
},
|
|
117
163
|
"3369": {
|
|
118
164
|
"parachainId": 3369,
|
|
119
165
|
"features": {
|
|
@@ -131,7 +177,7 @@
|
|
|
131
177
|
"accountType": "AccountId20",
|
|
132
178
|
"name": "Muse Testnet",
|
|
133
179
|
"specName": "muse",
|
|
134
|
-
"specVersion":
|
|
180
|
+
"specVersion": 1029
|
|
135
181
|
},
|
|
136
182
|
"assets": {
|
|
137
183
|
"0xb34a6924a02100ba6ef12af1c798285e8f7a16ee": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-08-15T03:20:22.213Z",
|
|
3
3
|
"environment": "polkadot_mainnet",
|
|
4
4
|
"ethChainId": 1,
|
|
5
5
|
"gatewayAddress": "0x27ca963c279c93801941e1eb8799c23f407d68e7",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"accountType": "AccountId32",
|
|
14
14
|
"name": "Polkadot",
|
|
15
15
|
"specName": "polkadot",
|
|
16
|
-
"specVersion":
|
|
16
|
+
"specVersion": 1006001
|
|
17
17
|
},
|
|
18
18
|
"bridgeHub": {
|
|
19
19
|
"tokenSymbols": "DOT",
|
|
@@ -33,121 +33,141 @@
|
|
|
33
33
|
"token": "0x9d39a5de30e57443bff2a8307a4256c8797a3497",
|
|
34
34
|
"name": "Staked USDe",
|
|
35
35
|
"symbol": "sUSDe",
|
|
36
|
-
"decimals": 18
|
|
36
|
+
"decimals": 18,
|
|
37
|
+
"deliveryGas": "bigint:80000"
|
|
37
38
|
},
|
|
38
39
|
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
39
40
|
"token": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
40
41
|
"name": "Wrapped Ether",
|
|
41
42
|
"symbol": "WETH",
|
|
42
|
-
"decimals": 18
|
|
43
|
+
"decimals": 18,
|
|
44
|
+
"deliveryGas": "bigint:80000"
|
|
43
45
|
},
|
|
44
46
|
"0x6982508145454ce325ddbe47a25d4ec3d2311933": {
|
|
45
47
|
"token": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
|
|
46
48
|
"name": "Pepe",
|
|
47
49
|
"symbol": "PEPE",
|
|
48
|
-
"decimals": 18
|
|
50
|
+
"decimals": 18,
|
|
51
|
+
"deliveryGas": "bigint:80000"
|
|
49
52
|
},
|
|
50
53
|
"0x5a98fcbea516cf06857215779fd812ca3bef1b32": {
|
|
51
54
|
"token": "0x5a98fcbea516cf06857215779fd812ca3bef1b32",
|
|
52
55
|
"name": "Lido DAO Token",
|
|
53
56
|
"symbol": "LDO",
|
|
54
|
-
"decimals": 18
|
|
57
|
+
"decimals": 18,
|
|
58
|
+
"deliveryGas": "bigint:150000"
|
|
55
59
|
},
|
|
56
60
|
"0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": {
|
|
57
61
|
"token": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd",
|
|
58
62
|
"name": "Savings USDS",
|
|
59
63
|
"symbol": "sUSDS",
|
|
60
|
-
"decimals": 18
|
|
64
|
+
"decimals": 18,
|
|
65
|
+
"deliveryGas": "bigint:80000"
|
|
61
66
|
},
|
|
62
67
|
"0x8236a87084f8b84306f72007f36f2618a5634494": {
|
|
63
68
|
"token": "0x8236a87084f8b84306f72007f36f2618a5634494",
|
|
64
69
|
"name": "Lombard Staked Bitcoin",
|
|
65
70
|
"symbol": "LBTC",
|
|
66
|
-
"decimals": 8
|
|
71
|
+
"decimals": 8,
|
|
72
|
+
"deliveryGas": "bigint:80000"
|
|
67
73
|
},
|
|
68
74
|
"0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": {
|
|
69
75
|
"token": "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c",
|
|
70
76
|
"name": "Euro Coin",
|
|
71
77
|
"symbol": "EURC",
|
|
72
|
-
"decimals": 6
|
|
78
|
+
"decimals": 6,
|
|
79
|
+
"deliveryGas": "bigint:80000"
|
|
73
80
|
},
|
|
74
81
|
"0x56072c95faa701256059aa122697b133aded9279": {
|
|
75
82
|
"token": "0x56072c95faa701256059aa122697b133aded9279",
|
|
76
83
|
"name": "SKY Governance Token",
|
|
77
84
|
"symbol": "SKY",
|
|
78
|
-
"decimals": 18
|
|
85
|
+
"decimals": 18,
|
|
86
|
+
"deliveryGas": "bigint:80000"
|
|
79
87
|
},
|
|
80
88
|
"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
|
|
81
89
|
"token": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
|
82
90
|
"name": "USD Coin",
|
|
83
91
|
"symbol": "USDC",
|
|
84
|
-
"decimals": 6
|
|
92
|
+
"decimals": 6,
|
|
93
|
+
"deliveryGas": "bigint:80000"
|
|
85
94
|
},
|
|
86
95
|
"0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003": {
|
|
87
96
|
"token": "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003",
|
|
88
97
|
"name": "Mythos",
|
|
89
98
|
"symbol": "MYTH",
|
|
90
|
-
"decimals": 18
|
|
99
|
+
"decimals": 18,
|
|
100
|
+
"deliveryGas": "bigint:80000"
|
|
91
101
|
},
|
|
92
102
|
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
93
103
|
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
94
104
|
"name": "Curio Gas Token",
|
|
95
105
|
"symbol": "CGT2.0",
|
|
96
|
-
"decimals": 18
|
|
106
|
+
"decimals": 18,
|
|
107
|
+
"deliveryGas": "bigint:80000"
|
|
97
108
|
},
|
|
98
109
|
"0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": {
|
|
99
110
|
"token": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
|
|
100
111
|
"name": "OriginTrail TRAC",
|
|
101
112
|
"symbol": "TRAC",
|
|
102
|
-
"decimals": 18
|
|
113
|
+
"decimals": 18,
|
|
114
|
+
"deliveryGas": "bigint:80000"
|
|
103
115
|
},
|
|
104
116
|
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
|
105
117
|
"token": "0x18084fba666a33d37592fa2633fd49a74dd93a88",
|
|
106
118
|
"name": "tBTC v2",
|
|
107
119
|
"symbol": "tBTC",
|
|
108
|
-
"decimals": 18
|
|
120
|
+
"decimals": 18,
|
|
121
|
+
"deliveryGas": "bigint:80000"
|
|
109
122
|
},
|
|
110
123
|
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
|
111
124
|
"token": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
|
|
112
125
|
"name": "Wrapped liquid staked Ether 2.0",
|
|
113
126
|
"symbol": "wstETH",
|
|
114
|
-
"decimals": 18
|
|
127
|
+
"decimals": 18,
|
|
128
|
+
"deliveryGas": "bigint:80000"
|
|
115
129
|
},
|
|
116
130
|
"0x582d872a1b094fc48f5de31d3b73f2d9be47def1": {
|
|
117
131
|
"token": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
|
|
118
132
|
"name": "Wrapped TON Coin",
|
|
119
133
|
"symbol": "TONCOIN",
|
|
120
|
-
"decimals": 9
|
|
134
|
+
"decimals": 9,
|
|
135
|
+
"deliveryGas": "bigint:80000"
|
|
121
136
|
},
|
|
122
137
|
"0x6b175474e89094c44da98b954eedeac495271d0f": {
|
|
123
138
|
"token": "0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
124
139
|
"name": "Dai Stablecoin",
|
|
125
140
|
"symbol": "DAI",
|
|
126
|
-
"decimals": 18
|
|
141
|
+
"decimals": 18,
|
|
142
|
+
"deliveryGas": "bigint:80000"
|
|
127
143
|
},
|
|
128
144
|
"0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": {
|
|
129
145
|
"token": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
|
|
130
146
|
"name": "SHIBA INU",
|
|
131
147
|
"symbol": "SHIB",
|
|
132
|
-
"decimals": 18
|
|
148
|
+
"decimals": 18,
|
|
149
|
+
"deliveryGas": "bigint:80000"
|
|
133
150
|
},
|
|
134
151
|
"0x7de91b204c1c737bcee6f000aaa6569cf7061cb7": {
|
|
135
152
|
"token": "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7",
|
|
136
153
|
"name": "Robonomics",
|
|
137
154
|
"symbol": "XRT",
|
|
138
|
-
"decimals": 9
|
|
155
|
+
"decimals": 9,
|
|
156
|
+
"deliveryGas": "bigint:80000"
|
|
139
157
|
},
|
|
140
158
|
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
|
141
159
|
"token": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
|
|
142
160
|
"name": "Wrapped BTC",
|
|
143
161
|
"symbol": "WBTC",
|
|
144
|
-
"decimals": 8
|
|
162
|
+
"decimals": 8,
|
|
163
|
+
"deliveryGas": "bigint:80000"
|
|
145
164
|
},
|
|
146
165
|
"0x8daebade922df735c38c80c7ebd708af50815faa": {
|
|
147
166
|
"token": "0x8daebade922df735c38c80c7ebd708af50815faa",
|
|
148
167
|
"name": "tBTC",
|
|
149
168
|
"symbol": "TBTC",
|
|
150
|
-
"decimals": 18
|
|
169
|
+
"decimals": 18,
|
|
170
|
+
"deliveryGas": "bigint:80000"
|
|
151
171
|
},
|
|
152
172
|
"0x0000000000000000000000000000000000000000": {
|
|
153
173
|
"token": "0x0000000000000000000000000000000000000000",
|
|
@@ -159,77 +179,89 @@
|
|
|
159
179
|
"token": "0x5d3d01fd6d2ad1169b17918eb4f153c6616288eb",
|
|
160
180
|
"name": "KILT",
|
|
161
181
|
"symbol": "KILT",
|
|
162
|
-
"decimals": 15
|
|
182
|
+
"decimals": 15,
|
|
183
|
+
"deliveryGas": "bigint:80000"
|
|
163
184
|
},
|
|
164
185
|
"0xdac17f958d2ee523a2206206994597c13d831ec7": {
|
|
165
186
|
"token": "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
166
187
|
"name": "Tether USD",
|
|
167
188
|
"symbol": "USDT",
|
|
168
|
-
"decimals": 6
|
|
189
|
+
"decimals": 6,
|
|
190
|
+
"deliveryGas": "bigint:80000"
|
|
169
191
|
},
|
|
170
192
|
"0x514910771af9ca656af840dff83e8264ecf986ca": {
|
|
171
193
|
"token": "0x514910771af9ca656af840dff83e8264ecf986ca",
|
|
172
194
|
"name": "ChainLink Token",
|
|
173
195
|
"symbol": "LINK",
|
|
174
|
-
"decimals": 18
|
|
196
|
+
"decimals": 18,
|
|
197
|
+
"deliveryGas": "bigint:80000"
|
|
175
198
|
},
|
|
176
199
|
"0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": {
|
|
177
200
|
"token": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
|
|
178
201
|
"name": "Aave Token",
|
|
179
202
|
"symbol": "AAVE",
|
|
180
|
-
"decimals": 18
|
|
203
|
+
"decimals": 18,
|
|
204
|
+
"deliveryGas": "bigint:80000"
|
|
181
205
|
},
|
|
182
206
|
"0x196c20da81fbc324ecdf55501e95ce9f0bd84d14": {
|
|
183
207
|
"token": "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14",
|
|
184
208
|
"name": "Polkadot",
|
|
185
209
|
"symbol": "DOT",
|
|
186
210
|
"decimals": 10,
|
|
187
|
-
"foreignId": "0x4e241583d94b5d48a27a22064cd49b2ed6f5231d2d950e432f9b7c2e0ade52b2"
|
|
211
|
+
"foreignId": "0x4e241583d94b5d48a27a22064cd49b2ed6f5231d2d950e432f9b7c2e0ade52b2",
|
|
212
|
+
"deliveryGas": "bigint:80000"
|
|
188
213
|
},
|
|
189
214
|
"0x21fab0ea070f162180447881d5873cf3d57200d6": {
|
|
190
215
|
"token": "0x21fab0ea070f162180447881d5873cf3d57200d6",
|
|
191
216
|
"name": "Kolkadot",
|
|
192
217
|
"symbol": "KOL",
|
|
193
218
|
"decimals": 12,
|
|
194
|
-
"foreignId": "0xad050334b66c8d3abaac7ef6667e97e3e6f4a25d9b7b4765133290f0dc19aa6e"
|
|
219
|
+
"foreignId": "0xad050334b66c8d3abaac7ef6667e97e3e6f4a25d9b7b4765133290f0dc19aa6e",
|
|
220
|
+
"deliveryGas": "bigint:80000"
|
|
195
221
|
},
|
|
196
222
|
"0x12bbfdc9e813614eef8dc8a2560b0efbeaf7c2ab": {
|
|
197
223
|
"token": "0x12bbfdc9e813614eef8dc8a2560b0efbeaf7c2ab",
|
|
198
224
|
"name": "Kusama",
|
|
199
225
|
"symbol": "KSM",
|
|
200
226
|
"decimals": 12,
|
|
201
|
-
"foreignId": "0x03b6054d0c576dd8391e34e1609cf398f68050c23009d19ce93c000922bcd852"
|
|
227
|
+
"foreignId": "0x03b6054d0c576dd8391e34e1609cf398f68050c23009d19ce93c000922bcd852",
|
|
228
|
+
"deliveryGas": "bigint:80000"
|
|
202
229
|
},
|
|
203
230
|
"0x5fdcd48f09fb67de3d202cd854b372aec1100ed5": {
|
|
204
231
|
"token": "0x5fdcd48f09fb67de3d202cd854b372aec1100ed5",
|
|
205
232
|
"name": "GAVUN WUD",
|
|
206
233
|
"symbol": "WUD",
|
|
207
234
|
"decimals": 10,
|
|
208
|
-
"foreignId": "0x7ca757304cac2ff0881de18dc6a1dfa7f10e51b0cba0297e0e762f8072049c98"
|
|
235
|
+
"foreignId": "0x7ca757304cac2ff0881de18dc6a1dfa7f10e51b0cba0297e0e762f8072049c98",
|
|
236
|
+
"deliveryGas": "bigint:80000"
|
|
209
237
|
},
|
|
210
238
|
"0xa37b046782518a80e2e69056009fbd0431d36e50": {
|
|
211
239
|
"token": "0xa37b046782518a80e2e69056009fbd0431d36e50",
|
|
212
240
|
"name": "PINK",
|
|
213
241
|
"symbol": "PINK",
|
|
214
242
|
"decimals": 10,
|
|
215
|
-
"foreignId": "0xbc8785969587ef3d22739d3385cb519a9e0133dd5da8d320c376772468c19be6"
|
|
243
|
+
"foreignId": "0xbc8785969587ef3d22739d3385cb519a9e0133dd5da8d320c376772468c19be6",
|
|
244
|
+
"deliveryGas": "bigint:80000"
|
|
216
245
|
},
|
|
217
246
|
"0x769916a66fdac0e3d57363129caac59386ea622b": {
|
|
218
247
|
"token": "0x769916a66fdac0e3d57363129caac59386ea622b",
|
|
219
248
|
"name": "Integritee TEER",
|
|
220
249
|
"symbol": "TEER",
|
|
221
250
|
"decimals": 12,
|
|
222
|
-
"foreignId": "0x3b7f577715347bdcde4739a1bf1a7f1dec71e8ff4dbe23a6a49348ebf920c658"
|
|
251
|
+
"foreignId": "0x3b7f577715347bdcde4739a1bf1a7f1dec71e8ff4dbe23a6a49348ebf920c658",
|
|
252
|
+
"deliveryGas": "bigint:80000"
|
|
223
253
|
},
|
|
224
254
|
"0x92262680a8d6636bba9bffdf484c274ca2de6400": {
|
|
225
255
|
"token": "0x92262680a8d6636bba9bffdf484c274ca2de6400",
|
|
226
256
|
"name": "DED",
|
|
227
257
|
"symbol": "DED",
|
|
228
258
|
"decimals": 10,
|
|
229
|
-
"foreignId": "0x536917d1276896038c09bb6499bd0d7197e609983ec22e9ca4e75b394b23752b"
|
|
259
|
+
"foreignId": "0x536917d1276896038c09bb6499bd0d7197e609983ec22e9ca4e75b394b23752b",
|
|
260
|
+
"deliveryGas": "bigint:80000"
|
|
230
261
|
}
|
|
231
262
|
},
|
|
232
|
-
"id": "mainnet"
|
|
263
|
+
"id": "mainnet",
|
|
264
|
+
"baseDeliveryGas": "bigint:120000"
|
|
233
265
|
},
|
|
234
266
|
"1284": {
|
|
235
267
|
"chainId": 1284,
|
|
@@ -401,10 +433,10 @@
|
|
|
401
433
|
},
|
|
402
434
|
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
403
435
|
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
404
|
-
"name": "",
|
|
436
|
+
"name": "Curio Gas Token",
|
|
437
|
+
"symbol": "CGT2.0",
|
|
438
|
+
"decimals": 18,
|
|
405
439
|
"minimumBalance": "bigint:1",
|
|
406
|
-
"symbol": "",
|
|
407
|
-
"decimals": 0,
|
|
408
440
|
"isSufficient": false
|
|
409
441
|
},
|
|
410
442
|
"0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": {
|
|
@@ -919,7 +951,7 @@
|
|
|
919
951
|
"evmChainId": 1284,
|
|
920
952
|
"name": "Moonbeam",
|
|
921
953
|
"specName": "moonbeam",
|
|
922
|
-
"specVersion":
|
|
954
|
+
"specVersion": 3800
|
|
923
955
|
},
|
|
924
956
|
"xcDOT": "0xffffffff1fcacbd218edc0eba20fc2308c778080",
|
|
925
957
|
"assets": {
|
|
@@ -987,7 +1019,7 @@
|
|
|
987
1019
|
"xc20": "0xffffffff7bc304425217b49e9598415c514ae81b"
|
|
988
1020
|
}
|
|
989
1021
|
},
|
|
990
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1022
|
+
"estimatedExecutionFeeDOT": "bigint:104787198",
|
|
991
1023
|
"estimatedDeliveryFeeDOT": "bigint:306500000"
|
|
992
1024
|
},
|
|
993
1025
|
"2030": {
|
|
@@ -1008,7 +1040,7 @@
|
|
|
1008
1040
|
"evmChainId": 996,
|
|
1009
1041
|
"name": "Bifrost Polkadot",
|
|
1010
1042
|
"specName": "bifrost_polkadot",
|
|
1011
|
-
"specVersion":
|
|
1043
|
+
"specVersion": 20002
|
|
1012
1044
|
},
|
|
1013
1045
|
"assets": {
|
|
1014
1046
|
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
@@ -1028,7 +1060,7 @@
|
|
|
1028
1060
|
"isSufficient": false
|
|
1029
1061
|
}
|
|
1030
1062
|
},
|
|
1031
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1063
|
+
"estimatedExecutionFeeDOT": "bigint:67285511",
|
|
1032
1064
|
"estimatedDeliveryFeeDOT": "bigint:307100000"
|
|
1033
1065
|
},
|
|
1034
1066
|
"2034": {
|
|
@@ -1049,7 +1081,7 @@
|
|
|
1049
1081
|
"evmChainId": 222222,
|
|
1050
1082
|
"name": "Hydration",
|
|
1051
1083
|
"specName": "hydradx",
|
|
1052
|
-
"specVersion":
|
|
1084
|
+
"specVersion": 335
|
|
1053
1085
|
},
|
|
1054
1086
|
"assets": {
|
|
1055
1087
|
"0x0000000000000000000000000000000000000000": {
|
|
@@ -1173,7 +1205,7 @@
|
|
|
1173
1205
|
"isSufficient": true
|
|
1174
1206
|
}
|
|
1175
1207
|
},
|
|
1176
|
-
"estimatedExecutionFeeDOT": "bigint:
|
|
1208
|
+
"estimatedExecutionFeeDOT": "bigint:1695406",
|
|
1177
1209
|
"estimatedDeliveryFeeDOT": "bigint:307100000"
|
|
1178
1210
|
},
|
|
1179
1211
|
"3369": {
|
|
@@ -1228,7 +1260,7 @@
|
|
|
1228
1260
|
"accountType": "AccountId32",
|
|
1229
1261
|
"name": "Kusama Asset Hub",
|
|
1230
1262
|
"specName": "statemine",
|
|
1231
|
-
"specVersion":
|
|
1263
|
+
"specVersion": 1006001
|
|
1232
1264
|
},
|
|
1233
1265
|
"assets": {
|
|
1234
1266
|
"0x9d39a5de30e57443bff2a8307a4256c8797a3497": {
|
|
@@ -1303,6 +1335,14 @@
|
|
|
1303
1335
|
"decimals": 6,
|
|
1304
1336
|
"isSufficient": true
|
|
1305
1337
|
},
|
|
1338
|
+
"0x0e186357c323c806c1efdad36d217f7a54b63d18": {
|
|
1339
|
+
"token": "0x0e186357c323c806c1efdad36d217f7a54b63d18",
|
|
1340
|
+
"name": "Curio Gas Token",
|
|
1341
|
+
"symbol": "CGT2.0",
|
|
1342
|
+
"decimals": 18,
|
|
1343
|
+
"minimumBalance": "bigint:1",
|
|
1344
|
+
"isSufficient": false
|
|
1345
|
+
},
|
|
1306
1346
|
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
|
1307
1347
|
"token": "0x18084fba666a33d37592fa2633fd49a74dd93a88",
|
|
1308
1348
|
"name": "",
|