@subwallet/chain-list 0.2.95-beta.1 → 0.2.96-beta.0
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/bundle-subwallet-chain-list.js +517 -2481
- package/cjs/data/AssetLogoMap.json +1 -2
- package/cjs/data/AssetRef.json +1 -2297
- package/cjs/data/ChainAsset.json +1 -17
- package/cjs/index.js +20 -1
- package/cjs/packageInfo.js +1 -1
- package/data/AssetLogoMap.json +1 -2
- package/data/AssetRef.json +1 -2297
- package/data/ChainAsset.json +1 -17
- package/index.d.ts +2 -0
- package/index.js +18 -1
- package/package.json +3 -2
- package/packageInfo.js +1 -1
|
@@ -6,6 +6,337 @@
|
|
|
6
6
|
|
|
7
7
|
const global = window;
|
|
8
8
|
|
|
9
|
+
class Md5 {
|
|
10
|
+
constructor() {
|
|
11
|
+
this._dataLength = 0;
|
|
12
|
+
this._bufferLength = 0;
|
|
13
|
+
this._state = new Int32Array(4);
|
|
14
|
+
this._buffer = new ArrayBuffer(68);
|
|
15
|
+
this._buffer8 = new Uint8Array(this._buffer, 0, 68);
|
|
16
|
+
this._buffer32 = new Uint32Array(this._buffer, 0, 17);
|
|
17
|
+
this.start();
|
|
18
|
+
}
|
|
19
|
+
static hashStr(str, raw = false) {
|
|
20
|
+
return this.onePassHasher
|
|
21
|
+
.start()
|
|
22
|
+
.appendStr(str)
|
|
23
|
+
.end(raw);
|
|
24
|
+
}
|
|
25
|
+
static hashAsciiStr(str, raw = false) {
|
|
26
|
+
return this.onePassHasher
|
|
27
|
+
.start()
|
|
28
|
+
.appendAsciiStr(str)
|
|
29
|
+
.end(raw);
|
|
30
|
+
}
|
|
31
|
+
static _hex(x) {
|
|
32
|
+
const hc = Md5.hexChars;
|
|
33
|
+
const ho = Md5.hexOut;
|
|
34
|
+
let n;
|
|
35
|
+
let offset;
|
|
36
|
+
let j;
|
|
37
|
+
let i;
|
|
38
|
+
for (i = 0; i < 4; i += 1) {
|
|
39
|
+
offset = i * 8;
|
|
40
|
+
n = x[i];
|
|
41
|
+
for (j = 0; j < 8; j += 2) {
|
|
42
|
+
ho[offset + 1 + j] = hc.charAt(n & 0x0F);
|
|
43
|
+
n >>>= 4;
|
|
44
|
+
ho[offset + 0 + j] = hc.charAt(n & 0x0F);
|
|
45
|
+
n >>>= 4;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return ho.join('');
|
|
49
|
+
}
|
|
50
|
+
static _md5cycle(x, k) {
|
|
51
|
+
let a = x[0];
|
|
52
|
+
let b = x[1];
|
|
53
|
+
let c = x[2];
|
|
54
|
+
let d = x[3];
|
|
55
|
+
a += (b & c | ~b & d) + k[0] - 680876936 | 0;
|
|
56
|
+
a = (a << 7 | a >>> 25) + b | 0;
|
|
57
|
+
d += (a & b | ~a & c) + k[1] - 389564586 | 0;
|
|
58
|
+
d = (d << 12 | d >>> 20) + a | 0;
|
|
59
|
+
c += (d & a | ~d & b) + k[2] + 606105819 | 0;
|
|
60
|
+
c = (c << 17 | c >>> 15) + d | 0;
|
|
61
|
+
b += (c & d | ~c & a) + k[3] - 1044525330 | 0;
|
|
62
|
+
b = (b << 22 | b >>> 10) + c | 0;
|
|
63
|
+
a += (b & c | ~b & d) + k[4] - 176418897 | 0;
|
|
64
|
+
a = (a << 7 | a >>> 25) + b | 0;
|
|
65
|
+
d += (a & b | ~a & c) + k[5] + 1200080426 | 0;
|
|
66
|
+
d = (d << 12 | d >>> 20) + a | 0;
|
|
67
|
+
c += (d & a | ~d & b) + k[6] - 1473231341 | 0;
|
|
68
|
+
c = (c << 17 | c >>> 15) + d | 0;
|
|
69
|
+
b += (c & d | ~c & a) + k[7] - 45705983 | 0;
|
|
70
|
+
b = (b << 22 | b >>> 10) + c | 0;
|
|
71
|
+
a += (b & c | ~b & d) + k[8] + 1770035416 | 0;
|
|
72
|
+
a = (a << 7 | a >>> 25) + b | 0;
|
|
73
|
+
d += (a & b | ~a & c) + k[9] - 1958414417 | 0;
|
|
74
|
+
d = (d << 12 | d >>> 20) + a | 0;
|
|
75
|
+
c += (d & a | ~d & b) + k[10] - 42063 | 0;
|
|
76
|
+
c = (c << 17 | c >>> 15) + d | 0;
|
|
77
|
+
b += (c & d | ~c & a) + k[11] - 1990404162 | 0;
|
|
78
|
+
b = (b << 22 | b >>> 10) + c | 0;
|
|
79
|
+
a += (b & c | ~b & d) + k[12] + 1804603682 | 0;
|
|
80
|
+
a = (a << 7 | a >>> 25) + b | 0;
|
|
81
|
+
d += (a & b | ~a & c) + k[13] - 40341101 | 0;
|
|
82
|
+
d = (d << 12 | d >>> 20) + a | 0;
|
|
83
|
+
c += (d & a | ~d & b) + k[14] - 1502002290 | 0;
|
|
84
|
+
c = (c << 17 | c >>> 15) + d | 0;
|
|
85
|
+
b += (c & d | ~c & a) + k[15] + 1236535329 | 0;
|
|
86
|
+
b = (b << 22 | b >>> 10) + c | 0;
|
|
87
|
+
a += (b & d | c & ~d) + k[1] - 165796510 | 0;
|
|
88
|
+
a = (a << 5 | a >>> 27) + b | 0;
|
|
89
|
+
d += (a & c | b & ~c) + k[6] - 1069501632 | 0;
|
|
90
|
+
d = (d << 9 | d >>> 23) + a | 0;
|
|
91
|
+
c += (d & b | a & ~b) + k[11] + 643717713 | 0;
|
|
92
|
+
c = (c << 14 | c >>> 18) + d | 0;
|
|
93
|
+
b += (c & a | d & ~a) + k[0] - 373897302 | 0;
|
|
94
|
+
b = (b << 20 | b >>> 12) + c | 0;
|
|
95
|
+
a += (b & d | c & ~d) + k[5] - 701558691 | 0;
|
|
96
|
+
a = (a << 5 | a >>> 27) + b | 0;
|
|
97
|
+
d += (a & c | b & ~c) + k[10] + 38016083 | 0;
|
|
98
|
+
d = (d << 9 | d >>> 23) + a | 0;
|
|
99
|
+
c += (d & b | a & ~b) + k[15] - 660478335 | 0;
|
|
100
|
+
c = (c << 14 | c >>> 18) + d | 0;
|
|
101
|
+
b += (c & a | d & ~a) + k[4] - 405537848 | 0;
|
|
102
|
+
b = (b << 20 | b >>> 12) + c | 0;
|
|
103
|
+
a += (b & d | c & ~d) + k[9] + 568446438 | 0;
|
|
104
|
+
a = (a << 5 | a >>> 27) + b | 0;
|
|
105
|
+
d += (a & c | b & ~c) + k[14] - 1019803690 | 0;
|
|
106
|
+
d = (d << 9 | d >>> 23) + a | 0;
|
|
107
|
+
c += (d & b | a & ~b) + k[3] - 187363961 | 0;
|
|
108
|
+
c = (c << 14 | c >>> 18) + d | 0;
|
|
109
|
+
b += (c & a | d & ~a) + k[8] + 1163531501 | 0;
|
|
110
|
+
b = (b << 20 | b >>> 12) + c | 0;
|
|
111
|
+
a += (b & d | c & ~d) + k[13] - 1444681467 | 0;
|
|
112
|
+
a = (a << 5 | a >>> 27) + b | 0;
|
|
113
|
+
d += (a & c | b & ~c) + k[2] - 51403784 | 0;
|
|
114
|
+
d = (d << 9 | d >>> 23) + a | 0;
|
|
115
|
+
c += (d & b | a & ~b) + k[7] + 1735328473 | 0;
|
|
116
|
+
c = (c << 14 | c >>> 18) + d | 0;
|
|
117
|
+
b += (c & a | d & ~a) + k[12] - 1926607734 | 0;
|
|
118
|
+
b = (b << 20 | b >>> 12) + c | 0;
|
|
119
|
+
a += (b ^ c ^ d) + k[5] - 378558 | 0;
|
|
120
|
+
a = (a << 4 | a >>> 28) + b | 0;
|
|
121
|
+
d += (a ^ b ^ c) + k[8] - 2022574463 | 0;
|
|
122
|
+
d = (d << 11 | d >>> 21) + a | 0;
|
|
123
|
+
c += (d ^ a ^ b) + k[11] + 1839030562 | 0;
|
|
124
|
+
c = (c << 16 | c >>> 16) + d | 0;
|
|
125
|
+
b += (c ^ d ^ a) + k[14] - 35309556 | 0;
|
|
126
|
+
b = (b << 23 | b >>> 9) + c | 0;
|
|
127
|
+
a += (b ^ c ^ d) + k[1] - 1530992060 | 0;
|
|
128
|
+
a = (a << 4 | a >>> 28) + b | 0;
|
|
129
|
+
d += (a ^ b ^ c) + k[4] + 1272893353 | 0;
|
|
130
|
+
d = (d << 11 | d >>> 21) + a | 0;
|
|
131
|
+
c += (d ^ a ^ b) + k[7] - 155497632 | 0;
|
|
132
|
+
c = (c << 16 | c >>> 16) + d | 0;
|
|
133
|
+
b += (c ^ d ^ a) + k[10] - 1094730640 | 0;
|
|
134
|
+
b = (b << 23 | b >>> 9) + c | 0;
|
|
135
|
+
a += (b ^ c ^ d) + k[13] + 681279174 | 0;
|
|
136
|
+
a = (a << 4 | a >>> 28) + b | 0;
|
|
137
|
+
d += (a ^ b ^ c) + k[0] - 358537222 | 0;
|
|
138
|
+
d = (d << 11 | d >>> 21) + a | 0;
|
|
139
|
+
c += (d ^ a ^ b) + k[3] - 722521979 | 0;
|
|
140
|
+
c = (c << 16 | c >>> 16) + d | 0;
|
|
141
|
+
b += (c ^ d ^ a) + k[6] + 76029189 | 0;
|
|
142
|
+
b = (b << 23 | b >>> 9) + c | 0;
|
|
143
|
+
a += (b ^ c ^ d) + k[9] - 640364487 | 0;
|
|
144
|
+
a = (a << 4 | a >>> 28) + b | 0;
|
|
145
|
+
d += (a ^ b ^ c) + k[12] - 421815835 | 0;
|
|
146
|
+
d = (d << 11 | d >>> 21) + a | 0;
|
|
147
|
+
c += (d ^ a ^ b) + k[15] + 530742520 | 0;
|
|
148
|
+
c = (c << 16 | c >>> 16) + d | 0;
|
|
149
|
+
b += (c ^ d ^ a) + k[2] - 995338651 | 0;
|
|
150
|
+
b = (b << 23 | b >>> 9) + c | 0;
|
|
151
|
+
a += (c ^ (b | ~d)) + k[0] - 198630844 | 0;
|
|
152
|
+
a = (a << 6 | a >>> 26) + b | 0;
|
|
153
|
+
d += (b ^ (a | ~c)) + k[7] + 1126891415 | 0;
|
|
154
|
+
d = (d << 10 | d >>> 22) + a | 0;
|
|
155
|
+
c += (a ^ (d | ~b)) + k[14] - 1416354905 | 0;
|
|
156
|
+
c = (c << 15 | c >>> 17) + d | 0;
|
|
157
|
+
b += (d ^ (c | ~a)) + k[5] - 57434055 | 0;
|
|
158
|
+
b = (b << 21 | b >>> 11) + c | 0;
|
|
159
|
+
a += (c ^ (b | ~d)) + k[12] + 1700485571 | 0;
|
|
160
|
+
a = (a << 6 | a >>> 26) + b | 0;
|
|
161
|
+
d += (b ^ (a | ~c)) + k[3] - 1894986606 | 0;
|
|
162
|
+
d = (d << 10 | d >>> 22) + a | 0;
|
|
163
|
+
c += (a ^ (d | ~b)) + k[10] - 1051523 | 0;
|
|
164
|
+
c = (c << 15 | c >>> 17) + d | 0;
|
|
165
|
+
b += (d ^ (c | ~a)) + k[1] - 2054922799 | 0;
|
|
166
|
+
b = (b << 21 | b >>> 11) + c | 0;
|
|
167
|
+
a += (c ^ (b | ~d)) + k[8] + 1873313359 | 0;
|
|
168
|
+
a = (a << 6 | a >>> 26) + b | 0;
|
|
169
|
+
d += (b ^ (a | ~c)) + k[15] - 30611744 | 0;
|
|
170
|
+
d = (d << 10 | d >>> 22) + a | 0;
|
|
171
|
+
c += (a ^ (d | ~b)) + k[6] - 1560198380 | 0;
|
|
172
|
+
c = (c << 15 | c >>> 17) + d | 0;
|
|
173
|
+
b += (d ^ (c | ~a)) + k[13] + 1309151649 | 0;
|
|
174
|
+
b = (b << 21 | b >>> 11) + c | 0;
|
|
175
|
+
a += (c ^ (b | ~d)) + k[4] - 145523070 | 0;
|
|
176
|
+
a = (a << 6 | a >>> 26) + b | 0;
|
|
177
|
+
d += (b ^ (a | ~c)) + k[11] - 1120210379 | 0;
|
|
178
|
+
d = (d << 10 | d >>> 22) + a | 0;
|
|
179
|
+
c += (a ^ (d | ~b)) + k[2] + 718787259 | 0;
|
|
180
|
+
c = (c << 15 | c >>> 17) + d | 0;
|
|
181
|
+
b += (d ^ (c | ~a)) + k[9] - 343485551 | 0;
|
|
182
|
+
b = (b << 21 | b >>> 11) + c | 0;
|
|
183
|
+
x[0] = a + x[0] | 0;
|
|
184
|
+
x[1] = b + x[1] | 0;
|
|
185
|
+
x[2] = c + x[2] | 0;
|
|
186
|
+
x[3] = d + x[3] | 0;
|
|
187
|
+
}
|
|
188
|
+
start() {
|
|
189
|
+
this._dataLength = 0;
|
|
190
|
+
this._bufferLength = 0;
|
|
191
|
+
this._state.set(Md5.stateIdentity);
|
|
192
|
+
return this;
|
|
193
|
+
}
|
|
194
|
+
appendStr(str) {
|
|
195
|
+
const buf8 = this._buffer8;
|
|
196
|
+
const buf32 = this._buffer32;
|
|
197
|
+
let bufLen = this._bufferLength;
|
|
198
|
+
let code;
|
|
199
|
+
let i;
|
|
200
|
+
for (i = 0; i < str.length; i += 1) {
|
|
201
|
+
code = str.charCodeAt(i);
|
|
202
|
+
if (code < 128) {
|
|
203
|
+
buf8[bufLen++] = code;
|
|
204
|
+
}
|
|
205
|
+
else if (code < 0x800) {
|
|
206
|
+
buf8[bufLen++] = (code >>> 6) + 0xC0;
|
|
207
|
+
buf8[bufLen++] = code & 0x3F | 0x80;
|
|
208
|
+
}
|
|
209
|
+
else if (code < 0xD800 || code > 0xDBFF) {
|
|
210
|
+
buf8[bufLen++] = (code >>> 12) + 0xE0;
|
|
211
|
+
buf8[bufLen++] = (code >>> 6 & 0x3F) | 0x80;
|
|
212
|
+
buf8[bufLen++] = (code & 0x3F) | 0x80;
|
|
213
|
+
}
|
|
214
|
+
else {
|
|
215
|
+
code = ((code - 0xD800) * 0x400) + (str.charCodeAt(++i) - 0xDC00) + 0x10000;
|
|
216
|
+
if (code > 0x10FFFF) {
|
|
217
|
+
throw new Error('Unicode standard supports code points up to U+10FFFF');
|
|
218
|
+
}
|
|
219
|
+
buf8[bufLen++] = (code >>> 18) + 0xF0;
|
|
220
|
+
buf8[bufLen++] = (code >>> 12 & 0x3F) | 0x80;
|
|
221
|
+
buf8[bufLen++] = (code >>> 6 & 0x3F) | 0x80;
|
|
222
|
+
buf8[bufLen++] = (code & 0x3F) | 0x80;
|
|
223
|
+
}
|
|
224
|
+
if (bufLen >= 64) {
|
|
225
|
+
this._dataLength += 64;
|
|
226
|
+
Md5._md5cycle(this._state, buf32);
|
|
227
|
+
bufLen -= 64;
|
|
228
|
+
buf32[0] = buf32[16];
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
this._bufferLength = bufLen;
|
|
232
|
+
return this;
|
|
233
|
+
}
|
|
234
|
+
appendAsciiStr(str) {
|
|
235
|
+
const buf8 = this._buffer8;
|
|
236
|
+
const buf32 = this._buffer32;
|
|
237
|
+
let bufLen = this._bufferLength;
|
|
238
|
+
let i;
|
|
239
|
+
let j = 0;
|
|
240
|
+
for (;;) {
|
|
241
|
+
i = Math.min(str.length - j, 64 - bufLen);
|
|
242
|
+
while (i--) {
|
|
243
|
+
buf8[bufLen++] = str.charCodeAt(j++);
|
|
244
|
+
}
|
|
245
|
+
if (bufLen < 64) {
|
|
246
|
+
break;
|
|
247
|
+
}
|
|
248
|
+
this._dataLength += 64;
|
|
249
|
+
Md5._md5cycle(this._state, buf32);
|
|
250
|
+
bufLen = 0;
|
|
251
|
+
}
|
|
252
|
+
this._bufferLength = bufLen;
|
|
253
|
+
return this;
|
|
254
|
+
}
|
|
255
|
+
appendByteArray(input) {
|
|
256
|
+
const buf8 = this._buffer8;
|
|
257
|
+
const buf32 = this._buffer32;
|
|
258
|
+
let bufLen = this._bufferLength;
|
|
259
|
+
let i;
|
|
260
|
+
let j = 0;
|
|
261
|
+
for (;;) {
|
|
262
|
+
i = Math.min(input.length - j, 64 - bufLen);
|
|
263
|
+
while (i--) {
|
|
264
|
+
buf8[bufLen++] = input[j++];
|
|
265
|
+
}
|
|
266
|
+
if (bufLen < 64) {
|
|
267
|
+
break;
|
|
268
|
+
}
|
|
269
|
+
this._dataLength += 64;
|
|
270
|
+
Md5._md5cycle(this._state, buf32);
|
|
271
|
+
bufLen = 0;
|
|
272
|
+
}
|
|
273
|
+
this._bufferLength = bufLen;
|
|
274
|
+
return this;
|
|
275
|
+
}
|
|
276
|
+
getState() {
|
|
277
|
+
const s = this._state;
|
|
278
|
+
return {
|
|
279
|
+
buffer: String.fromCharCode.apply(null, Array.from(this._buffer8)),
|
|
280
|
+
buflen: this._bufferLength,
|
|
281
|
+
length: this._dataLength,
|
|
282
|
+
state: [s[0], s[1], s[2], s[3]]
|
|
283
|
+
};
|
|
284
|
+
}
|
|
285
|
+
setState(state) {
|
|
286
|
+
const buf = state.buffer;
|
|
287
|
+
const x = state.state;
|
|
288
|
+
const s = this._state;
|
|
289
|
+
let i;
|
|
290
|
+
this._dataLength = state.length;
|
|
291
|
+
this._bufferLength = state.buflen;
|
|
292
|
+
s[0] = x[0];
|
|
293
|
+
s[1] = x[1];
|
|
294
|
+
s[2] = x[2];
|
|
295
|
+
s[3] = x[3];
|
|
296
|
+
for (i = 0; i < buf.length; i += 1) {
|
|
297
|
+
this._buffer8[i] = buf.charCodeAt(i);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
end(raw = false) {
|
|
301
|
+
const bufLen = this._bufferLength;
|
|
302
|
+
const buf8 = this._buffer8;
|
|
303
|
+
const buf32 = this._buffer32;
|
|
304
|
+
const i = (bufLen >> 2) + 1;
|
|
305
|
+
this._dataLength += bufLen;
|
|
306
|
+
const dataBitsLen = this._dataLength * 8;
|
|
307
|
+
buf8[bufLen] = 0x80;
|
|
308
|
+
buf8[bufLen + 1] = buf8[bufLen + 2] = buf8[bufLen + 3] = 0;
|
|
309
|
+
buf32.set(Md5.buffer32Identity.subarray(i), i);
|
|
310
|
+
if (bufLen > 55) {
|
|
311
|
+
Md5._md5cycle(this._state, buf32);
|
|
312
|
+
buf32.set(Md5.buffer32Identity);
|
|
313
|
+
}
|
|
314
|
+
if (dataBitsLen <= 0xFFFFFFFF) {
|
|
315
|
+
buf32[14] = dataBitsLen;
|
|
316
|
+
}
|
|
317
|
+
else {
|
|
318
|
+
const matches = dataBitsLen.toString(16).match(/(.*?)(.{0,8})$/);
|
|
319
|
+
if (matches === null) {
|
|
320
|
+
return;
|
|
321
|
+
}
|
|
322
|
+
const lo = parseInt(matches[2], 16);
|
|
323
|
+
const hi = parseInt(matches[1], 16) || 0;
|
|
324
|
+
buf32[14] = lo;
|
|
325
|
+
buf32[15] = hi;
|
|
326
|
+
}
|
|
327
|
+
Md5._md5cycle(this._state, buf32);
|
|
328
|
+
return raw ? this._state : Md5._hex(this._state);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
Md5.stateIdentity = new Int32Array([1732584193, -271733879, -1732584194, 271733878]);
|
|
332
|
+
Md5.buffer32Identity = new Int32Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
|
|
333
|
+
Md5.hexChars = '0123456789abcdef';
|
|
334
|
+
Md5.hexOut = [];
|
|
335
|
+
Md5.onePassHasher = new Md5();
|
|
336
|
+
if (Md5.hashStr('hello') !== '5d41402abc4b2a76b9719d911017c592') {
|
|
337
|
+
throw new Error('Md5 self test failed.');
|
|
338
|
+
}
|
|
339
|
+
|
|
9
340
|
const _AssetLogoMap = {
|
|
10
341
|
"default": "https://dev.sw-chain-list-assets.pages.dev/assets/default.png",
|
|
11
342
|
"polkadot-native-dot": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/polkadot-native-dot.png",
|
|
@@ -533,7 +864,6 @@
|
|
|
533
864
|
"hydradx_main-local-4pool": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-4pool.png",
|
|
534
865
|
"hydradx_main-local-weth": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-weth.png",
|
|
535
866
|
"hydradx_main-local-2pool": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-2pool.png",
|
|
536
|
-
"hydradx_main-local-2-pool": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-2-pool.png",
|
|
537
867
|
"hydradx_main-local-vdot": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-vdot.png",
|
|
538
868
|
"hydradx_main-local-h2o": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-h2o.png",
|
|
539
869
|
"hydradx_main-local-dai-18": "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-dai-18.png",
|
|
@@ -3082,2510 +3412,214 @@
|
|
|
3082
3412
|
destAsset: "statemint-LOCAL-USDC",
|
|
3083
3413
|
srcChain: "pendulum",
|
|
3084
3414
|
destChain: "statemint",
|
|
3085
|
-
path: "XCM"
|
|
3086
|
-
},
|
|
3087
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-DOT": {
|
|
3088
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
3089
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
3090
|
-
srcChain: "hydradx_main",
|
|
3091
|
-
destChain: "hydradx_main",
|
|
3092
|
-
path: "SWAP"
|
|
3093
|
-
},
|
|
3094
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-NATIVE-HDX": {
|
|
3095
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
3096
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
3097
|
-
srcChain: "hydradx_main",
|
|
3098
|
-
destChain: "hydradx_main",
|
|
3099
|
-
path: "SWAP"
|
|
3100
|
-
},
|
|
3101
|
-
"statemint-LOCAL-KSM___statemine-NATIVE-KSM": {
|
|
3102
|
-
srcAsset: "statemint-LOCAL-KSM",
|
|
3103
|
-
destAsset: "statemine-NATIVE-KSM",
|
|
3104
|
-
srcChain: "statemint",
|
|
3105
|
-
destChain: "statemine",
|
|
3106
|
-
path: "XCM"
|
|
3107
|
-
},
|
|
3108
|
-
"statemine-LOCAL-DOT___statemint-NATIVE-DOT": {
|
|
3109
|
-
srcAsset: "statemine-LOCAL-DOT",
|
|
3110
|
-
destAsset: "statemint-NATIVE-DOT",
|
|
3111
|
-
srcChain: "statemine",
|
|
3112
|
-
destChain: "statemint",
|
|
3113
|
-
path: "XCM"
|
|
3114
|
-
},
|
|
3115
|
-
"sepolia_ethereum-ERC20-WETH-0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14___rococo_assethub-LOCAL-WETH": {
|
|
3116
|
-
srcAsset: "sepolia_ethereum-ERC20-WETH-0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14",
|
|
3117
|
-
destAsset: "rococo_assethub-LOCAL-WETH",
|
|
3118
|
-
srcChain: "sepolia_ethereum",
|
|
3119
|
-
destChain: "rococo_assethub",
|
|
3120
|
-
path: "XCM"
|
|
3121
|
-
},
|
|
3122
|
-
"rococo_assethub-LOCAL-USDt___rococo_assethub-NATIVE-ROC": {
|
|
3123
|
-
srcAsset: "rococo_assethub-LOCAL-USDt",
|
|
3124
|
-
destAsset: "rococo_assethub-NATIVE-ROC",
|
|
3125
|
-
srcChain: "rococo_assethub",
|
|
3126
|
-
destChain: "rococo_assethub",
|
|
3127
|
-
path: "SWAP"
|
|
3128
|
-
},
|
|
3129
|
-
"statemint-LOCAL-WETH___ethereum-ERC20-WETH-0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
3130
|
-
srcAsset: "statemint-LOCAL-WETH",
|
|
3131
|
-
destAsset: "ethereum-ERC20-WETH-0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
3132
|
-
srcChain: "statemint",
|
|
3133
|
-
destChain: "ethereum",
|
|
3134
|
-
path: "XCM"
|
|
3135
|
-
},
|
|
3136
|
-
"statemint-LOCAL-MYTH___ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003": {
|
|
3137
|
-
srcAsset: "statemint-LOCAL-MYTH",
|
|
3138
|
-
destAsset: "ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003",
|
|
3139
|
-
srcChain: "statemint",
|
|
3140
|
-
destChain: "ethereum",
|
|
3141
|
-
path: "XCM"
|
|
3142
|
-
},
|
|
3143
|
-
"statemint-LOCAL-MYTH___mythos-NATIVE-MYTH": {
|
|
3144
|
-
srcAsset: "statemint-LOCAL-MYTH",
|
|
3145
|
-
destAsset: "mythos-NATIVE-MYTH",
|
|
3146
|
-
srcChain: "statemint",
|
|
3147
|
-
destChain: "mythos",
|
|
3148
|
-
path: "XCM"
|
|
3149
|
-
},
|
|
3150
|
-
"ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003___statemint-LOCAL-MYTH": {
|
|
3151
|
-
srcAsset: "ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003",
|
|
3152
|
-
destAsset: "statemint-LOCAL-MYTH",
|
|
3153
|
-
srcChain: "ethereum",
|
|
3154
|
-
destChain: "statemint",
|
|
3155
|
-
path: "XCM"
|
|
3156
|
-
},
|
|
3157
|
-
"statemint-LOCAL-WBTC___ethereum-ERC20-WBTC-0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599": {
|
|
3158
|
-
srcAsset: "statemint-LOCAL-WBTC",
|
|
3159
|
-
destAsset: "ethereum-ERC20-WBTC-0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
|
|
3160
|
-
srcChain: "statemint",
|
|
3161
|
-
destChain: "ethereum",
|
|
3162
|
-
path: "XCM"
|
|
3163
|
-
},
|
|
3164
|
-
"statemint-LOCAL-SHIB___ethereum-ERC20-SHIB-0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE": {
|
|
3165
|
-
srcAsset: "statemint-LOCAL-SHIB",
|
|
3166
|
-
destAsset: "ethereum-ERC20-SHIB-0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE",
|
|
3167
|
-
srcChain: "statemint",
|
|
3168
|
-
destChain: "ethereum",
|
|
3169
|
-
path: "XCM"
|
|
3170
|
-
},
|
|
3171
|
-
"statemint-LOCAL-PEPE___ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933": {
|
|
3172
|
-
srcAsset: "statemint-LOCAL-PEPE",
|
|
3173
|
-
destAsset: "ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933",
|
|
3174
|
-
srcChain: "statemint",
|
|
3175
|
-
destChain: "ethereum",
|
|
3176
|
-
path: "XCM"
|
|
3177
|
-
},
|
|
3178
|
-
"ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933___statemint-LOCAL-PEPE": {
|
|
3179
|
-
srcAsset: "ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933",
|
|
3180
|
-
destAsset: "statemint-LOCAL-PEPE",
|
|
3181
|
-
srcChain: "ethereum",
|
|
3182
|
-
destChain: "statemint",
|
|
3183
|
-
path: "XCM"
|
|
3184
|
-
},
|
|
3185
|
-
"statemint-LOCAL-TON___ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1": {
|
|
3186
|
-
srcAsset: "statemint-LOCAL-TON",
|
|
3187
|
-
destAsset: "ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1",
|
|
3188
|
-
srcChain: "statemint",
|
|
3189
|
-
destChain: "ethereum",
|
|
3190
|
-
path: "XCM"
|
|
3191
|
-
},
|
|
3192
|
-
"ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1___statemint-LOCAL-TON": {
|
|
3193
|
-
srcAsset: "ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1",
|
|
3194
|
-
destAsset: "statemint-LOCAL-TON",
|
|
3195
|
-
srcChain: "ethereum",
|
|
3196
|
-
destChain: "statemint",
|
|
3197
|
-
path: "XCM"
|
|
3198
|
-
},
|
|
3199
|
-
"statemint-LOCAL-wstETH___ethereum-ERC20-wstETH-0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0": {
|
|
3200
|
-
srcAsset: "statemint-LOCAL-wstETH",
|
|
3201
|
-
destAsset: "ethereum-ERC20-wstETH-0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0",
|
|
3202
|
-
srcChain: "statemint",
|
|
3203
|
-
destChain: "ethereum",
|
|
3204
|
-
path: "XCM"
|
|
3205
|
-
},
|
|
3206
|
-
"statemint-LOCAL-tBTC___ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88": {
|
|
3207
|
-
srcAsset: "statemint-LOCAL-tBTC",
|
|
3208
|
-
destAsset: "ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88",
|
|
3209
|
-
srcChain: "statemint",
|
|
3210
|
-
destChain: "ethereum",
|
|
3211
|
-
path: "XCM"
|
|
3212
|
-
},
|
|
3213
|
-
"ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88___statemint-LOCAL-tBTC": {
|
|
3214
|
-
srcAsset: "ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88",
|
|
3215
|
-
destAsset: "statemint-LOCAL-tBTC",
|
|
3216
|
-
srcChain: "ethereum",
|
|
3217
|
-
destChain: "statemint",
|
|
3218
|
-
path: "XCM"
|
|
3219
|
-
},
|
|
3220
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-DOT": {
|
|
3221
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
3222
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
3223
|
-
srcChain: "hydradx_main",
|
|
3224
|
-
destChain: "hydradx_main",
|
|
3225
|
-
path: "SWAP"
|
|
3226
|
-
},
|
|
3227
|
-
"hydradx_main-LOCAL-MYTH___mythos-NATIVE-MYTH": {
|
|
3228
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3229
|
-
destAsset: "mythos-NATIVE-MYTH",
|
|
3230
|
-
srcChain: "hydradx_main",
|
|
3231
|
-
destChain: "mythos",
|
|
3232
|
-
path: "XCM"
|
|
3233
|
-
},
|
|
3234
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-DOT": {
|
|
3235
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3236
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
3237
|
-
srcChain: "hydradx_main",
|
|
3238
|
-
destChain: "hydradx_main",
|
|
3239
|
-
path: "SWAP"
|
|
3240
|
-
},
|
|
3241
|
-
"ethereum-ERC20-AVAIL-0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8___avail_mainnet-NATIVE-AVAIL": {
|
|
3242
|
-
srcAsset: "ethereum-ERC20-AVAIL-0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8",
|
|
3243
|
-
destAsset: "avail_mainnet-NATIVE-AVAIL",
|
|
3244
|
-
srcChain: "ethereum",
|
|
3245
|
-
destChain: "avail_mainnet",
|
|
3246
|
-
path: "XCM"
|
|
3247
|
-
},
|
|
3248
|
-
"polygonZkEvm-NATIVE-ETH___ethereum-NATIVE-ETH": {
|
|
3249
|
-
srcAsset: "polygonZkEvm-NATIVE-ETH",
|
|
3250
|
-
destAsset: "ethereum-NATIVE-ETH",
|
|
3251
|
-
srcChain: "polygonZkEvm",
|
|
3252
|
-
destChain: "ethereum",
|
|
3253
|
-
path: "XCM"
|
|
3254
|
-
},
|
|
3255
|
-
"base_sepolia-NATIVE-ETH___sepolia_ethereum-NATIVE-ETH": {
|
|
3256
|
-
srcAsset: "base_sepolia-NATIVE-ETH",
|
|
3257
|
-
destAsset: "sepolia_ethereum-NATIVE-ETH",
|
|
3258
|
-
srcChain: "base_sepolia",
|
|
3259
|
-
destChain: "sepolia_ethereum",
|
|
3260
|
-
path: "SWAP"
|
|
3261
|
-
},
|
|
3262
|
-
"base_sepolia-NATIVE-ETH___sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238": {
|
|
3263
|
-
srcAsset: "base_sepolia-NATIVE-ETH",
|
|
3264
|
-
destAsset: "sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
|
|
3265
|
-
srcChain: "base_sepolia",
|
|
3266
|
-
destChain: "sepolia_ethereum",
|
|
3267
|
-
path: "SWAP"
|
|
3268
|
-
},
|
|
3269
|
-
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___sepolia_ethereum-NATIVE-ETH": {
|
|
3270
|
-
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3271
|
-
destAsset: "sepolia_ethereum-NATIVE-ETH",
|
|
3272
|
-
srcChain: "base_sepolia",
|
|
3273
|
-
destChain: "sepolia_ethereum",
|
|
3274
|
-
path: "SWAP"
|
|
3275
|
-
},
|
|
3276
|
-
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238": {
|
|
3277
|
-
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3278
|
-
destAsset: "sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
|
|
3279
|
-
srcChain: "base_sepolia",
|
|
3280
|
-
destChain: "sepolia_ethereum",
|
|
3281
|
-
path: "XCM"
|
|
3282
|
-
},
|
|
3283
|
-
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___arbitrum_sepolia-ERC20-USDC-0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d": {
|
|
3284
|
-
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3285
|
-
destAsset: "arbitrum_sepolia-ERC20-USDC-0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
|
|
3286
|
-
srcChain: "base_sepolia",
|
|
3287
|
-
destChain: "arbitrum_sepolia",
|
|
3288
|
-
path: "XCM"
|
|
3289
|
-
},
|
|
3290
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-vDOT": {
|
|
3291
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
3292
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
3293
|
-
srcChain: "hydradx_main",
|
|
3294
|
-
destChain: "hydradx_main",
|
|
3295
|
-
path: "SWAP"
|
|
3296
|
-
},
|
|
3297
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-KILT": {
|
|
3298
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3299
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3300
|
-
srcChain: "hydradx_main",
|
|
3301
|
-
destChain: "hydradx_main",
|
|
3302
|
-
path: "SWAP"
|
|
3303
|
-
},
|
|
3304
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-MYTH": {
|
|
3305
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3306
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3307
|
-
srcChain: "hydradx_main",
|
|
3308
|
-
destChain: "hydradx_main",
|
|
3309
|
-
path: "SWAP"
|
|
3310
|
-
},
|
|
3311
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-WUD": {
|
|
3312
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3313
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3314
|
-
srcChain: "hydradx_main",
|
|
3315
|
-
destChain: "hydradx_main",
|
|
3316
|
-
path: "SWAP"
|
|
3317
|
-
},
|
|
3318
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-BNC": {
|
|
3319
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3320
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
3321
|
-
srcChain: "hydradx_main",
|
|
3322
|
-
destChain: "hydradx_main",
|
|
3323
|
-
path: "SWAP"
|
|
3324
|
-
},
|
|
3325
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-vASTR": {
|
|
3326
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3327
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3328
|
-
srcChain: "hydradx_main",
|
|
3329
|
-
destChain: "hydradx_main",
|
|
3330
|
-
path: "SWAP"
|
|
3331
|
-
},
|
|
3332
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-CFG": {
|
|
3333
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3334
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3335
|
-
srcChain: "hydradx_main",
|
|
3336
|
-
destChain: "hydradx_main",
|
|
3337
|
-
path: "SWAP"
|
|
3338
|
-
},
|
|
3339
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-CRU": {
|
|
3340
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3341
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3342
|
-
srcChain: "hydradx_main",
|
|
3343
|
-
destChain: "hydradx_main",
|
|
3344
|
-
path: "SWAP"
|
|
3345
|
-
},
|
|
3346
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-2-Pool": {
|
|
3347
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3348
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3349
|
-
srcChain: "hydradx_main",
|
|
3350
|
-
destChain: "hydradx_main",
|
|
3351
|
-
path: "SWAP"
|
|
3352
|
-
},
|
|
3353
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-SUB": {
|
|
3354
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3355
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3356
|
-
srcChain: "hydradx_main",
|
|
3357
|
-
destChain: "hydradx_main",
|
|
3358
|
-
path: "SWAP"
|
|
3359
|
-
},
|
|
3360
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-PHA": {
|
|
3361
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3362
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3363
|
-
srcChain: "hydradx_main",
|
|
3364
|
-
destChain: "hydradx_main",
|
|
3365
|
-
path: "SWAP"
|
|
3366
|
-
},
|
|
3367
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-ZTG": {
|
|
3368
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3369
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3370
|
-
srcChain: "hydradx_main",
|
|
3371
|
-
destChain: "hydradx_main",
|
|
3372
|
-
path: "SWAP"
|
|
3373
|
-
},
|
|
3374
|
-
"hydradx_main-LOCAL-4Pool___hydradx_main-LOCAL-INTR": {
|
|
3375
|
-
srcAsset: "hydradx_main-LOCAL-4Pool",
|
|
3376
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3377
|
-
srcChain: "hydradx_main",
|
|
3378
|
-
destChain: "hydradx_main",
|
|
3379
|
-
path: "SWAP"
|
|
3380
|
-
},
|
|
3381
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-KILT": {
|
|
3382
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3383
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3384
|
-
srcChain: "hydradx_main",
|
|
3385
|
-
destChain: "hydradx_main",
|
|
3386
|
-
path: "SWAP"
|
|
3387
|
-
},
|
|
3388
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-MYTH": {
|
|
3389
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3390
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3391
|
-
srcChain: "hydradx_main",
|
|
3392
|
-
destChain: "hydradx_main",
|
|
3393
|
-
path: "SWAP"
|
|
3394
|
-
},
|
|
3395
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-2-Pool": {
|
|
3396
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3397
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3398
|
-
srcChain: "hydradx_main",
|
|
3399
|
-
destChain: "hydradx_main",
|
|
3400
|
-
path: "SWAP"
|
|
3401
|
-
},
|
|
3402
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-vASTR": {
|
|
3403
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3404
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3405
|
-
srcChain: "hydradx_main",
|
|
3406
|
-
destChain: "hydradx_main",
|
|
3407
|
-
path: "SWAP"
|
|
3408
|
-
},
|
|
3409
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-CFG": {
|
|
3410
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3411
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3412
|
-
srcChain: "hydradx_main",
|
|
3413
|
-
destChain: "hydradx_main",
|
|
3414
|
-
path: "SWAP"
|
|
3415
|
-
},
|
|
3416
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-CRU": {
|
|
3417
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3418
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3419
|
-
srcChain: "hydradx_main",
|
|
3420
|
-
destChain: "hydradx_main",
|
|
3421
|
-
path: "SWAP"
|
|
3422
|
-
},
|
|
3423
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-SUB": {
|
|
3424
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3425
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3426
|
-
srcChain: "hydradx_main",
|
|
3427
|
-
destChain: "hydradx_main",
|
|
3428
|
-
path: "SWAP"
|
|
3429
|
-
},
|
|
3430
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-PHA": {
|
|
3431
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3432
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3433
|
-
srcChain: "hydradx_main",
|
|
3434
|
-
destChain: "hydradx_main",
|
|
3435
|
-
path: "SWAP"
|
|
3436
|
-
},
|
|
3437
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-ZTG": {
|
|
3438
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3439
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3440
|
-
srcChain: "hydradx_main",
|
|
3441
|
-
destChain: "hydradx_main",
|
|
3442
|
-
path: "SWAP"
|
|
3443
|
-
},
|
|
3444
|
-
"hydradx_main-NATIVE-HDX___hydradx_main-LOCAL-INTR": {
|
|
3445
|
-
srcAsset: "hydradx_main-NATIVE-HDX",
|
|
3446
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3447
|
-
srcChain: "hydradx_main",
|
|
3448
|
-
destChain: "hydradx_main",
|
|
3449
|
-
path: "SWAP"
|
|
3450
|
-
},
|
|
3451
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-KILT": {
|
|
3452
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3453
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3454
|
-
srcChain: "hydradx_main",
|
|
3455
|
-
destChain: "hydradx_main",
|
|
3456
|
-
path: "SWAP"
|
|
3457
|
-
},
|
|
3458
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-MYTH": {
|
|
3459
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3460
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3461
|
-
srcChain: "hydradx_main",
|
|
3462
|
-
destChain: "hydradx_main",
|
|
3463
|
-
path: "SWAP"
|
|
3464
|
-
},
|
|
3465
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-WUD": {
|
|
3466
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3467
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3468
|
-
srcChain: "hydradx_main",
|
|
3469
|
-
destChain: "hydradx_main",
|
|
3470
|
-
path: "SWAP"
|
|
3471
|
-
},
|
|
3472
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-2-Pool": {
|
|
3473
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3474
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3475
|
-
srcChain: "hydradx_main",
|
|
3476
|
-
destChain: "hydradx_main",
|
|
3477
|
-
path: "SWAP"
|
|
3478
|
-
},
|
|
3479
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-vASTR": {
|
|
3480
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3481
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3482
|
-
srcChain: "hydradx_main",
|
|
3483
|
-
destChain: "hydradx_main",
|
|
3484
|
-
path: "SWAP"
|
|
3485
|
-
},
|
|
3486
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-CRU": {
|
|
3487
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3488
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3489
|
-
srcChain: "hydradx_main",
|
|
3490
|
-
destChain: "hydradx_main",
|
|
3491
|
-
path: "SWAP"
|
|
3492
|
-
},
|
|
3493
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-SUB": {
|
|
3494
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3495
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3496
|
-
srcChain: "hydradx_main",
|
|
3497
|
-
destChain: "hydradx_main",
|
|
3498
|
-
path: "SWAP"
|
|
3499
|
-
},
|
|
3500
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-PHA": {
|
|
3501
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3502
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3503
|
-
srcChain: "hydradx_main",
|
|
3504
|
-
destChain: "hydradx_main",
|
|
3505
|
-
path: "SWAP"
|
|
3506
|
-
},
|
|
3507
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-ZTG": {
|
|
3508
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3509
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3510
|
-
srcChain: "hydradx_main",
|
|
3511
|
-
destChain: "hydradx_main",
|
|
3512
|
-
path: "SWAP"
|
|
3513
|
-
},
|
|
3514
|
-
"hydradx_main-LOCAL-USDT___hydradx_main-LOCAL-INTR": {
|
|
3515
|
-
srcAsset: "hydradx_main-LOCAL-USDT",
|
|
3516
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3517
|
-
srcChain: "hydradx_main",
|
|
3518
|
-
destChain: "hydradx_main",
|
|
3519
|
-
path: "SWAP"
|
|
3520
|
-
},
|
|
3521
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-4Pool": {
|
|
3522
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3523
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
3524
|
-
srcChain: "hydradx_main",
|
|
3525
|
-
destChain: "hydradx_main",
|
|
3526
|
-
path: "SWAP"
|
|
3527
|
-
},
|
|
3528
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-NATIVE-HDX": {
|
|
3529
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3530
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
3531
|
-
srcChain: "hydradx_main",
|
|
3532
|
-
destChain: "hydradx_main",
|
|
3533
|
-
path: "SWAP"
|
|
3534
|
-
},
|
|
3535
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-WETH": {
|
|
3536
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3537
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
3538
|
-
srcChain: "hydradx_main",
|
|
3539
|
-
destChain: "hydradx_main",
|
|
3540
|
-
path: "SWAP"
|
|
3541
|
-
},
|
|
3542
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-MYTH": {
|
|
3543
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3544
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3545
|
-
srcChain: "hydradx_main",
|
|
3546
|
-
destChain: "hydradx_main",
|
|
3547
|
-
path: "SWAP"
|
|
3548
|
-
},
|
|
3549
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-2Pool": {
|
|
3550
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3551
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
3552
|
-
srcChain: "hydradx_main",
|
|
3553
|
-
destChain: "hydradx_main",
|
|
3554
|
-
path: "SWAP"
|
|
3555
|
-
},
|
|
3556
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-GLMR": {
|
|
3557
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3558
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
3559
|
-
srcChain: "hydradx_main",
|
|
3560
|
-
destChain: "hydradx_main",
|
|
3561
|
-
path: "SWAP"
|
|
3562
|
-
},
|
|
3563
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-WUD": {
|
|
3564
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3565
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3566
|
-
srcChain: "hydradx_main",
|
|
3567
|
-
destChain: "hydradx_main",
|
|
3568
|
-
path: "SWAP"
|
|
3569
|
-
},
|
|
3570
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-BNC": {
|
|
3571
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3572
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
3573
|
-
srcChain: "hydradx_main",
|
|
3574
|
-
destChain: "hydradx_main",
|
|
3575
|
-
path: "SWAP"
|
|
3576
|
-
},
|
|
3577
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-vASTR": {
|
|
3578
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3579
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3580
|
-
srcChain: "hydradx_main",
|
|
3581
|
-
destChain: "hydradx_main",
|
|
3582
|
-
path: "SWAP"
|
|
3583
|
-
},
|
|
3584
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-vDOT": {
|
|
3585
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3586
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
3587
|
-
srcChain: "hydradx_main",
|
|
3588
|
-
destChain: "hydradx_main",
|
|
3589
|
-
path: "SWAP"
|
|
3590
|
-
},
|
|
3591
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-CFG": {
|
|
3592
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3593
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3594
|
-
srcChain: "hydradx_main",
|
|
3595
|
-
destChain: "hydradx_main",
|
|
3596
|
-
path: "SWAP"
|
|
3597
|
-
},
|
|
3598
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-CRU": {
|
|
3599
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3600
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3601
|
-
srcChain: "hydradx_main",
|
|
3602
|
-
destChain: "hydradx_main",
|
|
3603
|
-
path: "SWAP"
|
|
3604
|
-
},
|
|
3605
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-2-Pool": {
|
|
3606
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3607
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3608
|
-
srcChain: "hydradx_main",
|
|
3609
|
-
destChain: "hydradx_main",
|
|
3610
|
-
path: "SWAP"
|
|
3611
|
-
},
|
|
3612
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-DOT": {
|
|
3613
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3614
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
3615
|
-
srcChain: "hydradx_main",
|
|
3616
|
-
destChain: "hydradx_main",
|
|
3617
|
-
path: "SWAP"
|
|
3618
|
-
},
|
|
3619
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-SUB": {
|
|
3620
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3621
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3622
|
-
srcChain: "hydradx_main",
|
|
3623
|
-
destChain: "hydradx_main",
|
|
3624
|
-
path: "SWAP"
|
|
3625
|
-
},
|
|
3626
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-PHA": {
|
|
3627
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3628
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3629
|
-
srcChain: "hydradx_main",
|
|
3630
|
-
destChain: "hydradx_main",
|
|
3631
|
-
path: "SWAP"
|
|
3632
|
-
},
|
|
3633
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-ZTG": {
|
|
3634
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3635
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3636
|
-
srcChain: "hydradx_main",
|
|
3637
|
-
destChain: "hydradx_main",
|
|
3638
|
-
path: "SWAP"
|
|
3639
|
-
},
|
|
3640
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-INTR": {
|
|
3641
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3642
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3643
|
-
srcChain: "hydradx_main",
|
|
3644
|
-
destChain: "hydradx_main",
|
|
3645
|
-
path: "SWAP"
|
|
3646
|
-
},
|
|
3647
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-USDT": {
|
|
3648
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3649
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
3650
|
-
srcChain: "hydradx_main",
|
|
3651
|
-
destChain: "hydradx_main",
|
|
3652
|
-
path: "SWAP"
|
|
3653
|
-
},
|
|
3654
|
-
"hydradx_main-LOCAL-KILT___hydradx_main-LOCAL-ASTR": {
|
|
3655
|
-
srcAsset: "hydradx_main-LOCAL-KILT",
|
|
3656
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
3657
|
-
srcChain: "hydradx_main",
|
|
3658
|
-
destChain: "hydradx_main",
|
|
3659
|
-
path: "SWAP"
|
|
3660
|
-
},
|
|
3661
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-KILT": {
|
|
3662
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3663
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3664
|
-
srcChain: "hydradx_main",
|
|
3665
|
-
destChain: "hydradx_main",
|
|
3666
|
-
path: "SWAP"
|
|
3667
|
-
},
|
|
3668
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-MYTH": {
|
|
3669
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3670
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3671
|
-
srcChain: "hydradx_main",
|
|
3672
|
-
destChain: "hydradx_main",
|
|
3673
|
-
path: "SWAP"
|
|
3674
|
-
},
|
|
3675
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-WUD": {
|
|
3676
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3677
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3678
|
-
srcChain: "hydradx_main",
|
|
3679
|
-
destChain: "hydradx_main",
|
|
3680
|
-
path: "SWAP"
|
|
3681
|
-
},
|
|
3682
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-BNC": {
|
|
3683
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3684
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
3685
|
-
srcChain: "hydradx_main",
|
|
3686
|
-
destChain: "hydradx_main",
|
|
3687
|
-
path: "SWAP"
|
|
3688
|
-
},
|
|
3689
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-vASTR": {
|
|
3690
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3691
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3692
|
-
srcChain: "hydradx_main",
|
|
3693
|
-
destChain: "hydradx_main",
|
|
3694
|
-
path: "SWAP"
|
|
3695
|
-
},
|
|
3696
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-CFG": {
|
|
3697
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3698
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3699
|
-
srcChain: "hydradx_main",
|
|
3700
|
-
destChain: "hydradx_main",
|
|
3701
|
-
path: "SWAP"
|
|
3702
|
-
},
|
|
3703
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-CRU": {
|
|
3704
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3705
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3706
|
-
srcChain: "hydradx_main",
|
|
3707
|
-
destChain: "hydradx_main",
|
|
3708
|
-
path: "SWAP"
|
|
3709
|
-
},
|
|
3710
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-2-Pool": {
|
|
3711
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3712
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3713
|
-
srcChain: "hydradx_main",
|
|
3714
|
-
destChain: "hydradx_main",
|
|
3715
|
-
path: "SWAP"
|
|
3716
|
-
},
|
|
3717
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-SUB": {
|
|
3718
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3719
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3720
|
-
srcChain: "hydradx_main",
|
|
3721
|
-
destChain: "hydradx_main",
|
|
3722
|
-
path: "SWAP"
|
|
3723
|
-
},
|
|
3724
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-PHA": {
|
|
3725
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3726
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3727
|
-
srcChain: "hydradx_main",
|
|
3728
|
-
destChain: "hydradx_main",
|
|
3729
|
-
path: "SWAP"
|
|
3730
|
-
},
|
|
3731
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-ZTG": {
|
|
3732
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3733
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3734
|
-
srcChain: "hydradx_main",
|
|
3735
|
-
destChain: "hydradx_main",
|
|
3736
|
-
path: "SWAP"
|
|
3737
|
-
},
|
|
3738
|
-
"hydradx_main-LOCAL-WETH___hydradx_main-LOCAL-INTR": {
|
|
3739
|
-
srcAsset: "hydradx_main-LOCAL-WETH",
|
|
3740
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3741
|
-
srcChain: "hydradx_main",
|
|
3742
|
-
destChain: "hydradx_main",
|
|
3743
|
-
path: "SWAP"
|
|
3744
|
-
},
|
|
3745
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-4Pool": {
|
|
3746
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3747
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
3748
|
-
srcChain: "hydradx_main",
|
|
3749
|
-
destChain: "hydradx_main",
|
|
3750
|
-
path: "SWAP"
|
|
3751
|
-
},
|
|
3752
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-NATIVE-HDX": {
|
|
3753
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3754
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
3755
|
-
srcChain: "hydradx_main",
|
|
3756
|
-
destChain: "hydradx_main",
|
|
3757
|
-
path: "SWAP"
|
|
3758
|
-
},
|
|
3759
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-USDT": {
|
|
3760
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3761
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
3762
|
-
srcChain: "hydradx_main",
|
|
3763
|
-
destChain: "hydradx_main",
|
|
3764
|
-
path: "SWAP"
|
|
3765
|
-
},
|
|
3766
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-KILT": {
|
|
3767
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3768
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3769
|
-
srcChain: "hydradx_main",
|
|
3770
|
-
destChain: "hydradx_main",
|
|
3771
|
-
path: "SWAP"
|
|
3772
|
-
},
|
|
3773
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-WETH": {
|
|
3774
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3775
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
3776
|
-
srcChain: "hydradx_main",
|
|
3777
|
-
destChain: "hydradx_main",
|
|
3778
|
-
path: "SWAP"
|
|
3779
|
-
},
|
|
3780
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-2Pool": {
|
|
3781
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3782
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
3783
|
-
srcChain: "hydradx_main",
|
|
3784
|
-
destChain: "hydradx_main",
|
|
3785
|
-
path: "SWAP"
|
|
3786
|
-
},
|
|
3787
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-GLMR": {
|
|
3788
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3789
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
3790
|
-
srcChain: "hydradx_main",
|
|
3791
|
-
destChain: "hydradx_main",
|
|
3792
|
-
path: "SWAP"
|
|
3793
|
-
},
|
|
3794
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-WUD": {
|
|
3795
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3796
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3797
|
-
srcChain: "hydradx_main",
|
|
3798
|
-
destChain: "hydradx_main",
|
|
3799
|
-
path: "SWAP"
|
|
3800
|
-
},
|
|
3801
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-BNC": {
|
|
3802
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3803
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
3804
|
-
srcChain: "hydradx_main",
|
|
3805
|
-
destChain: "hydradx_main",
|
|
3806
|
-
path: "SWAP"
|
|
3807
|
-
},
|
|
3808
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-vASTR": {
|
|
3809
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3810
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3811
|
-
srcChain: "hydradx_main",
|
|
3812
|
-
destChain: "hydradx_main",
|
|
3813
|
-
path: "SWAP"
|
|
3814
|
-
},
|
|
3815
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-vDOT": {
|
|
3816
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3817
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
3818
|
-
srcChain: "hydradx_main",
|
|
3819
|
-
destChain: "hydradx_main",
|
|
3820
|
-
path: "SWAP"
|
|
3821
|
-
},
|
|
3822
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-CFG": {
|
|
3823
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3824
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3825
|
-
srcChain: "hydradx_main",
|
|
3826
|
-
destChain: "hydradx_main",
|
|
3827
|
-
path: "SWAP"
|
|
3828
|
-
},
|
|
3829
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-CRU": {
|
|
3830
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3831
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3832
|
-
srcChain: "hydradx_main",
|
|
3833
|
-
destChain: "hydradx_main",
|
|
3834
|
-
path: "SWAP"
|
|
3835
|
-
},
|
|
3836
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-2-Pool": {
|
|
3837
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3838
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3839
|
-
srcChain: "hydradx_main",
|
|
3840
|
-
destChain: "hydradx_main",
|
|
3841
|
-
path: "SWAP"
|
|
3842
|
-
},
|
|
3843
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-SUB": {
|
|
3844
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3845
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3846
|
-
srcChain: "hydradx_main",
|
|
3847
|
-
destChain: "hydradx_main",
|
|
3848
|
-
path: "SWAP"
|
|
3849
|
-
},
|
|
3850
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-PHA": {
|
|
3851
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3852
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3853
|
-
srcChain: "hydradx_main",
|
|
3854
|
-
destChain: "hydradx_main",
|
|
3855
|
-
path: "SWAP"
|
|
3856
|
-
},
|
|
3857
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-ZTG": {
|
|
3858
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3859
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
3860
|
-
srcChain: "hydradx_main",
|
|
3861
|
-
destChain: "hydradx_main",
|
|
3862
|
-
path: "SWAP"
|
|
3863
|
-
},
|
|
3864
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-INTR": {
|
|
3865
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3866
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
3867
|
-
srcChain: "hydradx_main",
|
|
3868
|
-
destChain: "hydradx_main",
|
|
3869
|
-
path: "SWAP"
|
|
3870
|
-
},
|
|
3871
|
-
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-ASTR": {
|
|
3872
|
-
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3873
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
3874
|
-
srcChain: "hydradx_main",
|
|
3875
|
-
destChain: "hydradx_main",
|
|
3876
|
-
path: "SWAP"
|
|
3877
|
-
},
|
|
3878
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-4Pool": {
|
|
3879
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3880
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
3881
|
-
srcChain: "hydradx_main",
|
|
3882
|
-
destChain: "hydradx_main",
|
|
3883
|
-
path: "SWAP"
|
|
3884
|
-
},
|
|
3885
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-2Pool": {
|
|
3886
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3887
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
3888
|
-
srcChain: "hydradx_main",
|
|
3889
|
-
destChain: "hydradx_main",
|
|
3890
|
-
path: "SWAP"
|
|
3891
|
-
},
|
|
3892
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-NATIVE-HDX": {
|
|
3893
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3894
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
3895
|
-
srcChain: "hydradx_main",
|
|
3896
|
-
destChain: "hydradx_main",
|
|
3897
|
-
path: "SWAP"
|
|
3898
|
-
},
|
|
3899
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-USDT": {
|
|
3900
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3901
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
3902
|
-
srcChain: "hydradx_main",
|
|
3903
|
-
destChain: "hydradx_main",
|
|
3904
|
-
path: "SWAP"
|
|
3905
|
-
},
|
|
3906
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-KILT": {
|
|
3907
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3908
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
3909
|
-
srcChain: "hydradx_main",
|
|
3910
|
-
destChain: "hydradx_main",
|
|
3911
|
-
path: "SWAP"
|
|
3912
|
-
},
|
|
3913
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-WETH": {
|
|
3914
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3915
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
3916
|
-
srcChain: "hydradx_main",
|
|
3917
|
-
destChain: "hydradx_main",
|
|
3918
|
-
path: "SWAP"
|
|
3919
|
-
},
|
|
3920
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-MYTH": {
|
|
3921
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3922
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
3923
|
-
srcChain: "hydradx_main",
|
|
3924
|
-
destChain: "hydradx_main",
|
|
3925
|
-
path: "SWAP"
|
|
3926
|
-
},
|
|
3927
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-GLMR": {
|
|
3928
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3929
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
3930
|
-
srcChain: "hydradx_main",
|
|
3931
|
-
destChain: "hydradx_main",
|
|
3932
|
-
path: "SWAP"
|
|
3933
|
-
},
|
|
3934
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-WUD": {
|
|
3935
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3936
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
3937
|
-
srcChain: "hydradx_main",
|
|
3938
|
-
destChain: "hydradx_main",
|
|
3939
|
-
path: "SWAP"
|
|
3940
|
-
},
|
|
3941
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-BNC": {
|
|
3942
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3943
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
3944
|
-
srcChain: "hydradx_main",
|
|
3945
|
-
destChain: "hydradx_main",
|
|
3946
|
-
path: "SWAP"
|
|
3947
|
-
},
|
|
3948
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-vASTR": {
|
|
3949
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3950
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
3951
|
-
srcChain: "hydradx_main",
|
|
3952
|
-
destChain: "hydradx_main",
|
|
3953
|
-
path: "SWAP"
|
|
3954
|
-
},
|
|
3955
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-vDOT": {
|
|
3956
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3957
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
3958
|
-
srcChain: "hydradx_main",
|
|
3959
|
-
destChain: "hydradx_main",
|
|
3960
|
-
path: "SWAP"
|
|
3961
|
-
},
|
|
3962
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-CFG": {
|
|
3963
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3964
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
3965
|
-
srcChain: "hydradx_main",
|
|
3966
|
-
destChain: "hydradx_main",
|
|
3967
|
-
path: "SWAP"
|
|
3968
|
-
},
|
|
3969
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-CRU": {
|
|
3970
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3971
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
3972
|
-
srcChain: "hydradx_main",
|
|
3973
|
-
destChain: "hydradx_main",
|
|
3974
|
-
path: "SWAP"
|
|
3975
|
-
},
|
|
3976
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-DOT": {
|
|
3977
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3978
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
3979
|
-
srcChain: "hydradx_main",
|
|
3980
|
-
destChain: "hydradx_main",
|
|
3981
|
-
path: "SWAP"
|
|
3982
|
-
},
|
|
3983
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-SUB": {
|
|
3984
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3985
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
3986
|
-
srcChain: "hydradx_main",
|
|
3987
|
-
destChain: "hydradx_main",
|
|
3988
|
-
path: "SWAP"
|
|
3989
|
-
},
|
|
3990
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-PHA": {
|
|
3991
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3992
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
3993
|
-
srcChain: "hydradx_main",
|
|
3994
|
-
destChain: "hydradx_main",
|
|
3995
|
-
path: "SWAP"
|
|
3996
|
-
},
|
|
3997
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-ZTG": {
|
|
3998
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
3999
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4000
|
-
srcChain: "hydradx_main",
|
|
4001
|
-
destChain: "hydradx_main",
|
|
4002
|
-
path: "SWAP"
|
|
4003
|
-
},
|
|
4004
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-INTR": {
|
|
4005
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4006
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4007
|
-
srcChain: "hydradx_main",
|
|
4008
|
-
destChain: "hydradx_main",
|
|
4009
|
-
path: "SWAP"
|
|
4010
|
-
},
|
|
4011
|
-
"hydradx_main-LOCAL-2-Pool___hydradx_main-LOCAL-ASTR": {
|
|
4012
|
-
srcAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4013
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4014
|
-
srcChain: "hydradx_main",
|
|
4015
|
-
destChain: "hydradx_main",
|
|
4016
|
-
path: "SWAP"
|
|
4017
|
-
},
|
|
4018
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-KILT": {
|
|
4019
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4020
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4021
|
-
srcChain: "hydradx_main",
|
|
4022
|
-
destChain: "hydradx_main",
|
|
4023
|
-
path: "SWAP"
|
|
4024
|
-
},
|
|
4025
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-MYTH": {
|
|
4026
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4027
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4028
|
-
srcChain: "hydradx_main",
|
|
4029
|
-
destChain: "hydradx_main",
|
|
4030
|
-
path: "SWAP"
|
|
4031
|
-
},
|
|
4032
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-WUD": {
|
|
4033
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4034
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4035
|
-
srcChain: "hydradx_main",
|
|
4036
|
-
destChain: "hydradx_main",
|
|
4037
|
-
path: "SWAP"
|
|
4038
|
-
},
|
|
4039
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-BNC": {
|
|
4040
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4041
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4042
|
-
srcChain: "hydradx_main",
|
|
4043
|
-
destChain: "hydradx_main",
|
|
4044
|
-
path: "SWAP"
|
|
4045
|
-
},
|
|
4046
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-vASTR": {
|
|
4047
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4048
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4049
|
-
srcChain: "hydradx_main",
|
|
4050
|
-
destChain: "hydradx_main",
|
|
4051
|
-
path: "SWAP"
|
|
4052
|
-
},
|
|
4053
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-CFG": {
|
|
4054
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4055
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4056
|
-
srcChain: "hydradx_main",
|
|
4057
|
-
destChain: "hydradx_main",
|
|
4058
|
-
path: "SWAP"
|
|
4059
|
-
},
|
|
4060
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-CRU": {
|
|
4061
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4062
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4063
|
-
srcChain: "hydradx_main",
|
|
4064
|
-
destChain: "hydradx_main",
|
|
4065
|
-
path: "SWAP"
|
|
4066
|
-
},
|
|
4067
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-2-Pool": {
|
|
4068
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4069
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4070
|
-
srcChain: "hydradx_main",
|
|
4071
|
-
destChain: "hydradx_main",
|
|
4072
|
-
path: "SWAP"
|
|
4073
|
-
},
|
|
4074
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-SUB": {
|
|
4075
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4076
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4077
|
-
srcChain: "hydradx_main",
|
|
4078
|
-
destChain: "hydradx_main",
|
|
4079
|
-
path: "SWAP"
|
|
4080
|
-
},
|
|
4081
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-PHA": {
|
|
4082
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4083
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4084
|
-
srcChain: "hydradx_main",
|
|
4085
|
-
destChain: "hydradx_main",
|
|
4086
|
-
path: "SWAP"
|
|
4087
|
-
},
|
|
4088
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-ZTG": {
|
|
4089
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4090
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4091
|
-
srcChain: "hydradx_main",
|
|
4092
|
-
destChain: "hydradx_main",
|
|
4093
|
-
path: "SWAP"
|
|
4094
|
-
},
|
|
4095
|
-
"hydradx_main-LOCAL-GLMR___hydradx_main-LOCAL-INTR": {
|
|
4096
|
-
srcAsset: "hydradx_main-LOCAL-GLMR",
|
|
4097
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4098
|
-
srcChain: "hydradx_main",
|
|
4099
|
-
destChain: "hydradx_main",
|
|
4100
|
-
path: "SWAP"
|
|
4101
|
-
},
|
|
4102
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-4Pool": {
|
|
4103
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4104
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4105
|
-
srcChain: "hydradx_main",
|
|
4106
|
-
destChain: "hydradx_main",
|
|
4107
|
-
path: "SWAP"
|
|
4108
|
-
},
|
|
4109
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-KILT": {
|
|
4110
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4111
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4112
|
-
srcChain: "hydradx_main",
|
|
4113
|
-
destChain: "hydradx_main",
|
|
4114
|
-
path: "SWAP"
|
|
4115
|
-
},
|
|
4116
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-WETH": {
|
|
4117
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4118
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4119
|
-
srcChain: "hydradx_main",
|
|
4120
|
-
destChain: "hydradx_main",
|
|
4121
|
-
path: "SWAP"
|
|
4122
|
-
},
|
|
4123
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-MYTH": {
|
|
4124
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4125
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4126
|
-
srcChain: "hydradx_main",
|
|
4127
|
-
destChain: "hydradx_main",
|
|
4128
|
-
path: "SWAP"
|
|
4129
|
-
},
|
|
4130
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-2Pool": {
|
|
4131
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4132
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4133
|
-
srcChain: "hydradx_main",
|
|
4134
|
-
destChain: "hydradx_main",
|
|
4135
|
-
path: "SWAP"
|
|
4136
|
-
},
|
|
4137
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-GLMR": {
|
|
4138
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4139
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
4140
|
-
srcChain: "hydradx_main",
|
|
4141
|
-
destChain: "hydradx_main",
|
|
4142
|
-
path: "SWAP"
|
|
4143
|
-
},
|
|
4144
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-BNC": {
|
|
4145
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4146
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4147
|
-
srcChain: "hydradx_main",
|
|
4148
|
-
destChain: "hydradx_main",
|
|
4149
|
-
path: "SWAP"
|
|
4150
|
-
},
|
|
4151
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-vASTR": {
|
|
4152
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4153
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4154
|
-
srcChain: "hydradx_main",
|
|
4155
|
-
destChain: "hydradx_main",
|
|
4156
|
-
path: "SWAP"
|
|
4157
|
-
},
|
|
4158
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-vDOT": {
|
|
4159
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4160
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
4161
|
-
srcChain: "hydradx_main",
|
|
4162
|
-
destChain: "hydradx_main",
|
|
4163
|
-
path: "SWAP"
|
|
4164
|
-
},
|
|
4165
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-CFG": {
|
|
4166
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4167
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4168
|
-
srcChain: "hydradx_main",
|
|
4169
|
-
destChain: "hydradx_main",
|
|
4170
|
-
path: "SWAP"
|
|
4171
|
-
},
|
|
4172
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-CRU": {
|
|
4173
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4174
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4175
|
-
srcChain: "hydradx_main",
|
|
4176
|
-
destChain: "hydradx_main",
|
|
4177
|
-
path: "SWAP"
|
|
4178
|
-
},
|
|
4179
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-2-Pool": {
|
|
4180
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4181
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4182
|
-
srcChain: "hydradx_main",
|
|
4183
|
-
destChain: "hydradx_main",
|
|
4184
|
-
path: "SWAP"
|
|
4185
|
-
},
|
|
4186
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-SUB": {
|
|
4187
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4188
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4189
|
-
srcChain: "hydradx_main",
|
|
4190
|
-
destChain: "hydradx_main",
|
|
4191
|
-
path: "SWAP"
|
|
4192
|
-
},
|
|
4193
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-PHA": {
|
|
4194
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4195
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4196
|
-
srcChain: "hydradx_main",
|
|
4197
|
-
destChain: "hydradx_main",
|
|
4198
|
-
path: "SWAP"
|
|
4199
|
-
},
|
|
4200
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-ZTG": {
|
|
4201
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4202
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4203
|
-
srcChain: "hydradx_main",
|
|
4204
|
-
destChain: "hydradx_main",
|
|
4205
|
-
path: "SWAP"
|
|
4206
|
-
},
|
|
4207
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-INTR": {
|
|
4208
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4209
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4210
|
-
srcChain: "hydradx_main",
|
|
4211
|
-
destChain: "hydradx_main",
|
|
4212
|
-
path: "SWAP"
|
|
4213
|
-
},
|
|
4214
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-USDT": {
|
|
4215
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4216
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
4217
|
-
srcChain: "hydradx_main",
|
|
4218
|
-
destChain: "hydradx_main",
|
|
4219
|
-
path: "SWAP"
|
|
4220
|
-
},
|
|
4221
|
-
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-ASTR": {
|
|
4222
|
-
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
4223
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4224
|
-
srcChain: "hydradx_main",
|
|
4225
|
-
destChain: "hydradx_main",
|
|
4226
|
-
path: "SWAP"
|
|
4227
|
-
},
|
|
4228
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-4Pool": {
|
|
4229
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4230
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4231
|
-
srcChain: "hydradx_main",
|
|
4232
|
-
destChain: "hydradx_main",
|
|
4233
|
-
path: "SWAP"
|
|
4234
|
-
},
|
|
4235
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-KILT": {
|
|
4236
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4237
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4238
|
-
srcChain: "hydradx_main",
|
|
4239
|
-
destChain: "hydradx_main",
|
|
4240
|
-
path: "SWAP"
|
|
4241
|
-
},
|
|
4242
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-WETH": {
|
|
4243
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4244
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4245
|
-
srcChain: "hydradx_main",
|
|
4246
|
-
destChain: "hydradx_main",
|
|
4247
|
-
path: "SWAP"
|
|
4248
|
-
},
|
|
4249
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-MYTH": {
|
|
4250
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4251
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4252
|
-
srcChain: "hydradx_main",
|
|
4253
|
-
destChain: "hydradx_main",
|
|
4254
|
-
path: "SWAP"
|
|
4255
|
-
},
|
|
4256
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-2Pool": {
|
|
4257
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4258
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4259
|
-
srcChain: "hydradx_main",
|
|
4260
|
-
destChain: "hydradx_main",
|
|
4261
|
-
path: "SWAP"
|
|
4262
|
-
},
|
|
4263
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-GLMR": {
|
|
4264
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4265
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
4266
|
-
srcChain: "hydradx_main",
|
|
4267
|
-
destChain: "hydradx_main",
|
|
4268
|
-
path: "SWAP"
|
|
4269
|
-
},
|
|
4270
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-WUD": {
|
|
4271
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4272
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4273
|
-
srcChain: "hydradx_main",
|
|
4274
|
-
destChain: "hydradx_main",
|
|
4275
|
-
path: "SWAP"
|
|
4276
|
-
},
|
|
4277
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-vASTR": {
|
|
4278
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4279
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4280
|
-
srcChain: "hydradx_main",
|
|
4281
|
-
destChain: "hydradx_main",
|
|
4282
|
-
path: "SWAP"
|
|
4283
|
-
},
|
|
4284
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-vDOT": {
|
|
4285
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4286
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
4287
|
-
srcChain: "hydradx_main",
|
|
4288
|
-
destChain: "hydradx_main",
|
|
4289
|
-
path: "SWAP"
|
|
4290
|
-
},
|
|
4291
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-CFG": {
|
|
4292
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4293
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4294
|
-
srcChain: "hydradx_main",
|
|
4295
|
-
destChain: "hydradx_main",
|
|
4296
|
-
path: "SWAP"
|
|
4297
|
-
},
|
|
4298
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-CRU": {
|
|
4299
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4300
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4301
|
-
srcChain: "hydradx_main",
|
|
4302
|
-
destChain: "hydradx_main",
|
|
4303
|
-
path: "SWAP"
|
|
4304
|
-
},
|
|
4305
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-2-Pool": {
|
|
4306
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4307
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4308
|
-
srcChain: "hydradx_main",
|
|
4309
|
-
destChain: "hydradx_main",
|
|
4310
|
-
path: "SWAP"
|
|
4311
|
-
},
|
|
4312
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-SUB": {
|
|
4313
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4314
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4315
|
-
srcChain: "hydradx_main",
|
|
4316
|
-
destChain: "hydradx_main",
|
|
4317
|
-
path: "SWAP"
|
|
4318
|
-
},
|
|
4319
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-PHA": {
|
|
4320
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4321
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4322
|
-
srcChain: "hydradx_main",
|
|
4323
|
-
destChain: "hydradx_main",
|
|
4324
|
-
path: "SWAP"
|
|
4325
|
-
},
|
|
4326
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-ZTG": {
|
|
4327
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4328
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4329
|
-
srcChain: "hydradx_main",
|
|
4330
|
-
destChain: "hydradx_main",
|
|
4331
|
-
path: "SWAP"
|
|
4332
|
-
},
|
|
4333
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-INTR": {
|
|
4334
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4335
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4336
|
-
srcChain: "hydradx_main",
|
|
4337
|
-
destChain: "hydradx_main",
|
|
4338
|
-
path: "SWAP"
|
|
4339
|
-
},
|
|
4340
|
-
"hydradx_main-LOCAL-BNC___hydradx_main-LOCAL-ASTR": {
|
|
4341
|
-
srcAsset: "hydradx_main-LOCAL-BNC",
|
|
4342
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4343
|
-
srcChain: "hydradx_main",
|
|
4344
|
-
destChain: "hydradx_main",
|
|
4345
|
-
path: "SWAP"
|
|
4346
|
-
},
|
|
4347
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-4Pool": {
|
|
4348
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4349
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4350
|
-
srcChain: "hydradx_main",
|
|
4351
|
-
destChain: "hydradx_main",
|
|
4352
|
-
path: "SWAP"
|
|
4353
|
-
},
|
|
4354
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-NATIVE-HDX": {
|
|
4355
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4356
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
4357
|
-
srcChain: "hydradx_main",
|
|
4358
|
-
destChain: "hydradx_main",
|
|
4359
|
-
path: "SWAP"
|
|
4360
|
-
},
|
|
4361
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-KILT": {
|
|
4362
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4363
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4364
|
-
srcChain: "hydradx_main",
|
|
4365
|
-
destChain: "hydradx_main",
|
|
4366
|
-
path: "SWAP"
|
|
4367
|
-
},
|
|
4368
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-WETH": {
|
|
4369
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4370
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4371
|
-
srcChain: "hydradx_main",
|
|
4372
|
-
destChain: "hydradx_main",
|
|
4373
|
-
path: "SWAP"
|
|
4374
|
-
},
|
|
4375
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-MYTH": {
|
|
4376
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4377
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4378
|
-
srcChain: "hydradx_main",
|
|
4379
|
-
destChain: "hydradx_main",
|
|
4380
|
-
path: "SWAP"
|
|
4381
|
-
},
|
|
4382
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-2Pool": {
|
|
4383
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4384
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4385
|
-
srcChain: "hydradx_main",
|
|
4386
|
-
destChain: "hydradx_main",
|
|
4387
|
-
path: "SWAP"
|
|
4388
|
-
},
|
|
4389
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-GLMR": {
|
|
4390
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4391
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
4392
|
-
srcChain: "hydradx_main",
|
|
4393
|
-
destChain: "hydradx_main",
|
|
4394
|
-
path: "SWAP"
|
|
4395
|
-
},
|
|
4396
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-WUD": {
|
|
4397
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4398
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4399
|
-
srcChain: "hydradx_main",
|
|
4400
|
-
destChain: "hydradx_main",
|
|
4401
|
-
path: "SWAP"
|
|
4402
|
-
},
|
|
4403
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-BNC": {
|
|
4404
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4405
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4406
|
-
srcChain: "hydradx_main",
|
|
4407
|
-
destChain: "hydradx_main",
|
|
4408
|
-
path: "SWAP"
|
|
4409
|
-
},
|
|
4410
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-CFG": {
|
|
4411
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4412
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4413
|
-
srcChain: "hydradx_main",
|
|
4414
|
-
destChain: "hydradx_main",
|
|
4415
|
-
path: "SWAP"
|
|
4416
|
-
},
|
|
4417
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-CRU": {
|
|
4418
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4419
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4420
|
-
srcChain: "hydradx_main",
|
|
4421
|
-
destChain: "hydradx_main",
|
|
4422
|
-
path: "SWAP"
|
|
4423
|
-
},
|
|
4424
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-2-Pool": {
|
|
4425
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4426
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4427
|
-
srcChain: "hydradx_main",
|
|
4428
|
-
destChain: "hydradx_main",
|
|
4429
|
-
path: "SWAP"
|
|
4430
|
-
},
|
|
4431
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-DOT": {
|
|
4432
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4433
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
4434
|
-
srcChain: "hydradx_main",
|
|
4435
|
-
destChain: "hydradx_main",
|
|
4436
|
-
path: "SWAP"
|
|
4437
|
-
},
|
|
4438
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-SUB": {
|
|
4439
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4440
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4441
|
-
srcChain: "hydradx_main",
|
|
4442
|
-
destChain: "hydradx_main",
|
|
4443
|
-
path: "SWAP"
|
|
4444
|
-
},
|
|
4445
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-PHA": {
|
|
4446
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4447
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4448
|
-
srcChain: "hydradx_main",
|
|
4449
|
-
destChain: "hydradx_main",
|
|
4450
|
-
path: "SWAP"
|
|
4451
|
-
},
|
|
4452
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-ZTG": {
|
|
4453
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4454
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4455
|
-
srcChain: "hydradx_main",
|
|
4456
|
-
destChain: "hydradx_main",
|
|
4457
|
-
path: "SWAP"
|
|
4458
|
-
},
|
|
4459
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-INTR": {
|
|
4460
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4461
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4462
|
-
srcChain: "hydradx_main",
|
|
4463
|
-
destChain: "hydradx_main",
|
|
4464
|
-
path: "SWAP"
|
|
4465
|
-
},
|
|
4466
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-USDT": {
|
|
4467
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4468
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
4469
|
-
srcChain: "hydradx_main",
|
|
4470
|
-
destChain: "hydradx_main",
|
|
4471
|
-
path: "SWAP"
|
|
4472
|
-
},
|
|
4473
|
-
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-ASTR": {
|
|
4474
|
-
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
4475
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4476
|
-
srcChain: "hydradx_main",
|
|
4477
|
-
destChain: "hydradx_main",
|
|
4478
|
-
path: "SWAP"
|
|
4479
|
-
},
|
|
4480
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-KILT": {
|
|
4481
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4482
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4483
|
-
srcChain: "hydradx_main",
|
|
4484
|
-
destChain: "hydradx_main",
|
|
4485
|
-
path: "SWAP"
|
|
4486
|
-
},
|
|
4487
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-MYTH": {
|
|
4488
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4489
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4490
|
-
srcChain: "hydradx_main",
|
|
4491
|
-
destChain: "hydradx_main",
|
|
4492
|
-
path: "SWAP"
|
|
4493
|
-
},
|
|
4494
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-WUD": {
|
|
4495
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4496
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4497
|
-
srcChain: "hydradx_main",
|
|
4498
|
-
destChain: "hydradx_main",
|
|
4499
|
-
path: "SWAP"
|
|
4500
|
-
},
|
|
4501
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-BNC": {
|
|
4502
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4503
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4504
|
-
srcChain: "hydradx_main",
|
|
4505
|
-
destChain: "hydradx_main",
|
|
4506
|
-
path: "SWAP"
|
|
4507
|
-
},
|
|
4508
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-CFG": {
|
|
4509
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4510
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4511
|
-
srcChain: "hydradx_main",
|
|
4512
|
-
destChain: "hydradx_main",
|
|
4513
|
-
path: "SWAP"
|
|
4514
|
-
},
|
|
4515
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-CRU": {
|
|
4516
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4517
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4518
|
-
srcChain: "hydradx_main",
|
|
4519
|
-
destChain: "hydradx_main",
|
|
4520
|
-
path: "SWAP"
|
|
4521
|
-
},
|
|
4522
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-2-Pool": {
|
|
4523
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4524
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4525
|
-
srcChain: "hydradx_main",
|
|
4526
|
-
destChain: "hydradx_main",
|
|
4527
|
-
path: "SWAP"
|
|
4528
|
-
},
|
|
4529
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-SUB": {
|
|
4530
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4531
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4532
|
-
srcChain: "hydradx_main",
|
|
4533
|
-
destChain: "hydradx_main",
|
|
4534
|
-
path: "SWAP"
|
|
4535
|
-
},
|
|
4536
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-PHA": {
|
|
4537
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4538
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4539
|
-
srcChain: "hydradx_main",
|
|
4540
|
-
destChain: "hydradx_main",
|
|
4541
|
-
path: "SWAP"
|
|
4542
|
-
},
|
|
4543
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-ZTG": {
|
|
4544
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4545
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4546
|
-
srcChain: "hydradx_main",
|
|
4547
|
-
destChain: "hydradx_main",
|
|
4548
|
-
path: "SWAP"
|
|
4549
|
-
},
|
|
4550
|
-
"hydradx_main-LOCAL-vDOT___hydradx_main-LOCAL-INTR": {
|
|
4551
|
-
srcAsset: "hydradx_main-LOCAL-vDOT",
|
|
4552
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4553
|
-
srcChain: "hydradx_main",
|
|
4554
|
-
destChain: "hydradx_main",
|
|
4555
|
-
path: "SWAP"
|
|
4556
|
-
},
|
|
4557
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-4Pool": {
|
|
4558
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4559
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4560
|
-
srcChain: "hydradx_main",
|
|
4561
|
-
destChain: "hydradx_main",
|
|
4562
|
-
path: "SWAP"
|
|
4563
|
-
},
|
|
4564
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-NATIVE-HDX": {
|
|
4565
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4566
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
4567
|
-
srcChain: "hydradx_main",
|
|
4568
|
-
destChain: "hydradx_main",
|
|
4569
|
-
path: "SWAP"
|
|
4570
|
-
},
|
|
4571
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-KILT": {
|
|
4572
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4573
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4574
|
-
srcChain: "hydradx_main",
|
|
4575
|
-
destChain: "hydradx_main",
|
|
4576
|
-
path: "SWAP"
|
|
4577
|
-
},
|
|
4578
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-WETH": {
|
|
4579
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4580
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4581
|
-
srcChain: "hydradx_main",
|
|
4582
|
-
destChain: "hydradx_main",
|
|
4583
|
-
path: "SWAP"
|
|
4584
|
-
},
|
|
4585
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-MYTH": {
|
|
4586
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4587
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4588
|
-
srcChain: "hydradx_main",
|
|
4589
|
-
destChain: "hydradx_main",
|
|
4590
|
-
path: "SWAP"
|
|
4591
|
-
},
|
|
4592
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-2Pool": {
|
|
4593
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4594
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4595
|
-
srcChain: "hydradx_main",
|
|
4596
|
-
destChain: "hydradx_main",
|
|
4597
|
-
path: "SWAP"
|
|
4598
|
-
},
|
|
4599
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-GLMR": {
|
|
4600
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4601
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
4602
|
-
srcChain: "hydradx_main",
|
|
4603
|
-
destChain: "hydradx_main",
|
|
4604
|
-
path: "SWAP"
|
|
4605
|
-
},
|
|
4606
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-WUD": {
|
|
4607
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4608
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4609
|
-
srcChain: "hydradx_main",
|
|
4610
|
-
destChain: "hydradx_main",
|
|
4611
|
-
path: "SWAP"
|
|
4612
|
-
},
|
|
4613
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-BNC": {
|
|
4614
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4615
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4616
|
-
srcChain: "hydradx_main",
|
|
4617
|
-
destChain: "hydradx_main",
|
|
4618
|
-
path: "SWAP"
|
|
4619
|
-
},
|
|
4620
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-vASTR": {
|
|
4621
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4622
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4623
|
-
srcChain: "hydradx_main",
|
|
4624
|
-
destChain: "hydradx_main",
|
|
4625
|
-
path: "SWAP"
|
|
4626
|
-
},
|
|
4627
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-vDOT": {
|
|
4628
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4629
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
4630
|
-
srcChain: "hydradx_main",
|
|
4631
|
-
destChain: "hydradx_main",
|
|
4632
|
-
path: "SWAP"
|
|
4633
|
-
},
|
|
4634
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-CRU": {
|
|
4635
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4636
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4637
|
-
srcChain: "hydradx_main",
|
|
4638
|
-
destChain: "hydradx_main",
|
|
4639
|
-
path: "SWAP"
|
|
4640
|
-
},
|
|
4641
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-2-Pool": {
|
|
4642
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4643
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4644
|
-
srcChain: "hydradx_main",
|
|
4645
|
-
destChain: "hydradx_main",
|
|
4646
|
-
path: "SWAP"
|
|
4647
|
-
},
|
|
4648
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-SUB": {
|
|
4649
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4650
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4651
|
-
srcChain: "hydradx_main",
|
|
4652
|
-
destChain: "hydradx_main",
|
|
4653
|
-
path: "SWAP"
|
|
4654
|
-
},
|
|
4655
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-PHA": {
|
|
4656
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4657
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4658
|
-
srcChain: "hydradx_main",
|
|
4659
|
-
destChain: "hydradx_main",
|
|
4660
|
-
path: "SWAP"
|
|
4661
|
-
},
|
|
4662
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-ZTG": {
|
|
4663
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4664
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4665
|
-
srcChain: "hydradx_main",
|
|
4666
|
-
destChain: "hydradx_main",
|
|
4667
|
-
path: "SWAP"
|
|
4668
|
-
},
|
|
4669
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-INTR": {
|
|
4670
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4671
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4672
|
-
srcChain: "hydradx_main",
|
|
4673
|
-
destChain: "hydradx_main",
|
|
4674
|
-
path: "SWAP"
|
|
4675
|
-
},
|
|
4676
|
-
"hydradx_main-LOCAL-CFG___hydradx_main-LOCAL-ASTR": {
|
|
4677
|
-
srcAsset: "hydradx_main-LOCAL-CFG",
|
|
4678
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4679
|
-
srcChain: "hydradx_main",
|
|
4680
|
-
destChain: "hydradx_main",
|
|
4681
|
-
path: "SWAP"
|
|
4682
|
-
},
|
|
4683
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-4Pool": {
|
|
4684
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4685
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4686
|
-
srcChain: "hydradx_main",
|
|
4687
|
-
destChain: "hydradx_main",
|
|
4688
|
-
path: "SWAP"
|
|
4689
|
-
},
|
|
4690
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-NATIVE-HDX": {
|
|
4691
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4692
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
4693
|
-
srcChain: "hydradx_main",
|
|
4694
|
-
destChain: "hydradx_main",
|
|
4695
|
-
path: "SWAP"
|
|
4696
|
-
},
|
|
4697
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-KILT": {
|
|
4698
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4699
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4700
|
-
srcChain: "hydradx_main",
|
|
4701
|
-
destChain: "hydradx_main",
|
|
4702
|
-
path: "SWAP"
|
|
4703
|
-
},
|
|
4704
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-WETH": {
|
|
4705
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4706
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4707
|
-
srcChain: "hydradx_main",
|
|
4708
|
-
destChain: "hydradx_main",
|
|
4709
|
-
path: "SWAP"
|
|
4710
|
-
},
|
|
4711
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-MYTH": {
|
|
4712
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4713
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4714
|
-
srcChain: "hydradx_main",
|
|
4715
|
-
destChain: "hydradx_main",
|
|
4716
|
-
path: "SWAP"
|
|
4717
|
-
},
|
|
4718
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-2Pool": {
|
|
4719
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4720
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4721
|
-
srcChain: "hydradx_main",
|
|
4722
|
-
destChain: "hydradx_main",
|
|
4723
|
-
path: "SWAP"
|
|
4724
|
-
},
|
|
4725
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-GLMR": {
|
|
4726
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4727
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
4728
|
-
srcChain: "hydradx_main",
|
|
4729
|
-
destChain: "hydradx_main",
|
|
4730
|
-
path: "SWAP"
|
|
4731
|
-
},
|
|
4732
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-WUD": {
|
|
4733
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4734
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4735
|
-
srcChain: "hydradx_main",
|
|
4736
|
-
destChain: "hydradx_main",
|
|
4737
|
-
path: "SWAP"
|
|
4738
|
-
},
|
|
4739
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-BNC": {
|
|
4740
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4741
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4742
|
-
srcChain: "hydradx_main",
|
|
4743
|
-
destChain: "hydradx_main",
|
|
4744
|
-
path: "SWAP"
|
|
4745
|
-
},
|
|
4746
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-vASTR": {
|
|
4747
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4748
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4749
|
-
srcChain: "hydradx_main",
|
|
4750
|
-
destChain: "hydradx_main",
|
|
4751
|
-
path: "SWAP"
|
|
4752
|
-
},
|
|
4753
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-vDOT": {
|
|
4754
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4755
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
4756
|
-
srcChain: "hydradx_main",
|
|
4757
|
-
destChain: "hydradx_main",
|
|
4758
|
-
path: "SWAP"
|
|
4759
|
-
},
|
|
4760
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-CFG": {
|
|
4761
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4762
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4763
|
-
srcChain: "hydradx_main",
|
|
4764
|
-
destChain: "hydradx_main",
|
|
4765
|
-
path: "SWAP"
|
|
4766
|
-
},
|
|
4767
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-2-Pool": {
|
|
4768
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4769
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4770
|
-
srcChain: "hydradx_main",
|
|
4771
|
-
destChain: "hydradx_main",
|
|
4772
|
-
path: "SWAP"
|
|
4773
|
-
},
|
|
4774
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-DOT": {
|
|
4775
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4776
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
4777
|
-
srcChain: "hydradx_main",
|
|
4778
|
-
destChain: "hydradx_main",
|
|
4779
|
-
path: "SWAP"
|
|
4780
|
-
},
|
|
4781
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-SUB": {
|
|
4782
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4783
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4784
|
-
srcChain: "hydradx_main",
|
|
4785
|
-
destChain: "hydradx_main",
|
|
4786
|
-
path: "SWAP"
|
|
4787
|
-
},
|
|
4788
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-PHA": {
|
|
4789
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4790
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4791
|
-
srcChain: "hydradx_main",
|
|
4792
|
-
destChain: "hydradx_main",
|
|
4793
|
-
path: "SWAP"
|
|
4794
|
-
},
|
|
4795
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-ZTG": {
|
|
4796
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4797
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4798
|
-
srcChain: "hydradx_main",
|
|
4799
|
-
destChain: "hydradx_main",
|
|
4800
|
-
path: "SWAP"
|
|
4801
|
-
},
|
|
4802
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-INTR": {
|
|
4803
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4804
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4805
|
-
srcChain: "hydradx_main",
|
|
4806
|
-
destChain: "hydradx_main",
|
|
4807
|
-
path: "SWAP"
|
|
4808
|
-
},
|
|
4809
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-USDT": {
|
|
4810
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4811
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
4812
|
-
srcChain: "hydradx_main",
|
|
4813
|
-
destChain: "hydradx_main",
|
|
4814
|
-
path: "SWAP"
|
|
4815
|
-
},
|
|
4816
|
-
"hydradx_main-LOCAL-CRU___hydradx_main-LOCAL-ASTR": {
|
|
4817
|
-
srcAsset: "hydradx_main-LOCAL-CRU",
|
|
4818
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
4819
|
-
srcChain: "hydradx_main",
|
|
4820
|
-
destChain: "hydradx_main",
|
|
4821
|
-
path: "SWAP"
|
|
4822
|
-
},
|
|
4823
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-KILT": {
|
|
4824
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4825
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4826
|
-
srcChain: "hydradx_main",
|
|
4827
|
-
destChain: "hydradx_main",
|
|
4828
|
-
path: "SWAP"
|
|
4829
|
-
},
|
|
4830
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-MYTH": {
|
|
4831
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4832
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4833
|
-
srcChain: "hydradx_main",
|
|
4834
|
-
destChain: "hydradx_main",
|
|
4835
|
-
path: "SWAP"
|
|
4836
|
-
},
|
|
4837
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-WUD": {
|
|
4838
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4839
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
4840
|
-
srcChain: "hydradx_main",
|
|
4841
|
-
destChain: "hydradx_main",
|
|
4842
|
-
path: "SWAP"
|
|
4843
|
-
},
|
|
4844
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-BNC": {
|
|
4845
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4846
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
4847
|
-
srcChain: "hydradx_main",
|
|
4848
|
-
destChain: "hydradx_main",
|
|
4849
|
-
path: "SWAP"
|
|
4850
|
-
},
|
|
4851
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-vASTR": {
|
|
4852
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4853
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4854
|
-
srcChain: "hydradx_main",
|
|
4855
|
-
destChain: "hydradx_main",
|
|
4856
|
-
path: "SWAP"
|
|
4857
|
-
},
|
|
4858
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-CFG": {
|
|
4859
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4860
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
4861
|
-
srcChain: "hydradx_main",
|
|
4862
|
-
destChain: "hydradx_main",
|
|
4863
|
-
path: "SWAP"
|
|
4864
|
-
},
|
|
4865
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-CRU": {
|
|
4866
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4867
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4868
|
-
srcChain: "hydradx_main",
|
|
4869
|
-
destChain: "hydradx_main",
|
|
4870
|
-
path: "SWAP"
|
|
4871
|
-
},
|
|
4872
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-SUB": {
|
|
4873
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4874
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4875
|
-
srcChain: "hydradx_main",
|
|
4876
|
-
destChain: "hydradx_main",
|
|
4877
|
-
path: "SWAP"
|
|
4878
|
-
},
|
|
4879
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-PHA": {
|
|
4880
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4881
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
4882
|
-
srcChain: "hydradx_main",
|
|
4883
|
-
destChain: "hydradx_main",
|
|
4884
|
-
path: "SWAP"
|
|
4885
|
-
},
|
|
4886
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-ZTG": {
|
|
4887
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4888
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4889
|
-
srcChain: "hydradx_main",
|
|
4890
|
-
destChain: "hydradx_main",
|
|
4891
|
-
path: "SWAP"
|
|
4892
|
-
},
|
|
4893
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-INTR": {
|
|
4894
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4895
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4896
|
-
srcChain: "hydradx_main",
|
|
4897
|
-
destChain: "hydradx_main",
|
|
4898
|
-
path: "SWAP"
|
|
4899
|
-
},
|
|
4900
|
-
"hydradx_main-LOCAL-2Pool___hydradx_main-LOCAL-2-Pool": {
|
|
4901
|
-
srcAsset: "hydradx_main-LOCAL-2Pool",
|
|
4902
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4903
|
-
srcChain: "hydradx_main",
|
|
4904
|
-
destChain: "hydradx_main",
|
|
4905
|
-
path: "SWAP"
|
|
4906
|
-
},
|
|
4907
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-KILT": {
|
|
4908
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4909
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4910
|
-
srcChain: "hydradx_main",
|
|
4911
|
-
destChain: "hydradx_main",
|
|
4912
|
-
path: "SWAP"
|
|
4913
|
-
},
|
|
4914
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-vASTR": {
|
|
4915
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4916
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
4917
|
-
srcChain: "hydradx_main",
|
|
4918
|
-
destChain: "hydradx_main",
|
|
4919
|
-
path: "SWAP"
|
|
4920
|
-
},
|
|
4921
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-CRU": {
|
|
4922
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4923
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
4924
|
-
srcChain: "hydradx_main",
|
|
4925
|
-
destChain: "hydradx_main",
|
|
4926
|
-
path: "SWAP"
|
|
4927
|
-
},
|
|
4928
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-2-Pool": {
|
|
4929
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4930
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
4931
|
-
srcChain: "hydradx_main",
|
|
4932
|
-
destChain: "hydradx_main",
|
|
4933
|
-
path: "SWAP"
|
|
4934
|
-
},
|
|
4935
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-SUB": {
|
|
4936
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4937
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
4938
|
-
srcChain: "hydradx_main",
|
|
4939
|
-
destChain: "hydradx_main",
|
|
4940
|
-
path: "SWAP"
|
|
4941
|
-
},
|
|
4942
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-ZTG": {
|
|
4943
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4944
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
4945
|
-
srcChain: "hydradx_main",
|
|
4946
|
-
destChain: "hydradx_main",
|
|
4947
|
-
path: "SWAP"
|
|
4948
|
-
},
|
|
4949
|
-
"hydradx_main-LOCAL-DOT___hydradx_main-LOCAL-INTR": {
|
|
4950
|
-
srcAsset: "hydradx_main-LOCAL-DOT",
|
|
4951
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
4952
|
-
srcChain: "hydradx_main",
|
|
4953
|
-
destChain: "hydradx_main",
|
|
4954
|
-
path: "SWAP"
|
|
4955
|
-
},
|
|
4956
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-4Pool": {
|
|
4957
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4958
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
4959
|
-
srcChain: "hydradx_main",
|
|
4960
|
-
destChain: "hydradx_main",
|
|
4961
|
-
path: "SWAP"
|
|
4962
|
-
},
|
|
4963
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-NATIVE-HDX": {
|
|
4964
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4965
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
4966
|
-
srcChain: "hydradx_main",
|
|
4967
|
-
destChain: "hydradx_main",
|
|
4968
|
-
path: "SWAP"
|
|
4969
|
-
},
|
|
4970
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-KILT": {
|
|
4971
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4972
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
4973
|
-
srcChain: "hydradx_main",
|
|
4974
|
-
destChain: "hydradx_main",
|
|
4975
|
-
path: "SWAP"
|
|
4976
|
-
},
|
|
4977
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-WETH": {
|
|
4978
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4979
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
4980
|
-
srcChain: "hydradx_main",
|
|
4981
|
-
destChain: "hydradx_main",
|
|
4982
|
-
path: "SWAP"
|
|
4983
|
-
},
|
|
4984
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-MYTH": {
|
|
4985
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4986
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
4987
|
-
srcChain: "hydradx_main",
|
|
4988
|
-
destChain: "hydradx_main",
|
|
4989
|
-
path: "SWAP"
|
|
4990
|
-
},
|
|
4991
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-2Pool": {
|
|
4992
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
4993
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
4994
|
-
srcChain: "hydradx_main",
|
|
4995
|
-
destChain: "hydradx_main",
|
|
4996
|
-
path: "SWAP"
|
|
4997
|
-
},
|
|
4998
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-GLMR": {
|
|
4999
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5000
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
5001
|
-
srcChain: "hydradx_main",
|
|
5002
|
-
destChain: "hydradx_main",
|
|
5003
|
-
path: "SWAP"
|
|
5004
|
-
},
|
|
5005
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-WUD": {
|
|
5006
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5007
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
5008
|
-
srcChain: "hydradx_main",
|
|
5009
|
-
destChain: "hydradx_main",
|
|
5010
|
-
path: "SWAP"
|
|
5011
|
-
},
|
|
5012
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-BNC": {
|
|
5013
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5014
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
5015
|
-
srcChain: "hydradx_main",
|
|
5016
|
-
destChain: "hydradx_main",
|
|
5017
|
-
path: "SWAP"
|
|
5018
|
-
},
|
|
5019
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-vASTR": {
|
|
5020
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5021
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
5022
|
-
srcChain: "hydradx_main",
|
|
5023
|
-
destChain: "hydradx_main",
|
|
5024
|
-
path: "SWAP"
|
|
5025
|
-
},
|
|
5026
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-vDOT": {
|
|
5027
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5028
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
5029
|
-
srcChain: "hydradx_main",
|
|
5030
|
-
destChain: "hydradx_main",
|
|
5031
|
-
path: "SWAP"
|
|
5032
|
-
},
|
|
5033
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-CFG": {
|
|
5034
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5035
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
5036
|
-
srcChain: "hydradx_main",
|
|
5037
|
-
destChain: "hydradx_main",
|
|
5038
|
-
path: "SWAP"
|
|
5039
|
-
},
|
|
5040
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-CRU": {
|
|
5041
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5042
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
5043
|
-
srcChain: "hydradx_main",
|
|
5044
|
-
destChain: "hydradx_main",
|
|
5045
|
-
path: "SWAP"
|
|
5046
|
-
},
|
|
5047
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-2-Pool": {
|
|
5048
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5049
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
5050
|
-
srcChain: "hydradx_main",
|
|
5051
|
-
destChain: "hydradx_main",
|
|
5052
|
-
path: "SWAP"
|
|
5053
|
-
},
|
|
5054
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-DOT": {
|
|
5055
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5056
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
5057
|
-
srcChain: "hydradx_main",
|
|
5058
|
-
destChain: "hydradx_main",
|
|
5059
|
-
path: "SWAP"
|
|
5060
|
-
},
|
|
5061
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-PHA": {
|
|
5062
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5063
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
5064
|
-
srcChain: "hydradx_main",
|
|
5065
|
-
destChain: "hydradx_main",
|
|
5066
|
-
path: "SWAP"
|
|
5067
|
-
},
|
|
5068
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-ZTG": {
|
|
5069
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5070
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
5071
|
-
srcChain: "hydradx_main",
|
|
5072
|
-
destChain: "hydradx_main",
|
|
5073
|
-
path: "SWAP"
|
|
5074
|
-
},
|
|
5075
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-INTR": {
|
|
5076
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5077
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
5078
|
-
srcChain: "hydradx_main",
|
|
5079
|
-
destChain: "hydradx_main",
|
|
5080
|
-
path: "SWAP"
|
|
5081
|
-
},
|
|
5082
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-USDT": {
|
|
5083
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5084
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
5085
|
-
srcChain: "hydradx_main",
|
|
5086
|
-
destChain: "hydradx_main",
|
|
5087
|
-
path: "SWAP"
|
|
5088
|
-
},
|
|
5089
|
-
"hydradx_main-LOCAL-SUB___hydradx_main-LOCAL-ASTR": {
|
|
5090
|
-
srcAsset: "hydradx_main-LOCAL-SUB",
|
|
5091
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
5092
|
-
srcChain: "hydradx_main",
|
|
5093
|
-
destChain: "hydradx_main",
|
|
5094
|
-
path: "SWAP"
|
|
5095
|
-
},
|
|
5096
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-4Pool": {
|
|
5097
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5098
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
5099
|
-
srcChain: "hydradx_main",
|
|
5100
|
-
destChain: "hydradx_main",
|
|
5101
|
-
path: "SWAP"
|
|
5102
|
-
},
|
|
5103
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-NATIVE-HDX": {
|
|
5104
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5105
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
5106
|
-
srcChain: "hydradx_main",
|
|
5107
|
-
destChain: "hydradx_main",
|
|
5108
|
-
path: "SWAP"
|
|
5109
|
-
},
|
|
5110
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-KILT": {
|
|
5111
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5112
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
5113
|
-
srcChain: "hydradx_main",
|
|
5114
|
-
destChain: "hydradx_main",
|
|
5115
|
-
path: "SWAP"
|
|
5116
|
-
},
|
|
5117
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-WETH": {
|
|
5118
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5119
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
5120
|
-
srcChain: "hydradx_main",
|
|
5121
|
-
destChain: "hydradx_main",
|
|
5122
|
-
path: "SWAP"
|
|
5123
|
-
},
|
|
5124
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-MYTH": {
|
|
5125
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5126
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
5127
|
-
srcChain: "hydradx_main",
|
|
5128
|
-
destChain: "hydradx_main",
|
|
5129
|
-
path: "SWAP"
|
|
5130
|
-
},
|
|
5131
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-2Pool": {
|
|
5132
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5133
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
5134
|
-
srcChain: "hydradx_main",
|
|
5135
|
-
destChain: "hydradx_main",
|
|
5136
|
-
path: "SWAP"
|
|
5137
|
-
},
|
|
5138
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-GLMR": {
|
|
5139
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5140
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
5141
|
-
srcChain: "hydradx_main",
|
|
5142
|
-
destChain: "hydradx_main",
|
|
5143
|
-
path: "SWAP"
|
|
5144
|
-
},
|
|
5145
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-WUD": {
|
|
5146
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5147
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
5148
|
-
srcChain: "hydradx_main",
|
|
5149
|
-
destChain: "hydradx_main",
|
|
5150
|
-
path: "SWAP"
|
|
5151
|
-
},
|
|
5152
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-BNC": {
|
|
5153
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5154
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
5155
|
-
srcChain: "hydradx_main",
|
|
5156
|
-
destChain: "hydradx_main",
|
|
5157
|
-
path: "SWAP"
|
|
5158
|
-
},
|
|
5159
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-vASTR": {
|
|
5160
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5161
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
5162
|
-
srcChain: "hydradx_main",
|
|
5163
|
-
destChain: "hydradx_main",
|
|
5164
|
-
path: "SWAP"
|
|
5165
|
-
},
|
|
5166
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-vDOT": {
|
|
5167
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5168
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
5169
|
-
srcChain: "hydradx_main",
|
|
5170
|
-
destChain: "hydradx_main",
|
|
5171
|
-
path: "SWAP"
|
|
5172
|
-
},
|
|
5173
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-CFG": {
|
|
5174
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5175
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
5176
|
-
srcChain: "hydradx_main",
|
|
5177
|
-
destChain: "hydradx_main",
|
|
5178
|
-
path: "SWAP"
|
|
5179
|
-
},
|
|
5180
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-CRU": {
|
|
5181
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5182
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
5183
|
-
srcChain: "hydradx_main",
|
|
5184
|
-
destChain: "hydradx_main",
|
|
5185
|
-
path: "SWAP"
|
|
5186
|
-
},
|
|
5187
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-2-Pool": {
|
|
5188
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5189
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
5190
|
-
srcChain: "hydradx_main",
|
|
5191
|
-
destChain: "hydradx_main",
|
|
5192
|
-
path: "SWAP"
|
|
5193
|
-
},
|
|
5194
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-SUB": {
|
|
5195
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5196
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
5197
|
-
srcChain: "hydradx_main",
|
|
5198
|
-
destChain: "hydradx_main",
|
|
5199
|
-
path: "SWAP"
|
|
5200
|
-
},
|
|
5201
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-ZTG": {
|
|
5202
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5203
|
-
destAsset: "hydradx_main-LOCAL-ZTG",
|
|
5204
|
-
srcChain: "hydradx_main",
|
|
5205
|
-
destChain: "hydradx_main",
|
|
5206
|
-
path: "SWAP"
|
|
5207
|
-
},
|
|
5208
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-INTR": {
|
|
5209
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5210
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
5211
|
-
srcChain: "hydradx_main",
|
|
5212
|
-
destChain: "hydradx_main",
|
|
5213
|
-
path: "SWAP"
|
|
5214
|
-
},
|
|
5215
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-USDT": {
|
|
5216
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5217
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
5218
|
-
srcChain: "hydradx_main",
|
|
5219
|
-
destChain: "hydradx_main",
|
|
5220
|
-
path: "SWAP"
|
|
5221
|
-
},
|
|
5222
|
-
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-ASTR": {
|
|
5223
|
-
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
5224
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
5225
|
-
srcChain: "hydradx_main",
|
|
5226
|
-
destChain: "hydradx_main",
|
|
5227
|
-
path: "SWAP"
|
|
5228
|
-
},
|
|
5229
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-4Pool": {
|
|
5230
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5231
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
5232
|
-
srcChain: "hydradx_main",
|
|
5233
|
-
destChain: "hydradx_main",
|
|
5234
|
-
path: "SWAP"
|
|
5235
|
-
},
|
|
5236
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-NATIVE-HDX": {
|
|
5237
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5238
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
5239
|
-
srcChain: "hydradx_main",
|
|
5240
|
-
destChain: "hydradx_main",
|
|
5241
|
-
path: "SWAP"
|
|
5242
|
-
},
|
|
5243
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-KILT": {
|
|
5244
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5245
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
5246
|
-
srcChain: "hydradx_main",
|
|
5247
|
-
destChain: "hydradx_main",
|
|
5248
|
-
path: "SWAP"
|
|
5249
|
-
},
|
|
5250
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-WETH": {
|
|
5251
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5252
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
5253
|
-
srcChain: "hydradx_main",
|
|
5254
|
-
destChain: "hydradx_main",
|
|
5255
|
-
path: "SWAP"
|
|
5256
|
-
},
|
|
5257
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-MYTH": {
|
|
5258
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5259
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
5260
|
-
srcChain: "hydradx_main",
|
|
5261
|
-
destChain: "hydradx_main",
|
|
5262
|
-
path: "SWAP"
|
|
5263
|
-
},
|
|
5264
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-2Pool": {
|
|
5265
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5266
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
5267
|
-
srcChain: "hydradx_main",
|
|
5268
|
-
destChain: "hydradx_main",
|
|
5269
|
-
path: "SWAP"
|
|
5270
|
-
},
|
|
5271
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-GLMR": {
|
|
5272
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5273
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
5274
|
-
srcChain: "hydradx_main",
|
|
5275
|
-
destChain: "hydradx_main",
|
|
5276
|
-
path: "SWAP"
|
|
5277
|
-
},
|
|
5278
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-WUD": {
|
|
5279
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5280
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
5281
|
-
srcChain: "hydradx_main",
|
|
5282
|
-
destChain: "hydradx_main",
|
|
5283
|
-
path: "SWAP"
|
|
5284
|
-
},
|
|
5285
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-BNC": {
|
|
5286
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5287
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
5288
|
-
srcChain: "hydradx_main",
|
|
5289
|
-
destChain: "hydradx_main",
|
|
5290
|
-
path: "SWAP"
|
|
5291
|
-
},
|
|
5292
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-vASTR": {
|
|
5293
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5294
|
-
destAsset: "hydradx_main-LOCAL-vASTR",
|
|
5295
|
-
srcChain: "hydradx_main",
|
|
5296
|
-
destChain: "hydradx_main",
|
|
5297
|
-
path: "SWAP"
|
|
5298
|
-
},
|
|
5299
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-vDOT": {
|
|
5300
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5301
|
-
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
5302
|
-
srcChain: "hydradx_main",
|
|
5303
|
-
destChain: "hydradx_main",
|
|
5304
|
-
path: "SWAP"
|
|
5305
|
-
},
|
|
5306
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-CFG": {
|
|
5307
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5308
|
-
destAsset: "hydradx_main-LOCAL-CFG",
|
|
5309
|
-
srcChain: "hydradx_main",
|
|
5310
|
-
destChain: "hydradx_main",
|
|
5311
|
-
path: "SWAP"
|
|
5312
|
-
},
|
|
5313
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-CRU": {
|
|
5314
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5315
|
-
destAsset: "hydradx_main-LOCAL-CRU",
|
|
5316
|
-
srcChain: "hydradx_main",
|
|
5317
|
-
destChain: "hydradx_main",
|
|
5318
|
-
path: "SWAP"
|
|
5319
|
-
},
|
|
5320
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-2-Pool": {
|
|
5321
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5322
|
-
destAsset: "hydradx_main-LOCAL-2-Pool",
|
|
5323
|
-
srcChain: "hydradx_main",
|
|
5324
|
-
destChain: "hydradx_main",
|
|
5325
|
-
path: "SWAP"
|
|
5326
|
-
},
|
|
5327
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-DOT": {
|
|
5328
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5329
|
-
destAsset: "hydradx_main-LOCAL-DOT",
|
|
5330
|
-
srcChain: "hydradx_main",
|
|
5331
|
-
destChain: "hydradx_main",
|
|
5332
|
-
path: "SWAP"
|
|
5333
|
-
},
|
|
5334
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-SUB": {
|
|
5335
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5336
|
-
destAsset: "hydradx_main-LOCAL-SUB",
|
|
5337
|
-
srcChain: "hydradx_main",
|
|
5338
|
-
destChain: "hydradx_main",
|
|
5339
|
-
path: "SWAP"
|
|
5340
|
-
},
|
|
5341
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-PHA": {
|
|
5342
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5343
|
-
destAsset: "hydradx_main-LOCAL-PHA",
|
|
5344
|
-
srcChain: "hydradx_main",
|
|
5345
|
-
destChain: "hydradx_main",
|
|
5346
|
-
path: "SWAP"
|
|
5347
|
-
},
|
|
5348
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-INTR": {
|
|
5349
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5350
|
-
destAsset: "hydradx_main-LOCAL-INTR",
|
|
5351
|
-
srcChain: "hydradx_main",
|
|
5352
|
-
destChain: "hydradx_main",
|
|
5353
|
-
path: "SWAP"
|
|
5354
|
-
},
|
|
5355
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-USDT": {
|
|
5356
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5357
|
-
destAsset: "hydradx_main-LOCAL-USDT",
|
|
5358
|
-
srcChain: "hydradx_main",
|
|
5359
|
-
destChain: "hydradx_main",
|
|
5360
|
-
path: "SWAP"
|
|
5361
|
-
},
|
|
5362
|
-
"hydradx_main-LOCAL-ZTG___hydradx_main-LOCAL-ASTR": {
|
|
5363
|
-
srcAsset: "hydradx_main-LOCAL-ZTG",
|
|
5364
|
-
destAsset: "hydradx_main-LOCAL-ASTR",
|
|
5365
|
-
srcChain: "hydradx_main",
|
|
5366
|
-
destChain: "hydradx_main",
|
|
5367
|
-
path: "SWAP"
|
|
5368
|
-
},
|
|
5369
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-4Pool": {
|
|
5370
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5371
|
-
destAsset: "hydradx_main-LOCAL-4Pool",
|
|
5372
|
-
srcChain: "hydradx_main",
|
|
5373
|
-
destChain: "hydradx_main",
|
|
5374
|
-
path: "SWAP"
|
|
5375
|
-
},
|
|
5376
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-NATIVE-HDX": {
|
|
5377
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5378
|
-
destAsset: "hydradx_main-NATIVE-HDX",
|
|
5379
|
-
srcChain: "hydradx_main",
|
|
5380
|
-
destChain: "hydradx_main",
|
|
5381
|
-
path: "SWAP"
|
|
5382
|
-
},
|
|
5383
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-KILT": {
|
|
5384
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5385
|
-
destAsset: "hydradx_main-LOCAL-KILT",
|
|
5386
|
-
srcChain: "hydradx_main",
|
|
5387
|
-
destChain: "hydradx_main",
|
|
5388
|
-
path: "SWAP"
|
|
5389
|
-
},
|
|
5390
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-WETH": {
|
|
5391
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5392
|
-
destAsset: "hydradx_main-LOCAL-WETH",
|
|
5393
|
-
srcChain: "hydradx_main",
|
|
5394
|
-
destChain: "hydradx_main",
|
|
5395
|
-
path: "SWAP"
|
|
5396
|
-
},
|
|
5397
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-MYTH": {
|
|
5398
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5399
|
-
destAsset: "hydradx_main-LOCAL-MYTH",
|
|
5400
|
-
srcChain: "hydradx_main",
|
|
5401
|
-
destChain: "hydradx_main",
|
|
5402
|
-
path: "SWAP"
|
|
5403
|
-
},
|
|
5404
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-2Pool": {
|
|
5405
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5406
|
-
destAsset: "hydradx_main-LOCAL-2Pool",
|
|
5407
|
-
srcChain: "hydradx_main",
|
|
5408
|
-
destChain: "hydradx_main",
|
|
5409
|
-
path: "SWAP"
|
|
5410
|
-
},
|
|
5411
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-GLMR": {
|
|
5412
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5413
|
-
destAsset: "hydradx_main-LOCAL-GLMR",
|
|
5414
|
-
srcChain: "hydradx_main",
|
|
5415
|
-
destChain: "hydradx_main",
|
|
5416
|
-
path: "SWAP"
|
|
5417
|
-
},
|
|
5418
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-WUD": {
|
|
5419
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5420
|
-
destAsset: "hydradx_main-LOCAL-WUD",
|
|
5421
|
-
srcChain: "hydradx_main",
|
|
5422
|
-
destChain: "hydradx_main",
|
|
5423
|
-
path: "SWAP"
|
|
5424
|
-
},
|
|
5425
|
-
"hydradx_main-LOCAL-INTR___hydradx_main-LOCAL-BNC": {
|
|
5426
|
-
srcAsset: "hydradx_main-LOCAL-INTR",
|
|
5427
|
-
destAsset: "hydradx_main-LOCAL-BNC",
|
|
5428
|
-
srcChain: "hydradx_main",
|
|
5429
|
-
destChain: "hydradx_main",
|
|
5430
|
-
path: "SWAP"
|
|
3415
|
+
path: "XCM"
|
|
5431
3416
|
},
|
|
5432
|
-
"hydradx_main-LOCAL-
|
|
5433
|
-
srcAsset: "hydradx_main-LOCAL-
|
|
5434
|
-
destAsset: "hydradx_main-LOCAL-
|
|
3417
|
+
"hydradx_main-LOCAL-WUD___hydradx_main-LOCAL-DOT": {
|
|
3418
|
+
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
3419
|
+
destAsset: "hydradx_main-LOCAL-DOT",
|
|
5435
3420
|
srcChain: "hydradx_main",
|
|
5436
3421
|
destChain: "hydradx_main",
|
|
5437
3422
|
path: "SWAP"
|
|
5438
3423
|
},
|
|
5439
|
-
"hydradx_main-LOCAL-
|
|
5440
|
-
srcAsset: "hydradx_main-LOCAL-
|
|
5441
|
-
destAsset: "hydradx_main-
|
|
3424
|
+
"hydradx_main-LOCAL-WUD___hydradx_main-NATIVE-HDX": {
|
|
3425
|
+
srcAsset: "hydradx_main-LOCAL-WUD",
|
|
3426
|
+
destAsset: "hydradx_main-NATIVE-HDX",
|
|
5442
3427
|
srcChain: "hydradx_main",
|
|
5443
3428
|
destChain: "hydradx_main",
|
|
5444
3429
|
path: "SWAP"
|
|
5445
3430
|
},
|
|
5446
|
-
"
|
|
5447
|
-
srcAsset: "
|
|
5448
|
-
destAsset: "
|
|
5449
|
-
srcChain: "
|
|
5450
|
-
destChain: "
|
|
5451
|
-
path: "
|
|
3431
|
+
"statemint-LOCAL-KSM___statemine-NATIVE-KSM": {
|
|
3432
|
+
srcAsset: "statemint-LOCAL-KSM",
|
|
3433
|
+
destAsset: "statemine-NATIVE-KSM",
|
|
3434
|
+
srcChain: "statemint",
|
|
3435
|
+
destChain: "statemine",
|
|
3436
|
+
path: "XCM"
|
|
5452
3437
|
},
|
|
5453
|
-
"
|
|
5454
|
-
srcAsset: "
|
|
5455
|
-
destAsset: "
|
|
5456
|
-
srcChain: "
|
|
5457
|
-
destChain: "
|
|
5458
|
-
path: "
|
|
3438
|
+
"statemine-LOCAL-DOT___statemint-NATIVE-DOT": {
|
|
3439
|
+
srcAsset: "statemine-LOCAL-DOT",
|
|
3440
|
+
destAsset: "statemint-NATIVE-DOT",
|
|
3441
|
+
srcChain: "statemine",
|
|
3442
|
+
destChain: "statemint",
|
|
3443
|
+
path: "XCM"
|
|
5459
3444
|
},
|
|
5460
|
-
"
|
|
5461
|
-
srcAsset: "
|
|
5462
|
-
destAsset: "
|
|
5463
|
-
srcChain: "
|
|
5464
|
-
destChain: "
|
|
5465
|
-
path: "
|
|
3445
|
+
"sepolia_ethereum-ERC20-WETH-0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14___rococo_assethub-LOCAL-WETH": {
|
|
3446
|
+
srcAsset: "sepolia_ethereum-ERC20-WETH-0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14",
|
|
3447
|
+
destAsset: "rococo_assethub-LOCAL-WETH",
|
|
3448
|
+
srcChain: "sepolia_ethereum",
|
|
3449
|
+
destChain: "rococo_assethub",
|
|
3450
|
+
path: "XCM"
|
|
5466
3451
|
},
|
|
5467
|
-
"
|
|
5468
|
-
srcAsset: "
|
|
5469
|
-
destAsset: "
|
|
5470
|
-
srcChain: "
|
|
5471
|
-
destChain: "
|
|
3452
|
+
"rococo_assethub-LOCAL-USDt___rococo_assethub-NATIVE-ROC": {
|
|
3453
|
+
srcAsset: "rococo_assethub-LOCAL-USDt",
|
|
3454
|
+
destAsset: "rococo_assethub-NATIVE-ROC",
|
|
3455
|
+
srcChain: "rococo_assethub",
|
|
3456
|
+
destChain: "rococo_assethub",
|
|
5472
3457
|
path: "SWAP"
|
|
5473
3458
|
},
|
|
5474
|
-
"
|
|
5475
|
-
srcAsset: "
|
|
5476
|
-
destAsset: "
|
|
5477
|
-
srcChain: "
|
|
5478
|
-
destChain: "
|
|
5479
|
-
path: "
|
|
3459
|
+
"statemint-LOCAL-WETH___ethereum-ERC20-WETH-0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
|
3460
|
+
srcAsset: "statemint-LOCAL-WETH",
|
|
3461
|
+
destAsset: "ethereum-ERC20-WETH-0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
3462
|
+
srcChain: "statemint",
|
|
3463
|
+
destChain: "ethereum",
|
|
3464
|
+
path: "XCM"
|
|
5480
3465
|
},
|
|
5481
|
-
"
|
|
5482
|
-
srcAsset: "
|
|
5483
|
-
destAsset: "
|
|
5484
|
-
srcChain: "
|
|
5485
|
-
destChain: "
|
|
5486
|
-
path: "
|
|
3466
|
+
"statemint-LOCAL-MYTH___ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003": {
|
|
3467
|
+
srcAsset: "statemint-LOCAL-MYTH",
|
|
3468
|
+
destAsset: "ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003",
|
|
3469
|
+
srcChain: "statemint",
|
|
3470
|
+
destChain: "ethereum",
|
|
3471
|
+
path: "XCM"
|
|
5487
3472
|
},
|
|
5488
|
-
"
|
|
5489
|
-
srcAsset: "
|
|
5490
|
-
destAsset: "
|
|
5491
|
-
srcChain: "
|
|
5492
|
-
destChain: "
|
|
5493
|
-
path: "
|
|
3473
|
+
"statemint-LOCAL-MYTH___mythos-NATIVE-MYTH": {
|
|
3474
|
+
srcAsset: "statemint-LOCAL-MYTH",
|
|
3475
|
+
destAsset: "mythos-NATIVE-MYTH",
|
|
3476
|
+
srcChain: "statemint",
|
|
3477
|
+
destChain: "mythos",
|
|
3478
|
+
path: "XCM"
|
|
5494
3479
|
},
|
|
5495
|
-
"
|
|
5496
|
-
srcAsset: "
|
|
5497
|
-
destAsset: "
|
|
5498
|
-
srcChain: "
|
|
5499
|
-
destChain: "
|
|
5500
|
-
path: "
|
|
3480
|
+
"ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003___statemint-LOCAL-MYTH": {
|
|
3481
|
+
srcAsset: "ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003",
|
|
3482
|
+
destAsset: "statemint-LOCAL-MYTH",
|
|
3483
|
+
srcChain: "ethereum",
|
|
3484
|
+
destChain: "statemint",
|
|
3485
|
+
path: "XCM"
|
|
5501
3486
|
},
|
|
5502
|
-
"
|
|
5503
|
-
srcAsset: "
|
|
5504
|
-
destAsset: "
|
|
5505
|
-
srcChain: "
|
|
5506
|
-
destChain: "
|
|
5507
|
-
path: "
|
|
3487
|
+
"statemint-LOCAL-WBTC___ethereum-ERC20-WBTC-0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599": {
|
|
3488
|
+
srcAsset: "statemint-LOCAL-WBTC",
|
|
3489
|
+
destAsset: "ethereum-ERC20-WBTC-0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
|
|
3490
|
+
srcChain: "statemint",
|
|
3491
|
+
destChain: "ethereum",
|
|
3492
|
+
path: "XCM"
|
|
5508
3493
|
},
|
|
5509
|
-
"
|
|
5510
|
-
srcAsset: "
|
|
5511
|
-
destAsset: "
|
|
5512
|
-
srcChain: "
|
|
5513
|
-
destChain: "
|
|
5514
|
-
path: "
|
|
3494
|
+
"statemint-LOCAL-SHIB___ethereum-ERC20-SHIB-0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE": {
|
|
3495
|
+
srcAsset: "statemint-LOCAL-SHIB",
|
|
3496
|
+
destAsset: "ethereum-ERC20-SHIB-0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE",
|
|
3497
|
+
srcChain: "statemint",
|
|
3498
|
+
destChain: "ethereum",
|
|
3499
|
+
path: "XCM"
|
|
5515
3500
|
},
|
|
5516
|
-
"
|
|
5517
|
-
srcAsset: "
|
|
5518
|
-
destAsset: "
|
|
5519
|
-
srcChain: "
|
|
5520
|
-
destChain: "
|
|
5521
|
-
path: "
|
|
3501
|
+
"statemint-LOCAL-PEPE___ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933": {
|
|
3502
|
+
srcAsset: "statemint-LOCAL-PEPE",
|
|
3503
|
+
destAsset: "ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933",
|
|
3504
|
+
srcChain: "statemint",
|
|
3505
|
+
destChain: "ethereum",
|
|
3506
|
+
path: "XCM"
|
|
5522
3507
|
},
|
|
5523
|
-
"
|
|
5524
|
-
srcAsset: "
|
|
5525
|
-
destAsset: "
|
|
5526
|
-
srcChain: "
|
|
5527
|
-
destChain: "
|
|
5528
|
-
path: "
|
|
3508
|
+
"ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933___statemint-LOCAL-PEPE": {
|
|
3509
|
+
srcAsset: "ethereum-ERC20-PEPE-0x6982508145454Ce325dDbE47a25d4ec3d2311933",
|
|
3510
|
+
destAsset: "statemint-LOCAL-PEPE",
|
|
3511
|
+
srcChain: "ethereum",
|
|
3512
|
+
destChain: "statemint",
|
|
3513
|
+
path: "XCM"
|
|
5529
3514
|
},
|
|
5530
|
-
"
|
|
5531
|
-
srcAsset: "
|
|
5532
|
-
destAsset: "
|
|
5533
|
-
srcChain: "
|
|
5534
|
-
destChain: "
|
|
5535
|
-
path: "
|
|
3515
|
+
"statemint-LOCAL-TON___ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1": {
|
|
3516
|
+
srcAsset: "statemint-LOCAL-TON",
|
|
3517
|
+
destAsset: "ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1",
|
|
3518
|
+
srcChain: "statemint",
|
|
3519
|
+
destChain: "ethereum",
|
|
3520
|
+
path: "XCM"
|
|
5536
3521
|
},
|
|
5537
|
-
"
|
|
5538
|
-
srcAsset: "
|
|
5539
|
-
destAsset: "
|
|
5540
|
-
srcChain: "
|
|
5541
|
-
destChain: "
|
|
5542
|
-
path: "
|
|
3522
|
+
"ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1___statemint-LOCAL-TON": {
|
|
3523
|
+
srcAsset: "ethereum-ERC20-TON-0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1",
|
|
3524
|
+
destAsset: "statemint-LOCAL-TON",
|
|
3525
|
+
srcChain: "ethereum",
|
|
3526
|
+
destChain: "statemint",
|
|
3527
|
+
path: "XCM"
|
|
5543
3528
|
},
|
|
5544
|
-
"
|
|
5545
|
-
srcAsset: "
|
|
5546
|
-
destAsset: "
|
|
3529
|
+
"statemint-LOCAL-wstETH___ethereum-ERC20-wstETH-0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0": {
|
|
3530
|
+
srcAsset: "statemint-LOCAL-wstETH",
|
|
3531
|
+
destAsset: "ethereum-ERC20-wstETH-0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0",
|
|
3532
|
+
srcChain: "statemint",
|
|
3533
|
+
destChain: "ethereum",
|
|
3534
|
+
path: "XCM"
|
|
3535
|
+
},
|
|
3536
|
+
"statemint-LOCAL-tBTC___ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88": {
|
|
3537
|
+
srcAsset: "statemint-LOCAL-tBTC",
|
|
3538
|
+
destAsset: "ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88",
|
|
3539
|
+
srcChain: "statemint",
|
|
3540
|
+
destChain: "ethereum",
|
|
3541
|
+
path: "XCM"
|
|
3542
|
+
},
|
|
3543
|
+
"ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88___statemint-LOCAL-tBTC": {
|
|
3544
|
+
srcAsset: "ethereum-ERC20-tBTC-0x18084fbA666a33d37592fA2633fD49a74DD93a88",
|
|
3545
|
+
destAsset: "statemint-LOCAL-tBTC",
|
|
3546
|
+
srcChain: "ethereum",
|
|
3547
|
+
destChain: "statemint",
|
|
3548
|
+
path: "XCM"
|
|
3549
|
+
},
|
|
3550
|
+
"hydradx_main-LOCAL-PHA___hydradx_main-LOCAL-DOT": {
|
|
3551
|
+
srcAsset: "hydradx_main-LOCAL-PHA",
|
|
3552
|
+
destAsset: "hydradx_main-LOCAL-DOT",
|
|
5547
3553
|
srcChain: "hydradx_main",
|
|
5548
3554
|
destChain: "hydradx_main",
|
|
5549
3555
|
path: "SWAP"
|
|
5550
3556
|
},
|
|
5551
|
-
"hydradx_main-LOCAL-
|
|
5552
|
-
srcAsset: "hydradx_main-LOCAL-
|
|
5553
|
-
destAsset: "
|
|
3557
|
+
"hydradx_main-LOCAL-MYTH___mythos-NATIVE-MYTH": {
|
|
3558
|
+
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3559
|
+
destAsset: "mythos-NATIVE-MYTH",
|
|
5554
3560
|
srcChain: "hydradx_main",
|
|
5555
|
-
destChain: "
|
|
5556
|
-
path: "
|
|
3561
|
+
destChain: "mythos",
|
|
3562
|
+
path: "XCM"
|
|
5557
3563
|
},
|
|
5558
|
-
"hydradx_main-LOCAL-
|
|
5559
|
-
srcAsset: "hydradx_main-LOCAL-
|
|
5560
|
-
destAsset: "hydradx_main-LOCAL-
|
|
3564
|
+
"hydradx_main-LOCAL-MYTH___hydradx_main-LOCAL-DOT": {
|
|
3565
|
+
srcAsset: "hydradx_main-LOCAL-MYTH",
|
|
3566
|
+
destAsset: "hydradx_main-LOCAL-DOT",
|
|
5561
3567
|
srcChain: "hydradx_main",
|
|
5562
3568
|
destChain: "hydradx_main",
|
|
5563
3569
|
path: "SWAP"
|
|
5564
3570
|
},
|
|
5565
|
-
"
|
|
5566
|
-
srcAsset: "
|
|
5567
|
-
destAsset: "
|
|
5568
|
-
srcChain: "
|
|
5569
|
-
destChain: "
|
|
3571
|
+
"ethereum-ERC20-AVAIL-0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8___avail_mainnet-NATIVE-AVAIL": {
|
|
3572
|
+
srcAsset: "ethereum-ERC20-AVAIL-0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8",
|
|
3573
|
+
destAsset: "avail_mainnet-NATIVE-AVAIL",
|
|
3574
|
+
srcChain: "ethereum",
|
|
3575
|
+
destChain: "avail_mainnet",
|
|
3576
|
+
path: "XCM"
|
|
3577
|
+
},
|
|
3578
|
+
"polygonZkEvm-NATIVE-ETH___ethereum-NATIVE-ETH": {
|
|
3579
|
+
srcAsset: "polygonZkEvm-NATIVE-ETH",
|
|
3580
|
+
destAsset: "ethereum-NATIVE-ETH",
|
|
3581
|
+
srcChain: "polygonZkEvm",
|
|
3582
|
+
destChain: "ethereum",
|
|
3583
|
+
path: "XCM"
|
|
3584
|
+
},
|
|
3585
|
+
"base_sepolia-NATIVE-ETH___sepolia_ethereum-NATIVE-ETH": {
|
|
3586
|
+
srcAsset: "base_sepolia-NATIVE-ETH",
|
|
3587
|
+
destAsset: "sepolia_ethereum-NATIVE-ETH",
|
|
3588
|
+
srcChain: "base_sepolia",
|
|
3589
|
+
destChain: "sepolia_ethereum",
|
|
5570
3590
|
path: "SWAP"
|
|
5571
3591
|
},
|
|
5572
|
-
"
|
|
5573
|
-
srcAsset: "
|
|
5574
|
-
destAsset: "
|
|
5575
|
-
srcChain: "
|
|
5576
|
-
destChain: "
|
|
3592
|
+
"base_sepolia-NATIVE-ETH___sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238": {
|
|
3593
|
+
srcAsset: "base_sepolia-NATIVE-ETH",
|
|
3594
|
+
destAsset: "sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
|
|
3595
|
+
srcChain: "base_sepolia",
|
|
3596
|
+
destChain: "sepolia_ethereum",
|
|
5577
3597
|
path: "SWAP"
|
|
5578
3598
|
},
|
|
5579
|
-
"
|
|
5580
|
-
srcAsset: "
|
|
5581
|
-
destAsset: "
|
|
5582
|
-
srcChain: "
|
|
5583
|
-
destChain: "
|
|
3599
|
+
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___sepolia_ethereum-NATIVE-ETH": {
|
|
3600
|
+
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3601
|
+
destAsset: "sepolia_ethereum-NATIVE-ETH",
|
|
3602
|
+
srcChain: "base_sepolia",
|
|
3603
|
+
destChain: "sepolia_ethereum",
|
|
5584
3604
|
path: "SWAP"
|
|
5585
3605
|
},
|
|
5586
|
-
"
|
|
5587
|
-
srcAsset: "
|
|
5588
|
-
destAsset: "
|
|
3606
|
+
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238": {
|
|
3607
|
+
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3608
|
+
destAsset: "sepolia_ethereum-ERC20-USDC-0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
|
|
3609
|
+
srcChain: "base_sepolia",
|
|
3610
|
+
destChain: "sepolia_ethereum",
|
|
3611
|
+
path: "XCM"
|
|
3612
|
+
},
|
|
3613
|
+
"base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e___arbitrum_sepolia-ERC20-USDC-0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d": {
|
|
3614
|
+
srcAsset: "base_sepolia-ERC20-USDC-0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
3615
|
+
destAsset: "arbitrum_sepolia-ERC20-USDC-0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
|
|
3616
|
+
srcChain: "base_sepolia",
|
|
3617
|
+
destChain: "arbitrum_sepolia",
|
|
3618
|
+
path: "XCM"
|
|
3619
|
+
},
|
|
3620
|
+
"hydradx_main-LOCAL-vASTR___hydradx_main-LOCAL-vDOT": {
|
|
3621
|
+
srcAsset: "hydradx_main-LOCAL-vASTR",
|
|
3622
|
+
destAsset: "hydradx_main-LOCAL-vDOT",
|
|
5589
3623
|
srcChain: "hydradx_main",
|
|
5590
3624
|
destChain: "hydradx_main",
|
|
5591
3625
|
path: "SWAP"
|
|
@@ -18122,22 +16156,6 @@
|
|
|
18122
16156
|
multiChainAsset: null,
|
|
18123
16157
|
hasValue: false,
|
|
18124
16158
|
icon: "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/sepolia_ethereum-erc20-flip-0xcd079eab6b5443b545788fd210c8800feadd87fa.png"
|
|
18125
|
-
},
|
|
18126
|
-
"hydradx_main-LOCAL-2-Pool": {
|
|
18127
|
-
originChain: "hydradx_main",
|
|
18128
|
-
slug: "hydradx_main-LOCAL-2-Pool",
|
|
18129
|
-
name: "USDT- USDC",
|
|
18130
|
-
symbol: "2-Pool",
|
|
18131
|
-
decimals: 18,
|
|
18132
|
-
priceId: null,
|
|
18133
|
-
minAmount: "1000",
|
|
18134
|
-
assetType: "LOCAL",
|
|
18135
|
-
metadata: {
|
|
18136
|
-
assetId: "102"
|
|
18137
|
-
},
|
|
18138
|
-
multiChainAsset: null,
|
|
18139
|
-
hasValue: true,
|
|
18140
|
-
icon: "https://dev.sw-chain-list-assets.pages.dev/assets/chain-assets/hydradx_main-local-2-pool.png"
|
|
18141
16159
|
},
|
|
18142
16160
|
"base_mainnet-ERC20-USDC-0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913": {
|
|
18143
16161
|
originChain: "base_mainnet",
|
|
@@ -31213,6 +29231,22 @@
|
|
|
31213
29231
|
COMMON_ASSETS["USDT_ETHEREUM"] = "ethereum-ERC20-USDT-0xdAC17F958D2ee523a2206206994597C13D831ec7";
|
|
31214
29232
|
})(exports.COMMON_ASSETS || (exports.COMMON_ASSETS = {}));
|
|
31215
29233
|
const _DEFAULT_CHAINS = [exports.COMMON_CHAIN_SLUGS.POLKADOT, exports.COMMON_CHAIN_SLUGS.KUSAMA, exports.COMMON_CHAIN_SLUGS.ETHEREUM];
|
|
29234
|
+
function md5HashChainInfo(data) {
|
|
29235
|
+
const {
|
|
29236
|
+
chainStatus,
|
|
29237
|
+
icon,
|
|
29238
|
+
providers,
|
|
29239
|
+
...chainBaseInfo
|
|
29240
|
+
} = data;
|
|
29241
|
+
return Md5.hashStr(JSON.stringify(chainBaseInfo));
|
|
29242
|
+
}
|
|
29243
|
+
function md5HashChainAsset(data) {
|
|
29244
|
+
const {
|
|
29245
|
+
icon,
|
|
29246
|
+
...assetBaseInfo
|
|
29247
|
+
} = data;
|
|
29248
|
+
return Md5.hashStr(JSON.stringify(assetBaseInfo));
|
|
29249
|
+
}
|
|
31216
29250
|
|
|
31217
29251
|
exports.AssetLogoMap = AssetLogoMap;
|
|
31218
29252
|
exports.AssetRefMap = AssetRefMap;
|
|
@@ -31221,5 +29255,7 @@
|
|
|
31221
29255
|
exports.ChainLogoMap = ChainLogoMap;
|
|
31222
29256
|
exports.MultiChainAssetMap = MultiChainAssetMap;
|
|
31223
29257
|
exports._DEFAULT_CHAINS = _DEFAULT_CHAINS;
|
|
29258
|
+
exports.md5HashChainAsset = md5HashChainAsset;
|
|
29259
|
+
exports.md5HashChainInfo = md5HashChainInfo;
|
|
31224
29260
|
|
|
31225
29261
|
}));
|