@subwallet/chain-list 0.2.113-beta.0-pr-549-cace5a0a → 0.2.113-beta.10-pr-555-df70e812

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.
@@ -6,336 +6,142 @@
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();
9
+ const c = new Int32Array(4);
10
+ class h {
11
+ static hashStr(i, a = !1) {
12
+ return this.onePassHasher.start().appendStr(i).end(a);
13
+ }
14
+ static hashAsciiStr(i, a = !1) {
15
+ return this.onePassHasher.start().appendAsciiStr(i).end(a);
16
+ }
17
+ static stateIdentity = new Int32Array([
18
+ 1732584193,
19
+ -271733879,
20
+ -1732584194,
21
+ 271733878
22
+ ]);
23
+ static buffer32Identity = new Int32Array([
24
+ 0,
25
+ 0,
26
+ 0,
27
+ 0,
28
+ 0,
29
+ 0,
30
+ 0,
31
+ 0,
32
+ 0,
33
+ 0,
34
+ 0,
35
+ 0,
36
+ 0,
37
+ 0,
38
+ 0,
39
+ 0
40
+ ]);
41
+ static hexChars = "0123456789abcdef";
42
+ static hexOut = [];
43
+ static onePassHasher = new h();
44
+ static _hex(i) {
45
+ const a = h.hexChars, t = h.hexOut;
46
+ let e, s, r, n;
47
+ for (n = 0; n < 4; n += 1)
48
+ for (s = n * 8, e = i[n], r = 0; r < 8; r += 2)
49
+ t[s + 1 + r] = a.charAt(e & 15), e >>>= 4, t[s + 0 + r] = a.charAt(e & 15), e >>>= 4;
50
+ return t.join("");
51
+ }
52
+ static _md5cycle(i, a) {
53
+ let t = i[0], e = i[1], s = i[2], r = i[3];
54
+ t += (e & s | ~e & r) + a[0] - 680876936 | 0, t = (t << 7 | t >>> 25) + e | 0, r += (t & e | ~t & s) + a[1] - 389564586 | 0, r = (r << 12 | r >>> 20) + t | 0, s += (r & t | ~r & e) + a[2] + 606105819 | 0, s = (s << 17 | s >>> 15) + r | 0, e += (s & r | ~s & t) + a[3] - 1044525330 | 0, e = (e << 22 | e >>> 10) + s | 0, t += (e & s | ~e & r) + a[4] - 176418897 | 0, t = (t << 7 | t >>> 25) + e | 0, r += (t & e | ~t & s) + a[5] + 1200080426 | 0, r = (r << 12 | r >>> 20) + t | 0, s += (r & t | ~r & e) + a[6] - 1473231341 | 0, s = (s << 17 | s >>> 15) + r | 0, e += (s & r | ~s & t) + a[7] - 45705983 | 0, e = (e << 22 | e >>> 10) + s | 0, t += (e & s | ~e & r) + a[8] + 1770035416 | 0, t = (t << 7 | t >>> 25) + e | 0, r += (t & e | ~t & s) + a[9] - 1958414417 | 0, r = (r << 12 | r >>> 20) + t | 0, s += (r & t | ~r & e) + a[10] - 42063 | 0, s = (s << 17 | s >>> 15) + r | 0, e += (s & r | ~s & t) + a[11] - 1990404162 | 0, e = (e << 22 | e >>> 10) + s | 0, t += (e & s | ~e & r) + a[12] + 1804603682 | 0, t = (t << 7 | t >>> 25) + e | 0, r += (t & e | ~t & s) + a[13] - 40341101 | 0, r = (r << 12 | r >>> 20) + t | 0, s += (r & t | ~r & e) + a[14] - 1502002290 | 0, s = (s << 17 | s >>> 15) + r | 0, e += (s & r | ~s & t) + a[15] + 1236535329 | 0, e = (e << 22 | e >>> 10) + s | 0, t += (e & r | s & ~r) + a[1] - 165796510 | 0, t = (t << 5 | t >>> 27) + e | 0, r += (t & s | e & ~s) + a[6] - 1069501632 | 0, r = (r << 9 | r >>> 23) + t | 0, s += (r & e | t & ~e) + a[11] + 643717713 | 0, s = (s << 14 | s >>> 18) + r | 0, e += (s & t | r & ~t) + a[0] - 373897302 | 0, e = (e << 20 | e >>> 12) + s | 0, t += (e & r | s & ~r) + a[5] - 701558691 | 0, t = (t << 5 | t >>> 27) + e | 0, r += (t & s | e & ~s) + a[10] + 38016083 | 0, r = (r << 9 | r >>> 23) + t | 0, s += (r & e | t & ~e) + a[15] - 660478335 | 0, s = (s << 14 | s >>> 18) + r | 0, e += (s & t | r & ~t) + a[4] - 405537848 | 0, e = (e << 20 | e >>> 12) + s | 0, t += (e & r | s & ~r) + a[9] + 568446438 | 0, t = (t << 5 | t >>> 27) + e | 0, r += (t & s | e & ~s) + a[14] - 1019803690 | 0, r = (r << 9 | r >>> 23) + t | 0, s += (r & e | t & ~e) + a[3] - 187363961 | 0, s = (s << 14 | s >>> 18) + r | 0, e += (s & t | r & ~t) + a[8] + 1163531501 | 0, e = (e << 20 | e >>> 12) + s | 0, t += (e & r | s & ~r) + a[13] - 1444681467 | 0, t = (t << 5 | t >>> 27) + e | 0, r += (t & s | e & ~s) + a[2] - 51403784 | 0, r = (r << 9 | r >>> 23) + t | 0, s += (r & e | t & ~e) + a[7] + 1735328473 | 0, s = (s << 14 | s >>> 18) + r | 0, e += (s & t | r & ~t) + a[12] - 1926607734 | 0, e = (e << 20 | e >>> 12) + s | 0, t += (e ^ s ^ r) + a[5] - 378558 | 0, t = (t << 4 | t >>> 28) + e | 0, r += (t ^ e ^ s) + a[8] - 2022574463 | 0, r = (r << 11 | r >>> 21) + t | 0, s += (r ^ t ^ e) + a[11] + 1839030562 | 0, s = (s << 16 | s >>> 16) + r | 0, e += (s ^ r ^ t) + a[14] - 35309556 | 0, e = (e << 23 | e >>> 9) + s | 0, t += (e ^ s ^ r) + a[1] - 1530992060 | 0, t = (t << 4 | t >>> 28) + e | 0, r += (t ^ e ^ s) + a[4] + 1272893353 | 0, r = (r << 11 | r >>> 21) + t | 0, s += (r ^ t ^ e) + a[7] - 155497632 | 0, s = (s << 16 | s >>> 16) + r | 0, e += (s ^ r ^ t) + a[10] - 1094730640 | 0, e = (e << 23 | e >>> 9) + s | 0, t += (e ^ s ^ r) + a[13] + 681279174 | 0, t = (t << 4 | t >>> 28) + e | 0, r += (t ^ e ^ s) + a[0] - 358537222 | 0, r = (r << 11 | r >>> 21) + t | 0, s += (r ^ t ^ e) + a[3] - 722521979 | 0, s = (s << 16 | s >>> 16) + r | 0, e += (s ^ r ^ t) + a[6] + 76029189 | 0, e = (e << 23 | e >>> 9) + s | 0, t += (e ^ s ^ r) + a[9] - 640364487 | 0, t = (t << 4 | t >>> 28) + e | 0, r += (t ^ e ^ s) + a[12] - 421815835 | 0, r = (r << 11 | r >>> 21) + t | 0, s += (r ^ t ^ e) + a[15] + 530742520 | 0, s = (s << 16 | s >>> 16) + r | 0, e += (s ^ r ^ t) + a[2] - 995338651 | 0, e = (e << 23 | e >>> 9) + s | 0, t += (s ^ (e | ~r)) + a[0] - 198630844 | 0, t = (t << 6 | t >>> 26) + e | 0, r += (e ^ (t | ~s)) + a[7] + 1126891415 | 0, r = (r << 10 | r >>> 22) + t | 0, s += (t ^ (r | ~e)) + a[14] - 1416354905 | 0, s = (s << 15 | s >>> 17) + r | 0, e += (r ^ (s | ~t)) + a[5] - 57434055 | 0, e = (e << 21 | e >>> 11) + s | 0, t += (s ^ (e | ~r)) + a[12] + 1700485571 | 0, t = (t << 6 | t >>> 26) + e | 0, r += (e ^ (t | ~s)) + a[3] - 1894986606 | 0, r = (r << 10 | r >>> 22) + t | 0, s += (t ^ (r | ~e)) + a[10] - 1051523 | 0, s = (s << 15 | s >>> 17) + r | 0, e += (r ^ (s | ~t)) + a[1] - 2054922799 | 0, e = (e << 21 | e >>> 11) + s | 0, t += (s ^ (e | ~r)) + a[8] + 1873313359 | 0, t = (t << 6 | t >>> 26) + e | 0, r += (e ^ (t | ~s)) + a[15] - 30611744 | 0, r = (r << 10 | r >>> 22) + t | 0, s += (t ^ (r | ~e)) + a[6] - 1560198380 | 0, s = (s << 15 | s >>> 17) + r | 0, e += (r ^ (s | ~t)) + a[13] + 1309151649 | 0, e = (e << 21 | e >>> 11) + s | 0, t += (s ^ (e | ~r)) + a[4] - 145523070 | 0, t = (t << 6 | t >>> 26) + e | 0, r += (e ^ (t | ~s)) + a[11] - 1120210379 | 0, r = (r << 10 | r >>> 22) + t | 0, s += (t ^ (r | ~e)) + a[2] + 718787259 | 0, s = (s << 15 | s >>> 17) + r | 0, e += (r ^ (s | ~t)) + a[9] - 343485551 | 0, e = (e << 21 | e >>> 11) + s | 0, i[0] = t + i[0] | 0, i[1] = e + i[1] | 0, i[2] = s + i[2] | 0, i[3] = r + i[3] | 0;
55
+ }
56
+ _dataLength = 0;
57
+ _bufferLength = 0;
58
+ _state = new Int32Array(4);
59
+ _buffer = new ArrayBuffer(68);
60
+ _buffer8;
61
+ _buffer32;
62
+ constructor() {
63
+ this._buffer8 = new Uint8Array(this._buffer, 0, 68), this._buffer32 = new Uint32Array(this._buffer, 0, 17), this.start();
64
+ }
65
+ start() {
66
+ return this._dataLength = 0, this._bufferLength = 0, this._state.set(h.stateIdentity), this;
67
+ }
68
+ appendStr(i) {
69
+ const a = this._buffer8, t = this._buffer32;
70
+ let e = this._bufferLength, s, r;
71
+ for (r = 0; r < i.length; r += 1) {
72
+ if (s = i.charCodeAt(r), s < 128)
73
+ a[e++] = s;
74
+ else if (s < 2048)
75
+ a[e++] = (s >>> 6) + 192, a[e++] = s & 63 | 128;
76
+ else if (s < 55296 || s > 56319)
77
+ a[e++] = (s >>> 12) + 224, a[e++] = s >>> 6 & 63 | 128, a[e++] = s & 63 | 128;
78
+ else {
79
+ if (s = (s - 55296) * 1024 + (i.charCodeAt(++r) - 56320) + 65536, s > 1114111)
80
+ throw new Error(
81
+ "Unicode standard supports code points up to U+10FFFF"
82
+ );
83
+ a[e++] = (s >>> 18) + 240, a[e++] = s >>> 12 & 63 | 128, a[e++] = s >>> 6 & 63 | 128, a[e++] = s & 63 | 128;
84
+ }
85
+ e >= 64 && (this._dataLength += 64, h._md5cycle(this._state, t), e -= 64, t[0] = t[16]);
18
86
  }
19
- static hashStr(str, raw = false) {
20
- return this.onePassHasher
21
- .start()
22
- .appendStr(str)
23
- .end(raw);
87
+ return this._bufferLength = e, this;
88
+ }
89
+ appendAsciiStr(i) {
90
+ const a = this._buffer8, t = this._buffer32;
91
+ let e = this._bufferLength, s, r = 0;
92
+ for (; ; ) {
93
+ for (s = Math.min(i.length - r, 64 - e); s--; )
94
+ a[e++] = i.charCodeAt(r++);
95
+ if (e < 64)
96
+ break;
97
+ this._dataLength += 64, h._md5cycle(this._state, t), e = 0;
24
98
  }
25
- static hashAsciiStr(str, raw = false) {
26
- return this.onePassHasher
27
- .start()
28
- .appendAsciiStr(str)
29
- .end(raw);
99
+ return this._bufferLength = e, this;
100
+ }
101
+ appendByteArray(i) {
102
+ const a = this._buffer8, t = this._buffer32;
103
+ let e = this._bufferLength, s, r = 0;
104
+ for (; ; ) {
105
+ for (s = Math.min(i.length - r, 64 - e); s--; )
106
+ a[e++] = i[r++];
107
+ if (e < 64)
108
+ break;
109
+ this._dataLength += 64, h._md5cycle(this._state, t), e = 0;
30
110
  }
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('');
111
+ return this._bufferLength = e, this;
112
+ }
113
+ getState() {
114
+ const i = this._state;
115
+ return {
116
+ buffer: String.fromCharCode.apply(null, Array.from(this._buffer8)),
117
+ buflen: this._bufferLength,
118
+ length: this._dataLength,
119
+ state: [i[0], i[1], i[2], i[3]]
120
+ };
121
+ }
122
+ setState(i) {
123
+ const a = i.buffer, t = i.state, e = this._state;
124
+ let s;
125
+ for (this._dataLength = i.length, this._bufferLength = i.buflen, e[0] = t[0], e[1] = t[1], e[2] = t[2], e[3] = t[3], s = 0; s < a.length; s += 1)
126
+ this._buffer8[s] = a.charCodeAt(s);
127
+ }
128
+ end(i = !1) {
129
+ const a = this._bufferLength, t = this._buffer8, e = this._buffer32, s = (a >> 2) + 1;
130
+ this._dataLength += a;
131
+ const r = this._dataLength * 8;
132
+ if (t[a] = 128, t[a + 1] = t[a + 2] = t[a + 3] = 0, e.set(h.buffer32Identity.subarray(s), s), a > 55 && (h._md5cycle(this._state, e), e.set(h.buffer32Identity)), r <= 4294967295)
133
+ e[14] = r;
134
+ else {
135
+ const n = r.toString(16).match(/(.*?)(.{0,8})$/);
136
+ if (n === null) return i ? c : "";
137
+ const o = parseInt(n[2], 16), _ = parseInt(n[1], 16) || 0;
138
+ e[14] = o, e[15] = _;
49
139
  }
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.');
140
+ return h._md5cycle(this._state, e), i ? this._state : h._hex(this._state);
141
+ }
338
142
  }
143
+ if (h.hashStr("hello") !== "5d41402abc4b2a76b9719d911017c592")
144
+ throw new Error("Md5 self test failed.");
339
145
 
340
146
  const _AssetLogoMap = {
341
147
  "default": "/assets/default.png",
@@ -724,7 +530,7 @@
724
530
  "moonbeam-erc721-exrp-0x515e20e6275ceefe19221fc53e77e38cc32b80fb": "/assets/chain-assets/moonbeam-erc721-exrp-0x515e20e6275ceefe19221fc53e77e38cc32b80fb.png",
725
531
  "moonbeam-erc721-moonpets-0x2159762693c629c5a44fc9bafd484f8b96713467": "/assets/chain-assets/moonbeam-erc721-moonpets-0x2159762693c629c5a44fc9bafd484f8b96713467.png",
726
532
  "vara_network-native-vara": "/assets/chain-assets/vara_network-native-vara.png",
727
- "polygon-erc20-usdt-0xc2132d05d31c914a87c6611c10748aeb04b58e8f": "/assets/chain-assets/polygon-erc20-usdt-0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png",
533
+ "polygon-erc20-usd₮0-0xc2132d05d31c914a87c6611c10748aeb04b58e8f": "/assets/chain-assets/polygon-erc20-usd₮0-0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png",
728
534
  "arbitrum_one-erc20-usd₮0-0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": "/assets/chain-assets/arbitrum_one-erc20-usd₮0-0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9.png",
729
535
  "optimism-erc20-usdt-0x94b008aa00579c1307b0ef2c499ad98a8ce58e58": "/assets/chain-assets/optimism-erc20-usdt-0x94b008aa00579c1307b0ef2c499ad98a8ce58e58.png",
730
536
  "tomochain-erc20-usdt-0x381b31409e4d220919b2cff012ed94d70135a59e": "/assets/chain-assets/tomochain-erc20-usdt-0x381b31409e4d220919b2cff012ed94d70135a59e.png",
@@ -1347,11 +1153,14 @@
1347
1153
  "binance-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": "/assets/chain-assets/binance-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png",
1348
1154
  "arbitrum_one-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": "/assets/chain-assets/arbitrum_one-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png",
1349
1155
  "base_mainnet-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": "/assets/chain-assets/base_mainnet-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png",
1156
+ "origintrail-local-trac": "/assets/chain-assets/origintrail-local-trac.png",
1350
1157
  "hydradx_main-local-trac": "/assets/chain-assets/hydradx_main-local-trac.png",
1351
1158
  "ethereum-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": "/assets/chain-assets/ethereum-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png",
1352
1159
  "binance-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": "/assets/chain-assets/binance-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png",
1353
1160
  "arbitrum_one-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": "/assets/chain-assets/arbitrum_one-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png",
1354
1161
  "base_mainnet-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": "/assets/chain-assets/base_mainnet-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png",
1162
+ "hydradx_main-local-ldo": "/assets/chain-assets/hydradx_main-local-ldo.png",
1163
+ "clover_mainnet-native-clv": "/assets/chain-assets/clover_mainnet-native-clv.png",
1355
1164
  "bittensor-local-ᚢ": "/assets/chain-assets/bittensor-local-ᚢ.png",
1356
1165
  "bittensor-local-ᚦ": "/assets/chain-assets/bittensor-local-ᚦ.png",
1357
1166
  "bittensor-local-᚛": "/assets/chain-assets/bittensor-local-᚛.png",
@@ -1387,14 +1196,14 @@
1387
1196
  "bittensor-local-𑀃": "/assets/chain-assets/bittensor-local-𑀃.png",
1388
1197
  "bittensor-local-𑀅": "/assets/chain-assets/bittensor-local-𑀅.png",
1389
1198
  "bittensor-local-න": "/assets/chain-assets/bittensor-local-න.png",
1390
- "hydradx_main-local-ldo": "/assets/chain-assets/hydradx_main-local-ldo.png",
1391
- "clover_mainnet-native-clv": "/assets/chain-assets/clover_mainnet-native-clv.png",
1392
1199
  "quantum_fusion-native-qf": "/assets/chain-assets/quantum_fusion-native-qf.png",
1393
1200
  "subtensor_evm-native-tao": "/assets/chain-assets/subtensor_evm-native-tao.png",
1394
1201
  "auto_evm-native-ai3": "/assets/chain-assets/auto_evm-native-ai3.png",
1395
1202
  "fraxtal-native-frax": "/assets/chain-assets/fraxtal-native-frax.png",
1396
- "reya-NATIVE-ETH": null,
1397
- "reya-ERC20-WETH-0x6B48C2e6A32077ec17e8Ba0d98fFc676dfab1A30": null,
1203
+ "base_mainnet-erc20-myth-0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7": "/assets/chain-assets/base_mainnet-erc20-myth-0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png",
1204
+ "regionx_kusama-native-ksm": "/assets/chain-assets/regionx_kusama-native-ksm.png",
1205
+ "stable_testnet-native-usdt": "/assets/chain-assets/stable_testnet-native-usdt.png",
1206
+ "abstract-native-eth": "/assets/chain-assets/abstract-native-eth.png",
1398
1207
  "paseo_assethub-native-pas": "/assets/chain-assets/paseo_assethub-native-pas.png",
1399
1208
  "eth-ethereum": "/assets/multi-chain-assets/eth-ethereum.png",
1400
1209
  "ibtc-interbtc": "/assets/multi-chain-assets/ibtc-interbtc.png",
@@ -1511,6 +1320,8 @@
1511
1320
  "ldo-lidodao": "/assets/multi-chain-assets/ldo-lidodao.png",
1512
1321
  "tao-bittensor": "/assets/multi-chain-assets/tao-bittensor.png",
1513
1322
  "ai3-autonomys": "/assets/multi-chain-assets/ai3-autonomys.png",
1323
+ "trac-origintrail": "/assets/multi-chain-assets/trac-origintrail.png",
1324
+ "usd₮0-usd₮0": "/assets/multi-chain-assets/usd₮0-usd₮0.png",
1514
1325
  "custom-moonbeam-erc20-cp-0x6021d2c27b6fbd6e7608d1f39b41398caee2f824": "/assets/custom-chain-assets/cp_77d5363018.png",
1515
1326
  "custom-aleph-psp22-zpf-5eskjbkpva1ppucmrkcmazdhqm9shihws9uqqsoi4vrdcdle": "/assets/custom-chain-assets/zpf_2f06de3f07.png",
1516
1327
  "custom-custom-substrate-gosnetwork-native-gos": "/assets/custom-chain-assets/gos_a4d1a9cf7a.png",
@@ -1678,6 +1489,20 @@
1678
1489
  srcChain: "statemint",
1679
1490
  destChain: "statemine",
1680
1491
  path: "XCM"
1492
+ },
1493
+ "statemint-NATIVE-DOT___hydradx_main-LOCAL-DOT": {
1494
+ srcAsset: "statemint-NATIVE-DOT",
1495
+ destAsset: "hydradx_main-LOCAL-DOT",
1496
+ srcChain: "statemint",
1497
+ destChain: "hydradx_main",
1498
+ path: "XCM"
1499
+ },
1500
+ "statemint-NATIVE-DOT___bifrost_dot-LOCAL-DOT": {
1501
+ srcAsset: "statemint-NATIVE-DOT",
1502
+ destAsset: "bifrost_dot-LOCAL-DOT",
1503
+ srcChain: "statemint",
1504
+ destChain: "bifrost_dot",
1505
+ path: "XCM"
1681
1506
  },
1682
1507
  "acala-NATIVE-ACA___moonbeam-LOCAL-xcACA": {
1683
1508
  srcAsset: "acala-NATIVE-ACA",
@@ -1832,6 +1657,13 @@
1832
1657
  srcChain: "bifrost_dot",
1833
1658
  destChain: "statemint",
1834
1659
  path: "XCM"
1660
+ },
1661
+ "bifrost_dot-LOCAL-USDT___hydradx_main-LOCAL-USDT": {
1662
+ srcAsset: "bifrost_dot-LOCAL-USDT",
1663
+ destAsset: "hydradx_main-LOCAL-USDT",
1664
+ srcChain: "bifrost_dot",
1665
+ destChain: "hydradx_main",
1666
+ path: "XCM"
1835
1667
  },
1836
1668
  "hydradx_main-LOCAL-USDT___statemint-LOCAL-USDt": {
1837
1669
  srcAsset: "hydradx_main-LOCAL-USDT",
@@ -1839,6 +1671,13 @@
1839
1671
  srcChain: "hydradx_main",
1840
1672
  destChain: "statemint",
1841
1673
  path: "XCM"
1674
+ },
1675
+ "hydradx_main-LOCAL-USDT___bifrost_dot-LOCAL-USDT": {
1676
+ srcAsset: "hydradx_main-LOCAL-USDT",
1677
+ destAsset: "bifrost_dot-LOCAL-USDT",
1678
+ srcChain: "hydradx_main",
1679
+ destChain: "bifrost_dot",
1680
+ path: "XCM"
1842
1681
  },
1843
1682
  "centrifuge-NATIVE-CFG___hydradx_main-LOCAL-CFG": {
1844
1683
  srcAsset: "centrifuge-NATIVE-CFG",
@@ -1944,6 +1783,20 @@
1944
1783
  srcChain: "bifrost_dot",
1945
1784
  destChain: "polkadot",
1946
1785
  path: "XCM"
1786
+ },
1787
+ "bifrost_dot-LOCAL-DOT___statemint-NATIVE-DOT": {
1788
+ srcAsset: "bifrost_dot-LOCAL-DOT",
1789
+ destAsset: "statemint-NATIVE-DOT",
1790
+ srcChain: "bifrost_dot",
1791
+ destChain: "statemint",
1792
+ path: "XCM"
1793
+ },
1794
+ "bifrost_dot-LOCAL-DOT___hydradx_main-LOCAL-DOT": {
1795
+ srcAsset: "bifrost_dot-LOCAL-DOT",
1796
+ destAsset: "hydradx_main-LOCAL-DOT",
1797
+ srcChain: "bifrost_dot",
1798
+ destChain: "hydradx_main",
1799
+ path: "XCM"
1947
1800
  },
1948
1801
  "hydradx_main-LOCAL-DOT___polkadot-NATIVE-DOT": {
1949
1802
  srcAsset: "hydradx_main-LOCAL-DOT",
@@ -1951,6 +1804,20 @@
1951
1804
  srcChain: "hydradx_main",
1952
1805
  destChain: "polkadot",
1953
1806
  path: "XCM"
1807
+ },
1808
+ "hydradx_main-LOCAL-DOT___statemint-NATIVE-DOT": {
1809
+ srcAsset: "hydradx_main-LOCAL-DOT",
1810
+ destAsset: "statemint-NATIVE-DOT",
1811
+ srcChain: "hydradx_main",
1812
+ destChain: "statemint",
1813
+ path: "XCM"
1814
+ },
1815
+ "hydradx_main-LOCAL-DOT___bifrost_dot-LOCAL-DOT": {
1816
+ srcAsset: "hydradx_main-LOCAL-DOT",
1817
+ destAsset: "bifrost_dot-LOCAL-DOT",
1818
+ srcChain: "hydradx_main",
1819
+ destChain: "bifrost_dot",
1820
+ path: "XCM"
1954
1821
  },
1955
1822
  "statemint-LOCAL-USDC___hydradx_main-LOCAL-USDC": {
1956
1823
  srcAsset: "statemint-LOCAL-USDC",
@@ -2119,13 +1986,6 @@
2119
1986
  srcChain: "statemint",
2120
1987
  destChain: "ethereum",
2121
1988
  path: "XCM"
2122
- },
2123
- "statemint-LOCAL-MYTH___ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003": {
2124
- srcAsset: "statemint-LOCAL-MYTH",
2125
- destAsset: "ethereum-ERC20-MYTH-0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003",
2126
- srcChain: "statemint",
2127
- destChain: "ethereum",
2128
- path: "XCM"
2129
1989
  },
2130
1990
  "statemint-LOCAL-MYTH___mythos-NATIVE-MYTH": {
2131
1991
  srcAsset: "statemint-LOCAL-MYTH",
@@ -2375,13 +2235,16 @@
2375
2235
  parents: 0,
2376
2236
  interior: "Here"
2377
2237
  },
2378
- paraSpellValue: {
2379
- parents: 1,
2380
- interior: {
2381
- Here: null
2238
+ paraSpellValue: "DOT",
2239
+ paraSpellAssetType: "symbol",
2240
+ paraSpellIdentifyV4: {
2241
+ location: {
2242
+ parents: 1,
2243
+ interior: {
2244
+ Here: null
2245
+ }
2382
2246
  }
2383
- },
2384
- paraSpellAssetType: "location"
2247
+ }
2385
2248
  },
2386
2249
  multiChainAsset: "DOT-Polkadot",
2387
2250
  hasValue: true,
@@ -2401,13 +2264,16 @@
2401
2264
  parents: 0,
2402
2265
  interior: "Here"
2403
2266
  },
2404
- paraSpellValue: {
2405
- parents: 1,
2406
- interior: {
2407
- Here: null
2267
+ paraSpellValue: "KSM",
2268
+ paraSpellAssetType: "symbol",
2269
+ paraSpellIdentifyV4: {
2270
+ location: {
2271
+ parents: 1,
2272
+ interior: {
2273
+ Here: null
2274
+ }
2408
2275
  }
2409
- },
2410
- paraSpellAssetType: "location"
2276
+ }
2411
2277
  },
2412
2278
  multiChainAsset: "KSM-Kusama",
2413
2279
  hasValue: true,
@@ -2455,20 +2321,23 @@
2455
2321
  parents: 0,
2456
2322
  interior: "Here"
2457
2323
  },
2458
- paraSpellValue: {
2459
- parents: 1,
2460
- interior: {
2461
- X2: [
2462
- {
2463
- Parachain: 2004
2464
- },
2465
- {
2466
- PalletInstance: 10
2467
- }
2468
- ]
2324
+ paraSpellValue: "GLMR",
2325
+ paraSpellAssetType: "symbol",
2326
+ paraSpellIdentifyV4: {
2327
+ location: {
2328
+ parents: 1,
2329
+ interior: {
2330
+ X2: [
2331
+ {
2332
+ Parachain: 2004
2333
+ },
2334
+ {
2335
+ PalletInstance: 10
2336
+ }
2337
+ ]
2338
+ }
2469
2339
  }
2470
- },
2471
- paraSpellAssetType: "location"
2340
+ }
2472
2341
  },
2473
2342
  multiChainAsset: "GLMR-Moonbeam",
2474
2343
  hasValue: true,
@@ -2521,17 +2390,20 @@
2521
2390
  parents: 0,
2522
2391
  interior: "Here"
2523
2392
  },
2524
- paraSpellValue: {
2525
- parents: 1,
2526
- interior: {
2527
- X1: [
2528
- {
2529
- Parachain: 2006
2530
- }
2531
- ]
2393
+ paraSpellValue: "ASTR",
2394
+ paraSpellAssetType: "symbol",
2395
+ paraSpellIdentifyV4: {
2396
+ location: {
2397
+ parents: 1,
2398
+ interior: {
2399
+ X1: [
2400
+ {
2401
+ Parachain: 2006
2402
+ }
2403
+ ]
2404
+ }
2532
2405
  }
2533
- },
2534
- paraSpellAssetType: "location"
2406
+ }
2535
2407
  },
2536
2408
  multiChainAsset: "ASTR-Astar",
2537
2409
  hasValue: true,
@@ -2552,13 +2424,16 @@
2552
2424
  parents: 1,
2553
2425
  interior: "Here"
2554
2426
  },
2555
- paraSpellValue: {
2556
- parents: 1,
2557
- interior: {
2558
- Here: null
2427
+ paraSpellValue: "DOT",
2428
+ paraSpellAssetType: "symbol",
2429
+ paraSpellIdentifyV4: {
2430
+ location: {
2431
+ parents: 1,
2432
+ interior: {
2433
+ Here: null
2434
+ }
2559
2435
  }
2560
2436
  },
2561
- paraSpellAssetType: "location",
2562
2437
  alternativeSwapAsset: "polkadot-NATIVE-DOT"
2563
2438
  },
2564
2439
  multiChainAsset: "DOT-Polkadot",
@@ -2584,23 +2459,26 @@
2584
2459
  parents: 0,
2585
2460
  interior: "Here"
2586
2461
  },
2587
- paraSpellValue: {
2588
- parents: 1,
2589
- interior: {
2590
- X2: [
2591
- {
2592
- Parachain: 2000
2593
- },
2594
- {
2595
- GeneralKey: {
2596
- data: "0x0000000000000000000000000000000000000000000000000000000000000000",
2597
- length: 2
2462
+ paraSpellValue: "ACA",
2463
+ paraSpellAssetType: "symbol",
2464
+ paraSpellIdentifyV4: {
2465
+ location: {
2466
+ parents: 1,
2467
+ interior: {
2468
+ X2: [
2469
+ {
2470
+ Parachain: 2000
2471
+ },
2472
+ {
2473
+ GeneralKey: {
2474
+ data: "0x0000000000000000000000000000000000000000000000000000000000000000",
2475
+ length: 2
2476
+ }
2598
2477
  }
2599
- }
2600
- ]
2478
+ ]
2479
+ }
2601
2480
  }
2602
- },
2603
- paraSpellAssetType: "location"
2481
+ }
2604
2482
  },
2605
2483
  multiChainAsset: "ACA-Acala",
2606
2484
  hasValue: true,
@@ -2714,13 +2592,16 @@
2714
2592
  Token: "DOT"
2715
2593
  },
2716
2594
  isSufficient: true,
2717
- paraSpellValue: {
2718
- parents: 1,
2719
- interior: {
2720
- Here: null
2595
+ paraSpellValue: "DOT",
2596
+ paraSpellAssetType: "symbol",
2597
+ paraSpellIdentifyV4: {
2598
+ location: {
2599
+ parents: 1,
2600
+ interior: {
2601
+ Here: null
2602
+ }
2721
2603
  }
2722
- },
2723
- paraSpellAssetType: "location"
2604
+ }
2724
2605
  },
2725
2606
  multiChainAsset: "DOT-Polkadot",
2726
2607
  hasValue: true,
@@ -2739,20 +2620,23 @@
2739
2620
  onChainInfo: {
2740
2621
  ForeignAsset: 0
2741
2622
  },
2742
- paraSpellValue: {
2743
- parents: 1,
2744
- interior: {
2745
- X2: [
2746
- {
2747
- Parachain: 2004
2748
- },
2749
- {
2750
- PalletInstance: 10
2751
- }
2752
- ]
2623
+ paraSpellValue: "GLMR",
2624
+ paraSpellAssetType: "symbol",
2625
+ paraSpellIdentifyV4: {
2626
+ location: {
2627
+ parents: 1,
2628
+ interior: {
2629
+ X2: [
2630
+ {
2631
+ Parachain: 2004
2632
+ },
2633
+ {
2634
+ PalletInstance: 10
2635
+ }
2636
+ ]
2637
+ }
2753
2638
  }
2754
- },
2755
- paraSpellAssetType: "location"
2639
+ }
2756
2640
  },
2757
2641
  multiChainAsset: "GLMR-Moonbeam",
2758
2642
  hasValue: true,
@@ -2772,23 +2656,26 @@
2772
2656
  ForeignAsset: 12
2773
2657
  },
2774
2658
  isSufficient: true,
2775
- paraSpellValue: {
2776
- parents: 1,
2777
- interior: {
2778
- X3: [
2779
- {
2780
- Parachain: 1000
2781
- },
2782
- {
2783
- PalletInstance: 50
2784
- },
2785
- {
2786
- GeneralIndex: 1984
2787
- }
2788
- ]
2659
+ paraSpellValue: "USDT",
2660
+ paraSpellAssetType: "symbol",
2661
+ paraSpellIdentifyV4: {
2662
+ location: {
2663
+ parents: 1,
2664
+ interior: {
2665
+ X3: [
2666
+ {
2667
+ Parachain: 1000
2668
+ },
2669
+ {
2670
+ PalletInstance: 50
2671
+ },
2672
+ {
2673
+ GeneralIndex: 1984
2674
+ }
2675
+ ]
2676
+ }
2789
2677
  }
2790
- },
2791
- paraSpellAssetType: "location"
2678
+ }
2792
2679
  },
2793
2680
  multiChainAsset: "USDT-Tether",
2794
2681
  hasValue: true,
@@ -2826,17 +2713,20 @@
2826
2713
  ForeignAsset: 2
2827
2714
  },
2828
2715
  isSufficient: true,
2829
- paraSpellValue: {
2830
- parents: 1,
2831
- interior: {
2832
- X1: [
2833
- {
2834
- Parachain: 2006
2835
- }
2836
- ]
2716
+ paraSpellValue: "ASTR",
2717
+ paraSpellAssetType: "symbol",
2718
+ paraSpellIdentifyV4: {
2719
+ location: {
2720
+ parents: 1,
2721
+ interior: {
2722
+ X1: [
2723
+ {
2724
+ Parachain: 2006
2725
+ }
2726
+ ]
2727
+ }
2837
2728
  }
2838
- },
2839
- paraSpellAssetType: "location"
2729
+ }
2840
2730
  },
2841
2731
  multiChainAsset: "ASTR-Astar",
2842
2732
  hasValue: true,
@@ -2922,14 +2812,17 @@
2922
2812
  metadata: {
2923
2813
  assetId: "42259045809535163221576417993425387648",
2924
2814
  assetType: "ForeignAsset",
2925
- paraSpellValue: {
2926
- parents: 1,
2927
- interior: {
2928
- Here: null
2929
- }
2930
- },
2815
+ paraSpellValue: "DOT",
2931
2816
  contractAddress: "0xFfFFfFff1FcaCBd218EDc0EbA20Fc2308C778080",
2932
- paraSpellAssetType: "location"
2817
+ paraSpellAssetType: "symbol",
2818
+ paraSpellIdentifyV4: {
2819
+ location: {
2820
+ parents: 1,
2821
+ interior: {
2822
+ Here: null
2823
+ }
2824
+ }
2825
+ }
2933
2826
  },
2934
2827
  multiChainAsset: "DOT-Polkadot",
2935
2828
  hasValue: true,
@@ -2947,24 +2840,27 @@
2947
2840
  metadata: {
2948
2841
  assetId: "101170542313601871197860408087030232491",
2949
2842
  assetType: "ForeignAsset",
2950
- paraSpellValue: {
2951
- parents: 1,
2952
- interior: {
2953
- X2: [
2954
- {
2955
- Parachain: 2032
2956
- },
2957
- {
2958
- GeneralKey: {
2959
- data: "0x0002000000000000000000000000000000000000000000000000000000000000",
2960
- length: 2
2843
+ paraSpellValue: "INTR",
2844
+ contractAddress: "0xFffFFFFF4C1cbCd97597339702436d4F18a375Ab",
2845
+ paraSpellAssetType: "symbol",
2846
+ paraSpellIdentifyV4: {
2847
+ location: {
2848
+ parents: 1,
2849
+ interior: {
2850
+ X2: [
2851
+ {
2852
+ Parachain: 2032
2853
+ },
2854
+ {
2855
+ GeneralKey: {
2856
+ data: "0x0002000000000000000000000000000000000000000000000000000000000000",
2857
+ length: 2
2858
+ }
2961
2859
  }
2962
- }
2963
- ]
2860
+ ]
2861
+ }
2964
2862
  }
2965
- },
2966
- contractAddress: "0xFffFFFFF4C1cbCd97597339702436d4F18a375Ab",
2967
- paraSpellAssetType: "location"
2863
+ }
2968
2864
  },
2969
2865
  multiChainAsset: "INTR-Interlay",
2970
2866
  hasValue: true,
@@ -2982,24 +2878,27 @@
2982
2878
  metadata: {
2983
2879
  assetId: "120637696315203257380661607956669368914",
2984
2880
  assetType: "ForeignAsset",
2985
- paraSpellValue: {
2986
- parents: 1,
2987
- interior: {
2988
- X2: [
2989
- {
2990
- Parachain: 2032
2991
- },
2992
- {
2993
- GeneralKey: {
2994
- data: "0x0001000000000000000000000000000000000000000000000000000000000000",
2995
- length: 2
2881
+ paraSpellValue: "IBTC",
2882
+ contractAddress: "0xFFFFFfFf5AC1f9A51A93F5C527385edF7Fe98A52",
2883
+ paraSpellAssetType: "symbol",
2884
+ paraSpellIdentifyV4: {
2885
+ location: {
2886
+ parents: 1,
2887
+ interior: {
2888
+ X2: [
2889
+ {
2890
+ Parachain: 2032
2891
+ },
2892
+ {
2893
+ GeneralKey: {
2894
+ data: "0x0001000000000000000000000000000000000000000000000000000000000000",
2895
+ length: 2
2896
+ }
2996
2897
  }
2997
- }
2998
- ]
2898
+ ]
2899
+ }
2999
2900
  }
3000
- },
3001
- contractAddress: "0xFFFFFfFf5AC1f9A51A93F5C527385edF7Fe98A52",
3002
- paraSpellAssetType: "location"
2901
+ }
3003
2902
  },
3004
2903
  multiChainAsset: "iBTC-interBTC",
3005
2904
  hasValue: true,
@@ -3017,24 +2916,27 @@
3017
2916
  metadata: {
3018
2917
  assetId: "224821240862170613278369189818311486111",
3019
2918
  assetType: "ForeignAsset",
3020
- paraSpellValue: {
3021
- parents: 1,
3022
- interior: {
3023
- X2: [
3024
- {
3025
- Parachain: 2000
3026
- },
3027
- {
3028
- GeneralKey: {
3029
- data: "0x0000000000000000000000000000000000000000000000000000000000000000",
3030
- length: 2
2919
+ paraSpellValue: "ACA",
2920
+ contractAddress: "0xffffFFffa922Fef94566104a6e5A35a4fCDDAA9f",
2921
+ paraSpellAssetType: "symbol",
2922
+ paraSpellIdentifyV4: {
2923
+ location: {
2924
+ parents: 1,
2925
+ interior: {
2926
+ X2: [
2927
+ {
2928
+ Parachain: 2000
2929
+ },
2930
+ {
2931
+ GeneralKey: {
2932
+ data: "0x0000000000000000000000000000000000000000000000000000000000000000",
2933
+ length: 2
2934
+ }
3031
2935
  }
3032
- }
3033
- ]
2936
+ ]
2937
+ }
3034
2938
  }
3035
- },
3036
- contractAddress: "0xffffFFffa922Fef94566104a6e5A35a4fCDDAA9f",
3037
- paraSpellAssetType: "location"
2939
+ }
3038
2940
  },
3039
2941
  multiChainAsset: "ACA-Acala",
3040
2942
  hasValue: true,
@@ -3105,13 +3007,16 @@
3105
3007
  parents: 1,
3106
3008
  interior: "Here"
3107
3009
  },
3108
- paraSpellValue: {
3109
- parents: 1,
3110
- interior: {
3111
- Here: null
3010
+ paraSpellValue: "DOT",
3011
+ paraSpellAssetType: "symbol",
3012
+ paraSpellIdentifyV4: {
3013
+ location: {
3014
+ parents: 1,
3015
+ interior: {
3016
+ Here: null
3017
+ }
3112
3018
  }
3113
- },
3114
- paraSpellAssetType: "location"
3019
+ }
3115
3020
  },
3116
3021
  multiChainAsset: "DOT-Polkadot",
3117
3022
  hasValue: true,
@@ -3144,23 +3049,26 @@
3144
3049
  ]
3145
3050
  }
3146
3051
  },
3147
- paraSpellValue: {
3148
- parents: 1,
3149
- interior: {
3150
- X3: [
3151
- {
3152
- Parachain: 1000
3153
- },
3154
- {
3155
- PalletInstance: 50
3156
- },
3157
- {
3158
- GeneralIndex: 1984
3159
- }
3160
- ]
3052
+ paraSpellValue: "USDT",
3053
+ paraSpellAssetType: "symbol",
3054
+ paraSpellIdentifyV4: {
3055
+ location: {
3056
+ parents: 1,
3057
+ interior: {
3058
+ X3: [
3059
+ {
3060
+ Parachain: 1000
3061
+ },
3062
+ {
3063
+ PalletInstance: 50
3064
+ },
3065
+ {
3066
+ GeneralIndex: 1984
3067
+ }
3068
+ ]
3069
+ }
3161
3070
  }
3162
- },
3163
- paraSpellAssetType: "location"
3071
+ }
3164
3072
  },
3165
3073
  multiChainAsset: "USDT-Tether",
3166
3074
  hasValue: true,
@@ -3439,23 +3347,26 @@
3439
3347
  onChainInfo: {
3440
3348
  Token2: "2"
3441
3349
  },
3442
- paraSpellValue: {
3443
- parents: 1,
3444
- interior: {
3445
- X3: [
3446
- {
3447
- Parachain: 1000
3448
- },
3449
- {
3450
- PalletInstance: 50
3451
- },
3452
- {
3453
- GeneralIndex: 1984
3454
- }
3455
- ]
3350
+ paraSpellValue: "USDT",
3351
+ paraSpellAssetType: "symbol",
3352
+ paraSpellIdentifyV4: {
3353
+ location: {
3354
+ parents: 1,
3355
+ interior: {
3356
+ X3: [
3357
+ {
3358
+ Parachain: 1000
3359
+ },
3360
+ {
3361
+ PalletInstance: 50
3362
+ },
3363
+ {
3364
+ GeneralIndex: 1984
3365
+ }
3366
+ ]
3367
+ }
3456
3368
  }
3457
- },
3458
- paraSpellAssetType: "location"
3369
+ }
3459
3370
  },
3460
3371
  multiChainAsset: "USDT-Tether",
3461
3372
  hasValue: true,
@@ -4002,20 +3913,23 @@
4002
3913
  assetType: "NATIVE",
4003
3914
  metadata: {
4004
3915
  assetId: "0",
4005
- paraSpellValue: {
4006
- parents: 1,
4007
- interior: {
4008
- X2: [
4009
- {
4010
- Parachain: 2034
4011
- },
4012
- {
4013
- GeneralIndex: 0
4014
- }
4015
- ]
3916
+ paraSpellValue: "HDX",
3917
+ paraSpellAssetType: "symbol",
3918
+ paraSpellIdentifyV4: {
3919
+ location: {
3920
+ parents: 1,
3921
+ interior: {
3922
+ X2: [
3923
+ {
3924
+ Parachain: 2034
3925
+ },
3926
+ {
3927
+ GeneralIndex: 0
3928
+ }
3929
+ ]
3930
+ }
4016
3931
  }
4017
- },
4018
- paraSpellAssetType: "location"
3932
+ }
4019
3933
  },
4020
3934
  multiChainAsset: "HDX-HydraDX",
4021
3935
  hasValue: true,
@@ -4049,23 +3963,26 @@
4049
3963
  ]
4050
3964
  }
4051
3965
  },
4052
- paraSpellValue: {
4053
- parents: 1,
4054
- interior: {
4055
- X3: [
4056
- {
4057
- Parachain: 1000
4058
- },
4059
- {
4060
- PalletInstance: 50
4061
- },
4062
- {
4063
- GeneralIndex: 1984
4064
- }
4065
- ]
3966
+ paraSpellValue: "10",
3967
+ paraSpellAssetType: "id",
3968
+ paraSpellIdentifyV4: {
3969
+ location: {
3970
+ parents: 1,
3971
+ interior: {
3972
+ X3: [
3973
+ {
3974
+ Parachain: 1000
3975
+ },
3976
+ {
3977
+ PalletInstance: 50
3978
+ },
3979
+ {
3980
+ GeneralIndex: 1984
3981
+ }
3982
+ ]
3983
+ }
4066
3984
  }
4067
- },
4068
- paraSpellAssetType: "location"
3985
+ }
4069
3986
  },
4070
3987
  multiChainAsset: "USDT-Tether",
4071
3988
  hasValue: true,
@@ -4098,23 +4015,26 @@
4098
4015
  onChainInfo: {
4099
4016
  Native: null
4100
4017
  },
4101
- paraSpellValue: {
4102
- parents: 1,
4103
- interior: {
4104
- X2: [
4105
- {
4106
- Parachain: 2031
4107
- },
4108
- {
4109
- GeneralKey: {
4110
- data: "0x0001000000000000000000000000000000000000000000000000000000000000",
4111
- length: 2
4018
+ paraSpellValue: "CFG",
4019
+ paraSpellAssetType: "symbol",
4020
+ paraSpellIdentifyV4: {
4021
+ location: {
4022
+ parents: 1,
4023
+ interior: {
4024
+ X2: [
4025
+ {
4026
+ Parachain: 2031
4027
+ },
4028
+ {
4029
+ GeneralKey: {
4030
+ data: "0x0001000000000000000000000000000000000000000000000000000000000000",
4031
+ length: 2
4032
+ }
4112
4033
  }
4113
- }
4114
- ]
4034
+ ]
4035
+ }
4115
4036
  }
4116
- },
4117
- paraSpellAssetType: "location"
4037
+ }
4118
4038
  },
4119
4039
  multiChainAsset: "CFG-Centrifuge",
4120
4040
  hasValue: true,
@@ -4133,23 +4053,26 @@
4133
4053
  onChainInfo: {
4134
4054
  Token: "INTR"
4135
4055
  },
4136
- paraSpellValue: {
4137
- parents: 1,
4138
- interior: {
4139
- X2: [
4140
- {
4141
- Parachain: 2032
4142
- },
4143
- {
4144
- GeneralKey: {
4145
- data: "0x0002000000000000000000000000000000000000000000000000000000000000",
4146
- length: 2
4056
+ paraSpellValue: "INTR",
4057
+ paraSpellAssetType: "symbol",
4058
+ paraSpellIdentifyV4: {
4059
+ location: {
4060
+ parents: 1,
4061
+ interior: {
4062
+ X2: [
4063
+ {
4064
+ Parachain: 2032
4065
+ },
4066
+ {
4067
+ GeneralKey: {
4068
+ data: "0x0002000000000000000000000000000000000000000000000000000000000000",
4069
+ length: 2
4070
+ }
4147
4071
  }
4148
- }
4149
- ]
4072
+ ]
4073
+ }
4150
4074
  }
4151
- },
4152
- paraSpellAssetType: "location"
4075
+ }
4153
4076
  },
4154
4077
  multiChainAsset: "INTR-Interlay",
4155
4078
  hasValue: true,
@@ -4186,23 +4109,26 @@
4186
4109
  onChainInfo: {
4187
4110
  ForeignAsset: 2
4188
4111
  },
4189
- paraSpellValue: {
4190
- parents: 1,
4191
- interior: {
4192
- X3: [
4193
- {
4194
- Parachain: 1000
4195
- },
4196
- {
4197
- PalletInstance: 50
4198
- },
4199
- {
4200
- GeneralIndex: 1984
4201
- }
4202
- ]
4112
+ paraSpellValue: "USDT",
4113
+ paraSpellAssetType: "symbol",
4114
+ paraSpellIdentifyV4: {
4115
+ location: {
4116
+ parents: 1,
4117
+ interior: {
4118
+ X3: [
4119
+ {
4120
+ Parachain: 1000
4121
+ },
4122
+ {
4123
+ PalletInstance: 50
4124
+ },
4125
+ {
4126
+ GeneralIndex: 1984
4127
+ }
4128
+ ]
4129
+ }
4203
4130
  }
4204
- },
4205
- paraSpellAssetType: "location"
4131
+ }
4206
4132
  },
4207
4133
  multiChainAsset: "USDT-Tether",
4208
4134
  hasValue: true,
@@ -4222,7 +4148,25 @@
4222
4148
  Token: "IBTC"
4223
4149
  },
4224
4150
  paraSpellValue: "IBTC",
4225
- paraSpellAssetType: "symbol"
4151
+ paraSpellAssetType: "symbol",
4152
+ paraSpellIdentifyV4: {
4153
+ location: {
4154
+ parents: 1,
4155
+ interior: {
4156
+ X2: [
4157
+ {
4158
+ Parachain: 2032
4159
+ },
4160
+ {
4161
+ GeneralKey: {
4162
+ data: "0x0001000000000000000000000000000000000000000000000000000000000000",
4163
+ length: 2
4164
+ }
4165
+ }
4166
+ ]
4167
+ }
4168
+ }
4169
+ }
4226
4170
  },
4227
4171
  multiChainAsset: "iBTC-interBTC",
4228
4172
  hasValue: true,
@@ -4346,7 +4290,10 @@
4346
4290
  XCM: "0"
4347
4291
  },
4348
4292
  paraSpellValue: "0",
4349
- paraSpellAssetType: "id"
4293
+ paraSpellAssetType: "id",
4294
+ paraSpellIdentifyV4: {
4295
+ id: "0"
4296
+ }
4350
4297
  },
4351
4298
  multiChainAsset: "KSM-Kusama",
4352
4299
  hasValue: true,
@@ -4492,13 +4439,16 @@
4492
4439
  parents: 1,
4493
4440
  interior: "Here"
4494
4441
  },
4495
- paraSpellValue: {
4496
- parents: 1,
4497
- interior: {
4498
- Here: null
4442
+ paraSpellValue: "KSM",
4443
+ paraSpellAssetType: "symbol",
4444
+ paraSpellIdentifyV4: {
4445
+ location: {
4446
+ parents: 1,
4447
+ interior: {
4448
+ Here: null
4449
+ }
4499
4450
  }
4500
- },
4501
- paraSpellAssetType: "location"
4451
+ }
4502
4452
  },
4503
4453
  multiChainAsset: "KSM-Kusama",
4504
4454
  hasValue: true,
@@ -4983,13 +4933,16 @@
4983
4933
  minAmount: "33333333",
4984
4934
  assetType: "NATIVE",
4985
4935
  metadata: {
4986
- paraSpellValue: {
4987
- parents: 1,
4988
- interior: {
4989
- Here: null
4936
+ paraSpellValue: "KSM",
4937
+ paraSpellAssetType: "symbol",
4938
+ paraSpellIdentifyV4: {
4939
+ location: {
4940
+ parents: 1,
4941
+ interior: {
4942
+ Here: null
4943
+ }
4990
4944
  }
4991
- },
4992
- paraSpellAssetType: "location"
4945
+ }
4993
4946
  },
4994
4947
  multiChainAsset: "KSM-Kusama",
4995
4948
  hasValue: true,
@@ -5278,13 +5231,16 @@
5278
5231
  parents: 1,
5279
5232
  interior: "Here"
5280
5233
  },
5281
- paraSpellValue: {
5282
- parents: 1,
5283
- interior: {
5284
- Here: null
5234
+ paraSpellValue: "DOT",
5235
+ paraSpellAssetType: "symbol",
5236
+ paraSpellIdentifyV4: {
5237
+ location: {
5238
+ parents: 1,
5239
+ interior: {
5240
+ Here: null
5241
+ }
5285
5242
  }
5286
- },
5287
- paraSpellAssetType: "location"
5243
+ }
5288
5244
  },
5289
5245
  multiChainAsset: "DOT-Polkadot",
5290
5246
  hasValue: true,
@@ -5319,23 +5275,26 @@
5319
5275
  ]
5320
5276
  }
5321
5277
  },
5322
- paraSpellValue: {
5323
- parents: 1,
5324
- interior: {
5325
- X3: [
5326
- {
5327
- Parachain: 1000
5328
- },
5329
- {
5330
- PalletInstance: 50
5331
- },
5332
- {
5333
- GeneralIndex: 1984
5334
- }
5335
- ]
5278
+ paraSpellValue: "USDT",
5279
+ paraSpellAssetType: "symbol",
5280
+ paraSpellIdentifyV4: {
5281
+ location: {
5282
+ parents: 1,
5283
+ interior: {
5284
+ X3: [
5285
+ {
5286
+ Parachain: 1000
5287
+ },
5288
+ {
5289
+ PalletInstance: 50
5290
+ },
5291
+ {
5292
+ GeneralIndex: 1984
5293
+ }
5294
+ ]
5295
+ }
5336
5296
  }
5337
- },
5338
- paraSpellAssetType: "location"
5297
+ }
5339
5298
  },
5340
5299
  multiChainAsset: "USDT-Tether",
5341
5300
  hasValue: true,
@@ -5983,23 +5942,26 @@
5983
5942
  ]
5984
5943
  }
5985
5944
  },
5986
- paraSpellValue: {
5987
- parents: 1,
5988
- interior: {
5989
- X3: [
5990
- {
5991
- Parachain: 1000
5992
- },
5993
- {
5994
- PalletInstance: 50
5995
- },
5996
- {
5997
- GeneralIndex: 1984
5998
- }
5999
- ]
5945
+ paraSpellValue: "1984",
5946
+ paraSpellAssetType: "id",
5947
+ paraSpellIdentifyV4: {
5948
+ location: {
5949
+ parents: 1,
5950
+ interior: {
5951
+ X3: [
5952
+ {
5953
+ Parachain: 1000
5954
+ },
5955
+ {
5956
+ PalletInstance: 50
5957
+ },
5958
+ {
5959
+ GeneralIndex: 1984
5960
+ }
5961
+ ]
5962
+ }
6000
5963
  }
6001
- },
6002
- paraSpellAssetType: "location"
5964
+ }
6003
5965
  },
6004
5966
  multiChainAsset: "USDT-Tether",
6005
5967
  hasValue: true,
@@ -6017,14 +5979,17 @@
6017
5979
  metadata: {
6018
5980
  assetId: "42259045809535163221576417993425387648",
6019
5981
  assetType: "ForeignAsset",
6020
- paraSpellValue: {
6021
- parents: 1,
6022
- interior: {
6023
- Here: null
6024
- }
6025
- },
5982
+ paraSpellValue: "KSM",
6026
5983
  contractAddress: "0xFfFFfFff1FcaCBd218EDc0EbA20Fc2308C778080",
6027
- paraSpellAssetType: "location"
5984
+ paraSpellAssetType: "symbol",
5985
+ paraSpellIdentifyV4: {
5986
+ location: {
5987
+ parents: 1,
5988
+ interior: {
5989
+ Here: null
5990
+ }
5991
+ }
5992
+ }
6028
5993
  },
6029
5994
  multiChainAsset: "KSM-Kusama",
6030
5995
  hasValue: true,
@@ -6046,13 +6011,16 @@
6046
6011
  parents: 1,
6047
6012
  interior: "Here"
6048
6013
  },
6049
- paraSpellValue: {
6050
- parents: 1,
6051
- interior: {
6052
- Here: null
6014
+ paraSpellValue: "KSM",
6015
+ paraSpellAssetType: "symbol",
6016
+ paraSpellIdentifyV4: {
6017
+ location: {
6018
+ parents: 1,
6019
+ interior: {
6020
+ Here: null
6021
+ }
6053
6022
  }
6054
- },
6055
- paraSpellAssetType: "location"
6023
+ }
6056
6024
  },
6057
6025
  multiChainAsset: "KSM-Kusama",
6058
6026
  hasValue: true,
@@ -6071,13 +6039,16 @@
6071
6039
  onChainInfo: {
6072
6040
  Token: "KSM"
6073
6041
  },
6074
- paraSpellValue: {
6075
- parents: 1,
6076
- interior: {
6077
- Here: null
6042
+ paraSpellValue: "KSM",
6043
+ paraSpellAssetType: "symbol",
6044
+ paraSpellIdentifyV4: {
6045
+ location: {
6046
+ parents: 1,
6047
+ interior: {
6048
+ Here: null
6049
+ }
6078
6050
  }
6079
- },
6080
- paraSpellAssetType: "location"
6051
+ }
6081
6052
  },
6082
6053
  multiChainAsset: "KSM-Kusama",
6083
6054
  hasValue: true,
@@ -6096,23 +6067,26 @@
6096
6067
  onChainInfo: {
6097
6068
  ForeignAsset: "9"
6098
6069
  },
6099
- paraSpellValue: {
6100
- parents: 1,
6101
- interior: {
6102
- X2: [
6103
- {
6104
- Parachain: 2096
6105
- },
6106
- {
6107
- GeneralKey: {
6108
- data: "0x0000000000000000000000000000000000000000000000000000000000000000",
6109
- length: 9
6070
+ paraSpellValue: "NEER",
6071
+ paraSpellAssetType: "symbol",
6072
+ paraSpellIdentifyV4: {
6073
+ location: {
6074
+ parents: 1,
6075
+ interior: {
6076
+ X2: [
6077
+ {
6078
+ Parachain: 2096
6079
+ },
6080
+ {
6081
+ GeneralKey: {
6082
+ data: "0x0000000000000000000000000000000000000000000000000000000000000000",
6083
+ length: 9
6084
+ }
6110
6085
  }
6111
- }
6112
- ]
6086
+ ]
6087
+ }
6113
6088
  }
6114
- },
6115
- paraSpellAssetType: "location"
6089
+ }
6116
6090
  },
6117
6091
  multiChainAsset: "NEER-Pioneer",
6118
6092
  hasValue: true,
@@ -6167,13 +6141,16 @@
6167
6141
  onChainInfo: {
6168
6142
  Token: "KSM"
6169
6143
  },
6170
- paraSpellValue: {
6171
- parents: 1,
6172
- interior: {
6173
- Here: null
6144
+ paraSpellValue: "KSM",
6145
+ paraSpellAssetType: "symbol",
6146
+ paraSpellIdentifyV4: {
6147
+ location: {
6148
+ parents: 1,
6149
+ interior: {
6150
+ Here: null
6151
+ }
6174
6152
  }
6175
- },
6176
- paraSpellAssetType: "location"
6153
+ }
6177
6154
  },
6178
6155
  multiChainAsset: "KSM-Kusama",
6179
6156
  hasValue: true,
@@ -6245,24 +6222,27 @@
6245
6222
  metadata: {
6246
6223
  assetId: "311091173110107856861649819128533077277",
6247
6224
  assetType: "ForeignAsset",
6248
- paraSpellValue: {
6249
- parents: 1,
6250
- interior: {
6251
- X3: [
6252
- {
6253
- Parachain: 1000
6254
- },
6255
- {
6256
- PalletInstance: 50
6257
- },
6258
- {
6259
- GeneralIndex: 1984
6260
- }
6261
- ]
6262
- }
6263
- },
6225
+ paraSpellValue: "USDT",
6264
6226
  contractAddress: "0xFFFFFFfFea09FB06d082fd1275CD48b191cbCD1d",
6265
- paraSpellAssetType: "location"
6227
+ paraSpellAssetType: "symbol",
6228
+ paraSpellIdentifyV4: {
6229
+ location: {
6230
+ parents: 1,
6231
+ interior: {
6232
+ X3: [
6233
+ {
6234
+ Parachain: 1000
6235
+ },
6236
+ {
6237
+ PalletInstance: 50
6238
+ },
6239
+ {
6240
+ GeneralIndex: 1984
6241
+ }
6242
+ ]
6243
+ }
6244
+ }
6245
+ }
6266
6246
  },
6267
6247
  multiChainAsset: "USDT-Tether",
6268
6248
  hasValue: true,
@@ -6569,23 +6549,26 @@
6569
6549
  assetType: "LOCAL",
6570
6550
  metadata: {
6571
6551
  assetId: "1984",
6572
- paraSpellValue: {
6573
- parents: 1,
6574
- interior: {
6575
- X3: [
6576
- {
6577
- Parachain: 1000
6578
- },
6579
- {
6580
- PalletInstance: 50
6581
- },
6582
- {
6583
- GeneralIndex: 1984
6584
- }
6585
- ]
6552
+ paraSpellValue: "1984",
6553
+ paraSpellAssetType: "id",
6554
+ paraSpellIdentifyV4: {
6555
+ location: {
6556
+ parents: 1,
6557
+ interior: {
6558
+ X3: [
6559
+ {
6560
+ Parachain: 1000
6561
+ },
6562
+ {
6563
+ PalletInstance: 50
6564
+ },
6565
+ {
6566
+ GeneralIndex: 1984
6567
+ }
6568
+ ]
6569
+ }
6586
6570
  }
6587
- },
6588
- paraSpellAssetType: "location"
6571
+ }
6589
6572
  },
6590
6573
  multiChainAsset: "USDT-Tether",
6591
6574
  hasValue: true,
@@ -8962,21 +8945,21 @@
8962
8945
  hasValue: true,
8963
8946
  icon: "/assets/chain-assets/vara_network-native-vara.png"
8964
8947
  },
8965
- "polygon-ERC20-USDT-0xc2132D05D31c914a87C6611C10748AEb04B58e8F": {
8948
+ "polygon-ERC20-USD₮0-0xc2132D05D31c914a87C6611C10748AEb04B58e8F": {
8966
8949
  originChain: "polygon",
8967
- slug: "polygon-ERC20-USDT-0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
8968
- name: "Tether USD",
8969
- symbol: "USDT",
8950
+ slug: "polygon-ERC20-USD₮0-0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
8951
+ name: "USD₮0",
8952
+ symbol: "USD₮0",
8970
8953
  decimals: 6,
8971
- priceId: "tether",
8972
- minAmount: null,
8954
+ priceId: "usdt0",
8955
+ minAmount: "0",
8973
8956
  assetType: "ERC20",
8974
8957
  metadata: {
8975
8958
  contractAddress: "0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
8976
8959
  },
8977
- multiChainAsset: "USDT-Tether",
8960
+ multiChainAsset: "USD₮0-USD₮0",
8978
8961
  hasValue: true,
8979
- icon: "/assets/chain-assets/polygon-erc20-usdt-0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png"
8962
+ icon: "/assets/chain-assets/polygon-erc20-usd₮0-0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png"
8980
8963
  },
8981
8964
  "arbitrum_one-ERC20-USD₮0-0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9": {
8982
8965
  originChain: "arbitrum_one",
@@ -8991,7 +8974,7 @@
8991
8974
  autoEnable: true,
8992
8975
  contractAddress: "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
8993
8976
  },
8994
- multiChainAsset: null,
8977
+ multiChainAsset: "USD₮0-USD₮0",
8995
8978
  hasValue: true,
8996
8979
  icon: "/assets/chain-assets/arbitrum_one-erc20-usd₮0-0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9.png"
8997
8980
  },
@@ -9182,13 +9165,16 @@
9182
9165
  minAmount: "1000000000",
9183
9166
  assetType: "NATIVE",
9184
9167
  metadata: {
9185
- paraSpellValue: {
9186
- parents: 1,
9187
- interior: {
9188
- Here: null
9168
+ paraSpellValue: "DOT",
9169
+ paraSpellAssetType: "symbol",
9170
+ paraSpellIdentifyV4: {
9171
+ location: {
9172
+ parents: 1,
9173
+ interior: {
9174
+ Here: null
9175
+ }
9189
9176
  }
9190
- },
9191
- paraSpellAssetType: "location"
9177
+ }
9192
9178
  },
9193
9179
  multiChainAsset: "DOT-Polkadot",
9194
9180
  hasValue: true,
@@ -9741,13 +9727,16 @@
9741
9727
  onChainInfo: {
9742
9728
  Token2: "0"
9743
9729
  },
9744
- paraSpellValue: {
9745
- parents: 1,
9746
- interior: {
9747
- Here: null
9730
+ paraSpellValue: "DOT",
9731
+ paraSpellAssetType: "symbol",
9732
+ paraSpellIdentifyV4: {
9733
+ location: {
9734
+ parents: 1,
9735
+ interior: {
9736
+ Here: null
9737
+ }
9748
9738
  }
9749
- },
9750
- paraSpellAssetType: "location"
9739
+ }
9751
9740
  },
9752
9741
  multiChainAsset: "DOT-Polkadot",
9753
9742
  hasValue: true,
@@ -9798,13 +9787,16 @@
9798
9787
  onChainInfo: {
9799
9788
  Token: "DOT"
9800
9789
  },
9801
- paraSpellValue: {
9802
- parents: 1,
9803
- interior: {
9804
- Here: null
9790
+ paraSpellValue: "DOT",
9791
+ paraSpellAssetType: "symbol",
9792
+ paraSpellIdentifyV4: {
9793
+ location: {
9794
+ parents: 1,
9795
+ interior: {
9796
+ Here: null
9797
+ }
9805
9798
  }
9806
- },
9807
- paraSpellAssetType: "location"
9799
+ }
9808
9800
  },
9809
9801
  multiChainAsset: "DOT-Polkadot",
9810
9802
  hasValue: true,
@@ -9823,13 +9815,16 @@
9823
9815
  assetId: "5",
9824
9816
  autoEnable: true,
9825
9817
  canPayTxFee: true,
9826
- paraSpellValue: {
9827
- parents: 1,
9828
- interior: {
9829
- Here: null
9818
+ paraSpellValue: "DOT",
9819
+ paraSpellAssetType: "symbol",
9820
+ paraSpellIdentifyV4: {
9821
+ location: {
9822
+ parents: 1,
9823
+ interior: {
9824
+ Here: null
9825
+ }
9830
9826
  }
9831
9827
  },
9832
- paraSpellAssetType: "location",
9833
9828
  alternativeSwapAsset: "polkadot-NATIVE-DOT"
9834
9829
  },
9835
9830
  multiChainAsset: "DOT-Polkadot",
@@ -9888,23 +9883,26 @@
9888
9883
  ]
9889
9884
  }
9890
9885
  },
9891
- paraSpellValue: {
9892
- parents: 1,
9893
- interior: {
9894
- X3: [
9895
- {
9896
- Parachain: 1000
9897
- },
9898
- {
9899
- PalletInstance: 50
9900
- },
9901
- {
9902
- GeneralIndex: 1337
9903
- }
9904
- ]
9886
+ paraSpellValue: "1337",
9887
+ paraSpellAssetType: "id",
9888
+ paraSpellIdentifyV4: {
9889
+ location: {
9890
+ parents: 1,
9891
+ interior: {
9892
+ X3: [
9893
+ {
9894
+ Parachain: 1000
9895
+ },
9896
+ {
9897
+ PalletInstance: 50
9898
+ },
9899
+ {
9900
+ GeneralIndex: 1337
9901
+ }
9902
+ ]
9903
+ }
9905
9904
  }
9906
- },
9907
- paraSpellAssetType: "location"
9905
+ }
9908
9906
  },
9909
9907
  multiChainAsset: "USDC-USDCoin",
9910
9908
  hasValue: true,
@@ -9968,23 +9966,26 @@
9968
9966
  ]
9969
9967
  }
9970
9968
  },
9971
- paraSpellValue: {
9972
- parents: 1,
9973
- interior: {
9974
- X3: [
9975
- {
9976
- Parachain: 1000
9977
- },
9978
- {
9979
- PalletInstance: 50
9980
- },
9981
- {
9982
- GeneralIndex: 1337
9983
- }
9984
- ]
9969
+ paraSpellValue: "22",
9970
+ paraSpellAssetType: "id",
9971
+ paraSpellIdentifyV4: {
9972
+ location: {
9973
+ parents: 1,
9974
+ interior: {
9975
+ X3: [
9976
+ {
9977
+ Parachain: 1000
9978
+ },
9979
+ {
9980
+ PalletInstance: 50
9981
+ },
9982
+ {
9983
+ GeneralIndex: 1337
9984
+ }
9985
+ ]
9986
+ }
9985
9987
  }
9986
- },
9987
- paraSpellAssetType: "location"
9988
+ }
9988
9989
  },
9989
9990
  multiChainAsset: "USDC-USDCoin",
9990
9991
  hasValue: true,
@@ -10279,23 +10280,26 @@
10279
10280
  onChainInfo: {
10280
10281
  ForeignAsset: 4
10281
10282
  },
10282
- paraSpellValue: {
10283
- parents: 1,
10284
- interior: {
10285
- X2: [
10286
- {
10287
- Parachain: 2032
10288
- },
10289
- {
10290
- GeneralKey: {
10291
- data: "0x0002000000000000000000000000000000000000000000000000000000000000",
10292
- length: 2
10283
+ paraSpellValue: "INTR",
10284
+ paraSpellAssetType: "symbol",
10285
+ paraSpellIdentifyV4: {
10286
+ location: {
10287
+ parents: 1,
10288
+ interior: {
10289
+ X2: [
10290
+ {
10291
+ Parachain: 2032
10292
+ },
10293
+ {
10294
+ GeneralKey: {
10295
+ data: "0x0002000000000000000000000000000000000000000000000000000000000000",
10296
+ length: 2
10297
+ }
10293
10298
  }
10294
- }
10295
- ]
10299
+ ]
10300
+ }
10296
10301
  }
10297
- },
10298
- paraSpellAssetType: "location"
10302
+ }
10299
10303
  },
10300
10304
  multiChainAsset: "INTR-Interlay",
10301
10305
  hasValue: true,
@@ -10311,9 +10315,7 @@
10311
10315
  minAmount: "1",
10312
10316
  assetType: "LOCAL",
10313
10317
  metadata: {
10314
- assetId: "108",
10315
- paraSpellValue: "ACA",
10316
- paraSpellAssetType: "symbol"
10318
+ assetId: "108"
10317
10319
  },
10318
10320
  multiChainAsset: "ACA-Acala",
10319
10321
  hasValue: true,
@@ -10330,23 +10332,26 @@
10330
10332
  assetType: "LOCAL",
10331
10333
  metadata: {
10332
10334
  assetId: "13",
10333
- paraSpellValue: {
10334
- parents: 1,
10335
- interior: {
10336
- X2: [
10337
- {
10338
- Parachain: 2031
10339
- },
10340
- {
10341
- GeneralKey: {
10342
- data: "0x0001000000000000000000000000000000000000000000000000000000000000",
10343
- length: 2
10335
+ paraSpellValue: "CFG",
10336
+ paraSpellAssetType: "symbol",
10337
+ paraSpellIdentifyV4: {
10338
+ location: {
10339
+ parents: 1,
10340
+ interior: {
10341
+ X2: [
10342
+ {
10343
+ Parachain: 2031
10344
+ },
10345
+ {
10346
+ GeneralKey: {
10347
+ data: "0x0001000000000000000000000000000000000000000000000000000000000000",
10348
+ length: 2
10349
+ }
10344
10350
  }
10345
- }
10346
- ]
10351
+ ]
10352
+ }
10347
10353
  }
10348
- },
10349
- paraSpellAssetType: "location"
10354
+ }
10350
10355
  },
10351
10356
  multiChainAsset: "CFG-Centrifuge",
10352
10357
  hasValue: true,
@@ -10457,17 +10462,20 @@
10457
10462
  onChainInfo: {
10458
10463
  MantaCurrency: "1"
10459
10464
  },
10460
- paraSpellValue: {
10461
- parents: 1,
10462
- interior: {
10463
- X1: [
10464
- {
10465
- Parachain: 2104
10466
- }
10467
- ]
10465
+ paraSpellValue: "MANTA",
10466
+ paraSpellAssetType: "symbol",
10467
+ paraSpellIdentifyV4: {
10468
+ location: {
10469
+ parents: 1,
10470
+ interior: {
10471
+ X1: [
10472
+ {
10473
+ Parachain: 2104
10474
+ }
10475
+ ]
10476
+ }
10468
10477
  }
10469
- },
10470
- paraSpellAssetType: "location"
10478
+ }
10471
10479
  },
10472
10480
  multiChainAsset: "MANTA-MantaAtlantic",
10473
10481
  hasValue: true,
@@ -10503,13 +10511,16 @@
10503
10511
  onChainInfo: {
10504
10512
  MantaCurrency: "8"
10505
10513
  },
10506
- paraSpellValue: {
10507
- parents: 1,
10508
- interior: {
10509
- Here: null
10514
+ paraSpellValue: "DOT",
10515
+ paraSpellAssetType: "symbol",
10516
+ paraSpellIdentifyV4: {
10517
+ location: {
10518
+ parents: 1,
10519
+ interior: {
10520
+ Here: null
10521
+ }
10510
10522
  }
10511
- },
10512
- paraSpellAssetType: "location"
10523
+ }
10513
10524
  },
10514
10525
  multiChainAsset: "DOT-Polkadot",
10515
10526
  hasValue: true,
@@ -10527,18 +10538,21 @@
10527
10538
  metadata: {
10528
10539
  assetId: "166446646689194205559791995948102903873",
10529
10540
  assetType: "ForeignAsset",
10530
- paraSpellValue: {
10531
- parents: 1,
10532
- interior: {
10533
- X1: [
10534
- {
10535
- Parachain: 2104
10536
- }
10537
- ]
10538
- }
10539
- },
10541
+ paraSpellValue: "MANTA",
10540
10542
  contractAddress: "0xfFFffFFf7D3875460d4509eb8d0362c611B4E841",
10541
- paraSpellAssetType: "location"
10543
+ paraSpellAssetType: "symbol",
10544
+ paraSpellIdentifyV4: {
10545
+ location: {
10546
+ parents: 1,
10547
+ interior: {
10548
+ X1: [
10549
+ {
10550
+ Parachain: 2104
10551
+ }
10552
+ ]
10553
+ }
10554
+ }
10555
+ }
10542
10556
  },
10543
10557
  multiChainAsset: "MANTA-MantaAtlantic",
10544
10558
  hasValue: true,
@@ -10636,17 +10650,20 @@
10636
10650
  onChainInfo: {
10637
10651
  Token2: "8"
10638
10652
  },
10639
- paraSpellValue: {
10640
- parents: 1,
10641
- interior: {
10642
- X1: [
10643
- {
10644
- Parachain: 2104
10645
- }
10646
- ]
10653
+ paraSpellValue: "MANTA",
10654
+ paraSpellAssetType: "symbol",
10655
+ paraSpellIdentifyV4: {
10656
+ location: {
10657
+ parents: 1,
10658
+ interior: {
10659
+ X1: [
10660
+ {
10661
+ Parachain: 2104
10662
+ }
10663
+ ]
10664
+ }
10647
10665
  }
10648
- },
10649
- paraSpellAssetType: "location"
10666
+ }
10650
10667
  },
10651
10668
  multiChainAsset: "MANTA-MantaAtlantic",
10652
10669
  hasValue: true,
@@ -10871,17 +10888,20 @@
10871
10888
  assetType: "LOCAL",
10872
10889
  metadata: {
10873
10890
  assetId: "9",
10874
- paraSpellValue: {
10875
- parents: 1,
10876
- interior: {
10877
- X1: [
10878
- {
10879
- Parachain: 2006
10880
- }
10881
- ]
10891
+ paraSpellValue: "ASTR",
10892
+ paraSpellAssetType: "symbol",
10893
+ paraSpellIdentifyV4: {
10894
+ location: {
10895
+ parents: 1,
10896
+ interior: {
10897
+ X1: [
10898
+ {
10899
+ Parachain: 2006
10900
+ }
10901
+ ]
10902
+ }
10882
10903
  }
10883
10904
  },
10884
- paraSpellAssetType: "location",
10885
10905
  alternativeSwapAsset: "astar-NATIVE-ASTR"
10886
10906
  },
10887
10907
  multiChainAsset: "ASTR-Astar",
@@ -11657,18 +11677,21 @@
11657
11677
  parents: 0,
11658
11678
  interior: "Here"
11659
11679
  },
11660
- paraSpellValue: {
11661
- parents: 1,
11662
- interior: {
11663
- X1: [
11664
- {
11665
- Parachain: 3369
11666
- }
11667
- ]
11668
- }
11669
- },
11680
+ paraSpellValue: "MYTH",
11670
11681
  disableEvmTransfer: true,
11671
- paraSpellAssetType: "location"
11682
+ paraSpellAssetType: "symbol",
11683
+ paraSpellIdentifyV4: {
11684
+ location: {
11685
+ parents: 1,
11686
+ interior: {
11687
+ X1: [
11688
+ {
11689
+ Parachain: 3369
11690
+ }
11691
+ ]
11692
+ }
11693
+ }
11694
+ }
11672
11695
  },
11673
11696
  multiChainAsset: "MYTH-Mythos",
11674
11697
  hasValue: true,
@@ -12296,23 +12319,26 @@
12296
12319
  ]
12297
12320
  }
12298
12321
  },
12299
- paraSpellValue: {
12300
- parents: 1,
12301
- interior: {
12302
- X3: [
12303
- {
12304
- Parachain: 1000
12305
- },
12306
- {
12307
- PalletInstance: 50
12308
- },
12309
- {
12310
- GeneralIndex: 1337
12311
- }
12312
- ]
12322
+ paraSpellValue: "USDC",
12323
+ paraSpellAssetType: "symbol",
12324
+ paraSpellIdentifyV4: {
12325
+ location: {
12326
+ parents: 1,
12327
+ interior: {
12328
+ X3: [
12329
+ {
12330
+ Parachain: 1000
12331
+ },
12332
+ {
12333
+ PalletInstance: 50
12334
+ },
12335
+ {
12336
+ GeneralIndex: 1337
12337
+ }
12338
+ ]
12339
+ }
12313
12340
  }
12314
- },
12315
- paraSpellAssetType: "location"
12341
+ }
12316
12342
  },
12317
12343
  multiChainAsset: "USDC-USDCoin",
12318
12344
  hasValue: true,
@@ -12595,7 +12621,10 @@
12595
12621
  },
12596
12622
  paraSpellValue: "1",
12597
12623
  isDisableTransfer: true,
12598
- paraSpellAssetType: "id"
12624
+ paraSpellAssetType: "id",
12625
+ paraSpellIdentifyV4: {
12626
+ id: "1"
12627
+ }
12599
12628
  },
12600
12629
  multiChainAsset: "USDT-Tether",
12601
12630
  hasValue: true,
@@ -12744,13 +12773,16 @@
12744
12773
  minAmount: "33333333",
12745
12774
  assetType: "NATIVE",
12746
12775
  metadata: {
12747
- paraSpellValue: {
12748
- parents: 1,
12749
- interior: {
12750
- Here: null
12776
+ paraSpellValue: "KSM",
12777
+ paraSpellAssetType: "symbol",
12778
+ paraSpellIdentifyV4: {
12779
+ location: {
12780
+ parents: 1,
12781
+ interior: {
12782
+ Here: null
12783
+ }
12751
12784
  }
12752
- },
12753
- paraSpellAssetType: "location"
12785
+ }
12754
12786
  },
12755
12787
  multiChainAsset: "KSM-Kusama",
12756
12788
  hasValue: true,
@@ -13145,13 +13177,16 @@
13145
13177
  ]
13146
13178
  }
13147
13179
  },
13148
- paraSpellValue: {
13149
- parents: 1,
13150
- interior: {
13151
- Here: null
13180
+ paraSpellValue: "KSM",
13181
+ paraSpellAssetType: "symbol",
13182
+ paraSpellIdentifyV4: {
13183
+ location: {
13184
+ parents: 1,
13185
+ interior: {
13186
+ Here: null
13187
+ }
13152
13188
  }
13153
- },
13154
- paraSpellAssetType: "location"
13189
+ }
13155
13190
  },
13156
13191
  multiChainAsset: "KSM-Kusama",
13157
13192
  hasValue: true,
@@ -13178,23 +13213,26 @@
13178
13213
  ]
13179
13214
  }
13180
13215
  },
13181
- paraSpellValue: {
13182
- parents: 1,
13183
- interior: {
13184
- X3: [
13185
- {
13186
- Parachain: 1000
13187
- },
13188
- {
13189
- PalletInstance: 50
13190
- },
13191
- {
13192
- GeneralIndex: 14
13193
- }
13194
- ]
13216
+ paraSpellValue: "DOT",
13217
+ paraSpellAssetType: "symbol",
13218
+ paraSpellIdentifyV4: {
13219
+ location: {
13220
+ parents: 1,
13221
+ interior: {
13222
+ X3: [
13223
+ {
13224
+ Parachain: 1000
13225
+ },
13226
+ {
13227
+ PalletInstance: 50
13228
+ },
13229
+ {
13230
+ GeneralIndex: 14
13231
+ }
13232
+ ]
13233
+ }
13195
13234
  }
13196
- },
13197
- paraSpellAssetType: "location"
13235
+ }
13198
13236
  },
13199
13237
  multiChainAsset: "DOT-Polkadot",
13200
13238
  hasValue: true,
@@ -13386,27 +13424,30 @@
13386
13424
  ]
13387
13425
  }
13388
13426
  },
13389
- paraSpellValue: {
13390
- parents: 2,
13391
- interior: {
13392
- X2: [
13393
- {
13394
- GlobalConsensus: {
13395
- Ethereum: {
13396
- chainId: 1
13427
+ paraSpellValue: "WETH",
13428
+ paraSpellAssetType: "symbol",
13429
+ paraSpellIdentifyV4: {
13430
+ location: {
13431
+ parents: 2,
13432
+ interior: {
13433
+ X2: [
13434
+ {
13435
+ GlobalConsensus: {
13436
+ Ethereum: {
13437
+ chainId: 1
13438
+ }
13439
+ }
13440
+ },
13441
+ {
13442
+ AccountKey20: {
13443
+ key: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
13444
+ network: null
13397
13445
  }
13398
13446
  }
13399
- },
13400
- {
13401
- AccountKey20: {
13402
- key: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
13403
- network: null
13404
- }
13405
- }
13406
- ]
13447
+ ]
13448
+ }
13407
13449
  }
13408
- },
13409
- paraSpellAssetType: "location"
13450
+ }
13410
13451
  },
13411
13452
  multiChainAsset: "ETH-Ethereum",
13412
13453
  hasValue: true,
@@ -13433,17 +13474,20 @@
13433
13474
  ]
13434
13475
  }
13435
13476
  },
13436
- paraSpellValue: {
13437
- parents: 1,
13438
- interior: {
13439
- X1: [
13440
- {
13441
- Parachain: 3369
13442
- }
13443
- ]
13477
+ paraSpellValue: "MYTH",
13478
+ paraSpellAssetType: "symbol",
13479
+ paraSpellIdentifyV4: {
13480
+ location: {
13481
+ parents: 1,
13482
+ interior: {
13483
+ X1: [
13484
+ {
13485
+ Parachain: 3369
13486
+ }
13487
+ ]
13488
+ }
13444
13489
  }
13445
- },
13446
- paraSpellAssetType: "location"
13490
+ }
13447
13491
  },
13448
13492
  multiChainAsset: "MYTH-Mythos",
13449
13493
  hasValue: true,
@@ -13496,23 +13540,26 @@
13496
13540
  ]
13497
13541
  }
13498
13542
  },
13499
- paraSpellValue: {
13500
- parents: 1,
13501
- interior: {
13502
- X3: [
13503
- {
13504
- Parachain: 1000
13505
- },
13506
- {
13507
- PalletInstance: 50
13508
- },
13509
- {
13510
- GeneralIndex: 21
13511
- }
13512
- ]
13543
+ paraSpellValue: "WBTC",
13544
+ paraSpellAssetType: "symbol",
13545
+ paraSpellIdentifyV4: {
13546
+ location: {
13547
+ parents: 1,
13548
+ interior: {
13549
+ X3: [
13550
+ {
13551
+ Parachain: 1000
13552
+ },
13553
+ {
13554
+ PalletInstance: 50
13555
+ },
13556
+ {
13557
+ GeneralIndex: 21
13558
+ }
13559
+ ]
13560
+ }
13513
13561
  }
13514
- },
13515
- paraSpellAssetType: "location"
13562
+ }
13516
13563
  },
13517
13564
  multiChainAsset: "WBTC-WrappedBTC",
13518
13565
  hasValue: true,
@@ -13549,23 +13596,26 @@
13549
13596
  ]
13550
13597
  }
13551
13598
  },
13552
- paraSpellValue: {
13553
- parents: 1,
13554
- interior: {
13555
- X3: [
13556
- {
13557
- Parachain: 1000
13558
- },
13559
- {
13560
- PalletInstance: 50
13561
- },
13562
- {
13563
- GeneralIndex: 38
13564
- }
13565
- ]
13599
+ paraSpellValue: "SHIB",
13600
+ paraSpellAssetType: "symbol",
13601
+ paraSpellIdentifyV4: {
13602
+ location: {
13603
+ parents: 1,
13604
+ interior: {
13605
+ X3: [
13606
+ {
13607
+ Parachain: 1000
13608
+ },
13609
+ {
13610
+ PalletInstance: 50
13611
+ },
13612
+ {
13613
+ GeneralIndex: 38
13614
+ }
13615
+ ]
13616
+ }
13566
13617
  }
13567
- },
13568
- paraSpellAssetType: "location"
13618
+ }
13569
13619
  },
13570
13620
  multiChainAsset: "SHIB-SHIBAINU",
13571
13621
  hasValue: true,
@@ -13602,27 +13652,30 @@
13602
13652
  ]
13603
13653
  }
13604
13654
  },
13605
- paraSpellValue: {
13606
- parents: 2,
13607
- interior: {
13608
- X2: [
13609
- {
13610
- GlobalConsensus: {
13611
- Ethereum: {
13612
- chainId: 1
13655
+ paraSpellValue: "PEPE",
13656
+ paraSpellAssetType: "symbol",
13657
+ paraSpellIdentifyV4: {
13658
+ location: {
13659
+ parents: 2,
13660
+ interior: {
13661
+ X2: [
13662
+ {
13663
+ GlobalConsensus: {
13664
+ Ethereum: {
13665
+ chainId: 1
13666
+ }
13667
+ }
13668
+ },
13669
+ {
13670
+ AccountKey20: {
13671
+ key: "0x6982508145454ce325ddbe47a25d4ec3d2311933",
13672
+ network: null
13613
13673
  }
13614
13674
  }
13615
- },
13616
- {
13617
- AccountKey20: {
13618
- key: "0x6982508145454ce325ddbe47a25d4ec3d2311933",
13619
- network: null
13620
- }
13621
- }
13622
- ]
13675
+ ]
13676
+ }
13623
13677
  }
13624
- },
13625
- paraSpellAssetType: "location"
13678
+ }
13626
13679
  },
13627
13680
  multiChainAsset: "PEPE-Pepe",
13628
13681
  hasValue: true,
@@ -13675,27 +13728,30 @@
13675
13728
  ]
13676
13729
  }
13677
13730
  },
13678
- paraSpellValue: {
13679
- parents: 2,
13680
- interior: {
13681
- X2: [
13682
- {
13683
- GlobalConsensus: {
13684
- Ethereum: {
13685
- chainId: 1
13731
+ paraSpellValue: "TON",
13732
+ paraSpellAssetType: "symbol",
13733
+ paraSpellIdentifyV4: {
13734
+ location: {
13735
+ parents: 2,
13736
+ interior: {
13737
+ X2: [
13738
+ {
13739
+ GlobalConsensus: {
13740
+ Ethereum: {
13741
+ chainId: 1
13742
+ }
13743
+ }
13744
+ },
13745
+ {
13746
+ AccountKey20: {
13747
+ key: "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
13748
+ network: null
13686
13749
  }
13687
13750
  }
13688
- },
13689
- {
13690
- AccountKey20: {
13691
- key: "0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
13692
- network: null
13693
- }
13694
- }
13695
- ]
13751
+ ]
13752
+ }
13696
13753
  }
13697
- },
13698
- paraSpellAssetType: "location"
13754
+ }
13699
13755
  },
13700
13756
  multiChainAsset: "TON-TONCoin",
13701
13757
  hasValue: true,
@@ -13748,27 +13804,30 @@
13748
13804
  ]
13749
13805
  }
13750
13806
  },
13751
- paraSpellValue: {
13752
- parents: 2,
13753
- interior: {
13754
- X2: [
13755
- {
13756
- GlobalConsensus: {
13757
- Ethereum: {
13758
- chainId: 1
13807
+ paraSpellValue: "wstETH",
13808
+ paraSpellAssetType: "symbol",
13809
+ paraSpellIdentifyV4: {
13810
+ location: {
13811
+ parents: 2,
13812
+ interior: {
13813
+ X2: [
13814
+ {
13815
+ GlobalConsensus: {
13816
+ Ethereum: {
13817
+ chainId: 1
13818
+ }
13819
+ }
13820
+ },
13821
+ {
13822
+ AccountKey20: {
13823
+ key: "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
13824
+ network: null
13759
13825
  }
13760
13826
  }
13761
- },
13762
- {
13763
- AccountKey20: {
13764
- key: "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
13765
- network: null
13766
- }
13767
- }
13768
- ]
13827
+ ]
13828
+ }
13769
13829
  }
13770
- },
13771
- paraSpellAssetType: "location"
13830
+ }
13772
13831
  },
13773
13832
  multiChainAsset: "wstETH-WrappedLiquidEther",
13774
13833
  hasValue: true,
@@ -13805,27 +13864,30 @@
13805
13864
  ]
13806
13865
  }
13807
13866
  },
13808
- paraSpellValue: {
13809
- parents: 2,
13810
- interior: {
13811
- X2: [
13812
- {
13813
- GlobalConsensus: {
13814
- Ethereum: {
13815
- chainId: 1
13867
+ paraSpellValue: "tBTC",
13868
+ paraSpellAssetType: "symbol",
13869
+ paraSpellIdentifyV4: {
13870
+ location: {
13871
+ parents: 2,
13872
+ interior: {
13873
+ X2: [
13874
+ {
13875
+ GlobalConsensus: {
13876
+ Ethereum: {
13877
+ chainId: 1
13878
+ }
13879
+ }
13880
+ },
13881
+ {
13882
+ AccountKey20: {
13883
+ key: "0x18084fba666a33d37592fa2633fd49a74dd93a88",
13884
+ network: null
13816
13885
  }
13817
13886
  }
13818
- },
13819
- {
13820
- AccountKey20: {
13821
- key: "0x18084fba666a33d37592fa2633fd49a74dd93a88",
13822
- network: null
13823
- }
13824
- }
13825
- ]
13887
+ ]
13888
+ }
13826
13889
  }
13827
- },
13828
- paraSpellAssetType: "location"
13890
+ }
13829
13891
  },
13830
13892
  multiChainAsset: "tBTC-tBTCv2",
13831
13893
  hasValue: true,
@@ -13972,22 +14034,6 @@
13972
14034
  multiChainAsset: "PHA-Phala",
13973
14035
  hasValue: true,
13974
14036
  icon: "/assets/chain-assets/hydradx_main-local-pha.png"
13975
- },
13976
- "hydradx_main-LOCAL-KILT": {
13977
- originChain: "hydradx_main",
13978
- slug: "hydradx_main-LOCAL-KILT",
13979
- name: "KILT Protocol",
13980
- symbol: "KILT",
13981
- decimals: 15,
13982
- priceId: "kilt-protocol",
13983
- minAmount: "21358393848783",
13984
- assetType: "LOCAL",
13985
- metadata: {
13986
- assetId: "28"
13987
- },
13988
- multiChainAsset: "KILT-KILTProtocol",
13989
- hasValue: true,
13990
- icon: "/assets/chain-assets/hydradx_main-local-kilt.png"
13991
14037
  },
13992
14038
  "hydradx_main-LOCAL-ZTG": {
13993
14039
  originChain: "hydradx_main",
@@ -14098,23 +14144,26 @@
14098
14144
  onChainInfo: {
14099
14145
  ForeignAsset: "7"
14100
14146
  },
14101
- paraSpellValue: {
14102
- parents: 1,
14103
- interior: {
14104
- X3: [
14105
- {
14106
- Parachain: 1000
14107
- },
14108
- {
14109
- PalletInstance: 50
14110
- },
14111
- {
14112
- GeneralIndex: 1984
14113
- }
14114
- ]
14147
+ paraSpellValue: "USDT",
14148
+ paraSpellAssetType: "symbol",
14149
+ paraSpellIdentifyV4: {
14150
+ location: {
14151
+ parents: 1,
14152
+ interior: {
14153
+ X3: [
14154
+ {
14155
+ Parachain: 1000
14156
+ },
14157
+ {
14158
+ PalletInstance: 50
14159
+ },
14160
+ {
14161
+ GeneralIndex: 1984
14162
+ }
14163
+ ]
14164
+ }
14115
14165
  }
14116
- },
14117
- paraSpellAssetType: "location"
14166
+ }
14118
14167
  },
14119
14168
  multiChainAsset: "USDT-Tether",
14120
14169
  hasValue: true,
@@ -14385,17 +14434,20 @@
14385
14434
  ]
14386
14435
  }
14387
14436
  },
14388
- paraSpellValue: {
14389
- parents: 1,
14390
- interior: {
14391
- X1: [
14392
- {
14393
- Parachain: 3369
14394
- }
14395
- ]
14437
+ paraSpellValue: "MYTH",
14438
+ paraSpellAssetType: "symbol",
14439
+ paraSpellIdentifyV4: {
14440
+ location: {
14441
+ parents: 1,
14442
+ interior: {
14443
+ X1: [
14444
+ {
14445
+ Parachain: 3369
14446
+ }
14447
+ ]
14448
+ }
14396
14449
  }
14397
- },
14398
- paraSpellAssetType: "location"
14450
+ }
14399
14451
  },
14400
14452
  multiChainAsset: "MYTH-Mythos",
14401
14453
  hasValue: true,
@@ -16129,13 +16181,16 @@
16129
16181
  minAmount: "1000000000",
16130
16182
  assetType: "NATIVE",
16131
16183
  metadata: {
16132
- paraSpellValue: {
16133
- parents: 1,
16134
- interior: {
16135
- Here: null
16184
+ paraSpellValue: "DOT",
16185
+ paraSpellAssetType: "symbol",
16186
+ paraSpellIdentifyV4: {
16187
+ location: {
16188
+ parents: 1,
16189
+ interior: {
16190
+ Here: null
16191
+ }
16136
16192
  }
16137
- },
16138
- paraSpellAssetType: "location"
16193
+ }
16139
16194
  },
16140
16195
  multiChainAsset: "DOT-Polkadot",
16141
16196
  hasValue: true,
@@ -19825,7 +19880,7 @@
19825
19880
  metadata: {
19826
19881
  contractAddress: "0x9151434b16b9763660705744891fA906F660EcC5"
19827
19882
  },
19828
- multiChainAsset: null,
19883
+ multiChainAsset: "USD₮0-USD₮0",
19829
19884
  hasValue: true,
19830
19885
  icon: "/assets/chain-assets/unichain-erc20-usd₮0-0x9151434b16b9763660705744891fa906f660ecc5.png"
19831
19886
  },
@@ -20002,6 +20057,22 @@
20002
20057
  multiChainAsset: "DOT-Polkadot",
20003
20058
  hasValue: true,
20004
20059
  icon: "/assets/chain-assets/base_mainnet-erc20-dot-0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png"
20060
+ },
20061
+ "origintrail-LOCAL-TRAC": {
20062
+ originChain: "origintrail",
20063
+ slug: "origintrail-LOCAL-TRAC",
20064
+ name: "OriginTrail",
20065
+ symbol: "TRAC",
20066
+ decimals: 18,
20067
+ priceId: "origintrail",
20068
+ minAmount: "1",
20069
+ assetType: "LOCAL",
20070
+ metadata: {
20071
+ assetId: "1"
20072
+ },
20073
+ multiChainAsset: "TRAC-OriginTrail",
20074
+ hasValue: true,
20075
+ icon: "/assets/chain-assets/origintrail-local-trac.png"
20005
20076
  },
20006
20077
  "hydradx_main-LOCAL-TRAC": {
20007
20078
  originChain: "hydradx_main",
@@ -20015,7 +20086,7 @@
20015
20086
  metadata: {
20016
20087
  assetId: "35"
20017
20088
  },
20018
- multiChainAsset: null,
20089
+ multiChainAsset: "TRAC-OriginTrail",
20019
20090
  hasValue: true,
20020
20091
  icon: "/assets/chain-assets/hydradx_main-local-trac.png"
20021
20092
  },
@@ -20082,6 +20153,36 @@
20082
20153
  multiChainAsset: "vDOT-VoucherDot",
20083
20154
  hasValue: true,
20084
20155
  icon: "/assets/chain-assets/base_mainnet-erc20-vdot-0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png"
20156
+ },
20157
+ "hydradx_main-LOCAL-LDO": {
20158
+ originChain: "hydradx_main",
20159
+ slug: "hydradx_main-LOCAL-LDO",
20160
+ name: "Lido DAO",
20161
+ symbol: "LDO",
20162
+ decimals: 18,
20163
+ priceId: "lido-dao",
20164
+ minAmount: "5102040816326530",
20165
+ assetType: "LOCAL",
20166
+ metadata: {
20167
+ assetId: "1000796"
20168
+ },
20169
+ multiChainAsset: "LDO-LidoDAO",
20170
+ hasValue: true,
20171
+ icon: "/assets/chain-assets/hydradx_main-local-ldo.png"
20172
+ },
20173
+ "clover_mainnet-NATIVE-CLV": {
20174
+ originChain: "clover_mainnet",
20175
+ slug: "clover_mainnet-NATIVE-CLV",
20176
+ name: "Clover Finance",
20177
+ symbol: "CLV",
20178
+ decimals: 18,
20179
+ priceId: "clover-finance",
20180
+ minAmount: "500",
20181
+ assetType: "NATIVE",
20182
+ metadata: null,
20183
+ multiChainAsset: null,
20184
+ hasValue: true,
20185
+ icon: "/assets/chain-assets/clover_mainnet-native-clv.png"
20085
20186
  },
20086
20187
  "bittensor-LOCAL-ᚢ": {
20087
20188
  originChain: "bittensor",
@@ -20677,36 +20778,6 @@
20677
20778
  multiChainAsset: null,
20678
20779
  hasValue: true,
20679
20780
  icon: "/assets/chain-assets/bittensor-local-න.png"
20680
- },
20681
- "hydradx_main-LOCAL-LDO": {
20682
- originChain: "hydradx_main",
20683
- slug: "hydradx_main-LOCAL-LDO",
20684
- name: "Lido DAO",
20685
- symbol: "LDO",
20686
- decimals: 18,
20687
- priceId: "lido-dao",
20688
- minAmount: "5102040816326530",
20689
- assetType: "LOCAL",
20690
- metadata: {
20691
- assetId: "1000796"
20692
- },
20693
- multiChainAsset: "LDO-LidoDAO",
20694
- hasValue: true,
20695
- icon: "/assets/chain-assets/hydradx_main-local-ldo.png"
20696
- },
20697
- "clover_mainnet-NATIVE-CLV": {
20698
- originChain: "clover_mainnet",
20699
- slug: "clover_mainnet-NATIVE-CLV",
20700
- name: "Clover Finance",
20701
- symbol: "CLV",
20702
- decimals: 18,
20703
- priceId: "clover-finance",
20704
- minAmount: "500",
20705
- assetType: "NATIVE",
20706
- metadata: null,
20707
- multiChainAsset: null,
20708
- hasValue: true,
20709
- icon: "/assets/chain-assets/clover_mainnet-native-clv.png"
20710
20781
  },
20711
20782
  "quantum_fusion-NATIVE-QF": {
20712
20783
  originChain: "quantum_fusion",
@@ -20763,6 +20834,64 @@
20763
20834
  multiChainAsset: null,
20764
20835
  hasValue: true,
20765
20836
  icon: "/assets/chain-assets/fraxtal-native-frax.png"
20837
+ },
20838
+ "base_mainnet-ERC20-MYTH-0x9B9fd410d5F01a6A60acF4678a5A99D8027FA5A7": {
20839
+ originChain: "base_mainnet",
20840
+ slug: "base_mainnet-ERC20-MYTH-0x9B9fd410d5F01a6A60acF4678a5A99D8027FA5A7",
20841
+ name: "Mythos",
20842
+ symbol: "MYTH",
20843
+ decimals: 18,
20844
+ priceId: "mythos",
20845
+ minAmount: "0",
20846
+ assetType: "ERC20",
20847
+ metadata: {
20848
+ contractAddress: "0x9B9fd410d5F01a6A60acF4678a5A99D8027FA5A7"
20849
+ },
20850
+ multiChainAsset: "MYTH-Mythos",
20851
+ hasValue: true,
20852
+ icon: "/assets/chain-assets/base_mainnet-erc20-myth-0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png"
20853
+ },
20854
+ "regionx_kusama-NATIVE-KSM": {
20855
+ originChain: "regionx_kusama",
20856
+ slug: "regionx_kusama-NATIVE-KSM",
20857
+ name: "Kusama",
20858
+ symbol: "KSM",
20859
+ decimals: 12,
20860
+ priceId: "kusama",
20861
+ minAmount: "10000000000",
20862
+ assetType: "NATIVE",
20863
+ metadata: null,
20864
+ multiChainAsset: "KSM-Kusama",
20865
+ hasValue: true,
20866
+ icon: "/assets/chain-assets/regionx_kusama-native-ksm.png"
20867
+ },
20868
+ "stable_testnet-NATIVE-USDT": {
20869
+ originChain: "stable_testnet",
20870
+ slug: "stable_testnet-NATIVE-USDT",
20871
+ name: "Tether USD",
20872
+ symbol: "USDT",
20873
+ decimals: 18,
20874
+ priceId: null,
20875
+ minAmount: "0",
20876
+ assetType: "NATIVE",
20877
+ metadata: null,
20878
+ multiChainAsset: null,
20879
+ hasValue: false,
20880
+ icon: "/assets/chain-assets/stable_testnet-native-usdt.png"
20881
+ },
20882
+ "abstract-NATIVE-ETH": {
20883
+ originChain: "abstract",
20884
+ slug: "abstract-NATIVE-ETH",
20885
+ name: "Ethereum",
20886
+ symbol: "ETH",
20887
+ decimals: 18,
20888
+ priceId: "ethereum",
20889
+ minAmount: "0",
20890
+ assetType: "NATIVE",
20891
+ metadata: null,
20892
+ multiChainAsset: "ETH-Ethereum",
20893
+ hasValue: true,
20894
+ icon: "/assets/chain-assets/abstract-native-eth.png"
20766
20895
  },
20767
20896
  "paseo_assethub-NATIVE-PAS": {
20768
20897
  originChain: "paseo_assethub",
@@ -21188,7 +21317,6 @@
21188
21317
  "Lucky Friday": "wss://rpc-asset-hub-polkadot.luckyfriday.io",
21189
21318
  Parity: "wss://polkadot-asset-hub-rpc.polkadot.io",
21190
21319
  StakeWorld: "wss://dot-rpc.stakeworld.io/assethub",
21191
- Blockops: "wss://polkadot-assethub-rpc.blockops.network/ws",
21192
21320
  Dwellir: "wss://asset-hub-polkadot-rpc.dwellir.com",
21193
21321
  IBP1: "wss://sys.ibp.network/asset-hub-polkadot",
21194
21322
  IBP2: "wss://asset-hub-polkadot.dotters.network"
@@ -23022,7 +23150,7 @@
23022
23150
  slug: "opal",
23023
23151
  name: "Opal",
23024
23152
  isTestnet: true,
23025
- chainStatus: "ACTIVE",
23153
+ chainStatus: "INACTIVE",
23026
23154
  icon: "/assets/chains/opal.png",
23027
23155
  providers: {
23028
23156
  Unique: "wss://ws-opal.unique.network",
@@ -23409,7 +23537,7 @@
23409
23537
  symbol: "KILT",
23410
23538
  decimals: 15,
23411
23539
  hasNativeNft: false,
23412
- supportStaking: true,
23540
+ supportStaking: false,
23413
23541
  supportSmartContract: null,
23414
23542
  crowdloanParaId: null,
23415
23543
  crowdloanFunds: [
@@ -23629,7 +23757,7 @@
23629
23757
  slug: "kintsugi_test",
23630
23758
  name: "Kintsugi Testnet",
23631
23759
  isTestnet: true,
23632
- chainStatus: "ACTIVE",
23760
+ chainStatus: "INACTIVE",
23633
23761
  icon: "/assets/chains/kintsugi_test.png",
23634
23762
  providers: {
23635
23763
  testnet: "wss://api-dev-kintsugi.interlay.io/parachain"
@@ -25578,7 +25706,7 @@
25578
25706
  slug: "kilt_peregrine",
25579
25707
  name: "KILT Peregrine",
25580
25708
  isTestnet: true,
25581
- chainStatus: "ACTIVE",
25709
+ chainStatus: "INACTIVE",
25582
25710
  icon: "/assets/chains/kilt_peregrine.png",
25583
25711
  providers: {
25584
25712
  kilt: "wss://peregrine.kilt.io/parachain-public-ws/"
@@ -28314,7 +28442,7 @@
28314
28442
  slug: "polimec",
28315
28443
  name: "Polimec",
28316
28444
  isTestnet: false,
28317
- chainStatus: "ACTIVE",
28445
+ chainStatus: "INACTIVE",
28318
28446
  icon: "/assets/chains/polimec.png",
28319
28447
  providers: {
28320
28448
  Polimec: "wss://rpc.polimec.org",
@@ -29598,7 +29726,7 @@
29598
29726
  addressPrefix: 42,
29599
29727
  chainType: "RELAYCHAIN",
29600
29728
  crowdloanUrl: null,
29601
- blockExplorer: null,
29729
+ blockExplorer: "https://explorer.comstats.org/#/",
29602
29730
  existentialDeposit: "500",
29603
29731
  symbol: "COMAI",
29604
29732
  decimals: 9,
@@ -29661,7 +29789,6 @@
29661
29789
  Ankr: "wss://turing-testnet.avail-rpc.com/",
29662
29790
  Bware: "wss://avail-turing.public.blastapi.io/",
29663
29791
  AllNodes: "wss://avail-turing-rpc.publicnode.com/",
29664
- RadiumBlock: "wss://turing.public.curie.radiumblock.co/ws",
29665
29792
  BountyBlok: "wss://avail-turing.bountyblok.io/"
29666
29793
  },
29667
29794
  evmInfo: null,
@@ -30082,7 +30209,7 @@
30082
30209
  chainStatus: "ACTIVE",
30083
30210
  icon: "/assets/chains/bitcointestnet.png",
30084
30211
  providers: {
30085
- Mempool: "https://mempool.space/testnet4/api"
30212
+ Koni: "https://btc-api-testnet.koni.studio"
30086
30213
  },
30087
30214
  evmInfo: null,
30088
30215
  substrateInfo: null,
@@ -30811,7 +30938,7 @@
30811
30938
  slug: "aleph_testnet_evm",
30812
30939
  name: "Aleph Zero Testnet - EVM",
30813
30940
  isTestnet: true,
30814
- chainStatus: "ACTIVE",
30941
+ chainStatus: "INACTIVE",
30815
30942
  icon: "/assets/chains/aleph_testnet_evm.png",
30816
30943
  providers: {
30817
30944
  Sepolia: "https://alephzero-sepolia.drpc.org/",
@@ -30839,7 +30966,7 @@
30839
30966
  slug: "aleph_evm",
30840
30967
  name: "Aleph Zero - EVM",
30841
30968
  isTestnet: false,
30842
- chainStatus: "ACTIVE",
30969
+ chainStatus: "INACTIVE",
30843
30970
  icon: "/assets/chains/aleph_evm.png",
30844
30971
  providers: {
30845
30972
  Gelato: "https://rpc.alephzero.raas.gelato.cloud"
@@ -33220,7 +33347,7 @@
33220
33347
  },
33221
33348
  extraInfo: {
33222
33349
  subscanSlug: "tanssi",
33223
- chainBalanceSlug: null
33350
+ chainBalanceSlug: "tanssi"
33224
33351
  },
33225
33352
  bitcoinInfo: null,
33226
33353
  tonInfo: null,
@@ -33648,6 +33775,94 @@
33648
33775
  tonInfo: null,
33649
33776
  cardanoInfo: null
33650
33777
  };
33778
+ var regionx_kusama$1 = {
33779
+ slug: "regionx_kusama",
33780
+ name: "RegionX Kusama",
33781
+ isTestnet: false,
33782
+ chainStatus: "ACTIVE",
33783
+ icon: "/assets/chains/regionx_kusama.png",
33784
+ providers: {
33785
+ RegionX: "wss://regionx-kusama-rpc-lb.zeeve.net/ld940yl9c6/rpc"
33786
+ },
33787
+ evmInfo: null,
33788
+ substrateInfo: {
33789
+ relaySlug: "kusama",
33790
+ paraId: 3422,
33791
+ genesisHash: "0x086319b29662e34a4f7a3de034afe64c93e3ed477e3aed3ab3ef6e31d33bc179",
33792
+ addressPrefix: 74,
33793
+ chainType: "PARACHAIN",
33794
+ crowdloanUrl: null,
33795
+ blockExplorer: null,
33796
+ existentialDeposit: "10000000000",
33797
+ symbol: "KSM",
33798
+ decimals: 12,
33799
+ hasNativeNft: null,
33800
+ supportStaking: null,
33801
+ supportSmartContract: null,
33802
+ crowdloanParaId: null,
33803
+ crowdloanFunds: [
33804
+ ]
33805
+ },
33806
+ extraInfo: null,
33807
+ bitcoinInfo: null,
33808
+ tonInfo: null,
33809
+ cardanoInfo: null
33810
+ };
33811
+ var stable_testnet$1 = {
33812
+ slug: "stable_testnet",
33813
+ name: "Stable Testnet",
33814
+ isTestnet: true,
33815
+ chainStatus: "ACTIVE",
33816
+ icon: "/assets/chains/stable_testnet.png",
33817
+ providers: {
33818
+ JsonRPC: "https://stable-jsonrpc.testnet.chain0.dev/",
33819
+ Stable: "https://stable-jsonrpc-ar.testnet.chain0.dev/"
33820
+ },
33821
+ evmInfo: {
33822
+ evmChainId: 2201,
33823
+ blockExplorer: "https://stable-explorer.testnet.chain0.dev/",
33824
+ existentialDeposit: "0",
33825
+ symbol: "USDT",
33826
+ decimals: 18,
33827
+ supportSmartContract: [
33828
+ "ERC20",
33829
+ "ERC721"
33830
+ ],
33831
+ abiExplorer: null
33832
+ },
33833
+ substrateInfo: null,
33834
+ extraInfo: null,
33835
+ bitcoinInfo: null,
33836
+ tonInfo: null,
33837
+ cardanoInfo: null
33838
+ };
33839
+ var abstract$1 = {
33840
+ slug: "abstract",
33841
+ name: "Abstract Mainnet",
33842
+ isTestnet: false,
33843
+ chainStatus: "ACTIVE",
33844
+ icon: "/assets/chains/abstract.png",
33845
+ providers: {
33846
+ Abs: "https://api.mainnet.abs.xyz/"
33847
+ },
33848
+ evmInfo: {
33849
+ evmChainId: 2741,
33850
+ blockExplorer: "https://abscan.org/",
33851
+ existentialDeposit: "0",
33852
+ symbol: "ETH",
33853
+ decimals: 18,
33854
+ supportSmartContract: [
33855
+ "ERC20",
33856
+ "ERC721"
33857
+ ],
33858
+ abiExplorer: null
33859
+ },
33860
+ substrateInfo: null,
33861
+ extraInfo: null,
33862
+ bitcoinInfo: null,
33863
+ tonInfo: null,
33864
+ cardanoInfo: null
33865
+ };
33651
33866
  const _ChainInfoMap = {
33652
33867
  polkadot: polkadot$1,
33653
33868
  kusama: kusama$1,
@@ -34070,7 +34285,10 @@
34070
34285
  clover_mainnet: clover_mainnet$1,
34071
34286
  quantum_fusion: quantum_fusion$1,
34072
34287
  subtensor_evm: subtensor_evm$1,
34073
- auto_evm: auto_evm$1
34288
+ auto_evm: auto_evm$1,
34289
+ regionx_kusama: regionx_kusama$1,
34290
+ stable_testnet: stable_testnet$1,
34291
+ abstract: abstract$1
34074
34292
  };
34075
34293
 
34076
34294
  var polkadot = "/assets/chains/polkadot.png";
@@ -34435,6 +34653,9 @@
34435
34653
  var quantum_fusion = "/assets/chains/quantum_fusion.png";
34436
34654
  var subtensor_evm = "/assets/chains/subtensor_evm.png";
34437
34655
  var auto_evm = "/assets/chains/auto_evm.png";
34656
+ var regionx_kusama = "/assets/chains/regionx_kusama.png";
34657
+ var stable_testnet = "/assets/chains/stable_testnet.png";
34658
+ var abstract = "/assets/chains/abstract.png";
34438
34659
  const _ChainLogoMap = {
34439
34660
  "default": "/assets/default.png",
34440
34661
  polkadot: polkadot,
@@ -34801,6 +35022,9 @@
34801
35022
  quantum_fusion: quantum_fusion,
34802
35023
  subtensor_evm: subtensor_evm,
34803
35024
  auto_evm: auto_evm,
35025
+ regionx_kusama: regionx_kusama,
35026
+ stable_testnet: stable_testnet,
35027
+ abstract: abstract,
34804
35028
  "custom-Substrate-gosnetwork": "/assets/custom-chains/gos_37cd7c233c.png",
34805
35029
  "custom-Substrate-gosspectral": "/assets/custom-chains/gos_37cd7c233c.png"
34806
35030
  };
@@ -35840,6 +36064,24 @@
35840
36064
  priceId: "autonomys-network",
35841
36065
  hasValue: true,
35842
36066
  icon: "/assets/multi-chain-assets/ai3-autonomys.png"
36067
+ },
36068
+ "TRAC-OriginTrail": {
36069
+ slug: "TRAC-OriginTrail",
36070
+ originChainAsset: null,
36071
+ name: "OriginTrail",
36072
+ symbol: "TRAC",
36073
+ priceId: "origintrail",
36074
+ hasValue: true,
36075
+ icon: "/assets/multi-chain-assets/trac-origintrail.png"
36076
+ },
36077
+ "USD₮0-USD₮0": {
36078
+ slug: "USD₮0-USD₮0",
36079
+ originChainAsset: null,
36080
+ name: "USD₮0",
36081
+ symbol: "USD₮0",
36082
+ priceId: "usdt0",
36083
+ hasValue: true,
36084
+ icon: "/assets/multi-chain-assets/usd₮0-usd₮0.png"
35843
36085
  }
35844
36086
  };
35845
36087
 
@@ -35896,14 +36138,14 @@
35896
36138
  providers,
35897
36139
  ...chainBaseInfo
35898
36140
  } = data;
35899
- return Md5.hashStr(JSON.stringify(chainBaseInfo));
36141
+ return h.hashStr(JSON.stringify(chainBaseInfo));
35900
36142
  }
35901
36143
  function md5HashChainAsset(data) {
35902
36144
  const {
35903
36145
  icon,
35904
36146
  ...assetBaseInfo
35905
36147
  } = data;
35906
- return Md5.hashStr(JSON.stringify(assetBaseInfo));
36148
+ return h.hashStr(JSON.stringify(assetBaseInfo));
35907
36149
  }
35908
36150
 
35909
36151
  exports.AssetLogoMap = AssetLogoMap;