@rhinestone/shared-configs 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/configs/chains.json +348 -0
- package/dist/scripts/__tests__/validation.test.js +166 -0
- package/dist/scripts/generate.js +30 -5
- package/dist/scripts/validation.d.ts +57 -0
- package/dist/scripts/validation.d.ts.map +1 -1
- package/dist/scripts/validation.js +213 -2
- package/dist/src/__tests__/chainFactsClient.test.js +12 -2
- package/dist/src/__tests__/chainVirtualization.test.js +9 -3
- package/dist/src/chainVirtualization.d.ts +10 -8
- package/dist/src/chainVirtualization.d.ts.map +1 -1
- package/dist/src/chainVirtualization.js +11 -12
- package/dist/src/chains.d.ts +16 -3
- package/dist/src/chains.d.ts.map +1 -1
- package/dist/src/chains.js +348 -0
- package/dist/src/generated/packageVersion.d.ts +1 -1
- package/dist/src/generated/packageVersion.d.ts.map +1 -1
- package/dist/src/generated/packageVersion.js +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/types.d.ts +49 -6
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -3,6 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.chains = void 0;
|
|
4
4
|
const chains = {
|
|
5
5
|
"1": {
|
|
6
|
+
"caip2": "eip155:1",
|
|
7
|
+
"explorer": {
|
|
8
|
+
"url": "https://etherscan.io",
|
|
9
|
+
"addressPath": "/address/",
|
|
10
|
+
"txPath": "/tx/"
|
|
11
|
+
},
|
|
6
12
|
"name": "Ethereum",
|
|
7
13
|
"nativeToken": {
|
|
8
14
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -34,6 +40,10 @@ const chains = {
|
|
|
34
40
|
"balanceSlot": null,
|
|
35
41
|
"decimals": 18,
|
|
36
42
|
"pegGroup": "ETH",
|
|
43
|
+
"settlementLayers": [
|
|
44
|
+
"ACROSS",
|
|
45
|
+
"ECO"
|
|
46
|
+
],
|
|
37
47
|
"symbol": "ETH"
|
|
38
48
|
},
|
|
39
49
|
{
|
|
@@ -42,6 +52,10 @@ const chains = {
|
|
|
42
52
|
"balanceSlot": 9,
|
|
43
53
|
"decimals": 6,
|
|
44
54
|
"pegGroup": "USD",
|
|
55
|
+
"settlementLayers": [
|
|
56
|
+
"ACROSS",
|
|
57
|
+
"ECO"
|
|
58
|
+
],
|
|
45
59
|
"symbol": "USDC"
|
|
46
60
|
},
|
|
47
61
|
{
|
|
@@ -51,6 +65,10 @@ const chains = {
|
|
|
51
65
|
"decimals": 18,
|
|
52
66
|
"pegGroup": "ETH",
|
|
53
67
|
"priceSymbol": "ETH",
|
|
68
|
+
"settlementLayers": [
|
|
69
|
+
"ACROSS",
|
|
70
|
+
"ECO"
|
|
71
|
+
],
|
|
54
72
|
"symbol": "WETH"
|
|
55
73
|
},
|
|
56
74
|
{
|
|
@@ -60,6 +78,10 @@ const chains = {
|
|
|
60
78
|
"decimals": 6,
|
|
61
79
|
"pegGroup": "USD",
|
|
62
80
|
"priceSymbol": "USDT",
|
|
81
|
+
"settlementLayers": [
|
|
82
|
+
"ACROSS",
|
|
83
|
+
"ECO"
|
|
84
|
+
],
|
|
63
85
|
"symbol": "USDT"
|
|
64
86
|
}
|
|
65
87
|
],
|
|
@@ -75,6 +97,12 @@ const chains = {
|
|
|
75
97
|
]
|
|
76
98
|
},
|
|
77
99
|
"10": {
|
|
100
|
+
"caip2": "eip155:10",
|
|
101
|
+
"explorer": {
|
|
102
|
+
"url": "https://optimistic.etherscan.io",
|
|
103
|
+
"addressPath": "/address/",
|
|
104
|
+
"txPath": "/tx/"
|
|
105
|
+
},
|
|
78
106
|
"name": "OP Mainnet",
|
|
79
107
|
"nativeToken": {
|
|
80
108
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -105,6 +133,10 @@ const chains = {
|
|
|
105
133
|
"balanceSlot": null,
|
|
106
134
|
"decimals": 18,
|
|
107
135
|
"pegGroup": "ETH",
|
|
136
|
+
"settlementLayers": [
|
|
137
|
+
"ACROSS",
|
|
138
|
+
"ECO"
|
|
139
|
+
],
|
|
108
140
|
"symbol": "ETH"
|
|
109
141
|
},
|
|
110
142
|
{
|
|
@@ -113,6 +145,10 @@ const chains = {
|
|
|
113
145
|
"balanceSlot": 9,
|
|
114
146
|
"decimals": 6,
|
|
115
147
|
"pegGroup": "USD",
|
|
148
|
+
"settlementLayers": [
|
|
149
|
+
"ACROSS",
|
|
150
|
+
"ECO"
|
|
151
|
+
],
|
|
116
152
|
"symbol": "USDC"
|
|
117
153
|
},
|
|
118
154
|
{
|
|
@@ -122,6 +158,10 @@ const chains = {
|
|
|
122
158
|
"decimals": 18,
|
|
123
159
|
"pegGroup": "ETH",
|
|
124
160
|
"priceSymbol": "ETH",
|
|
161
|
+
"settlementLayers": [
|
|
162
|
+
"ACROSS",
|
|
163
|
+
"ECO"
|
|
164
|
+
],
|
|
125
165
|
"symbol": "WETH"
|
|
126
166
|
},
|
|
127
167
|
{
|
|
@@ -131,6 +171,10 @@ const chains = {
|
|
|
131
171
|
"decimals": 6,
|
|
132
172
|
"pegGroup": "USD",
|
|
133
173
|
"priceSymbol": "USDT",
|
|
174
|
+
"settlementLayers": [
|
|
175
|
+
"ACROSS",
|
|
176
|
+
"ECO"
|
|
177
|
+
],
|
|
134
178
|
"symbol": "USDT0"
|
|
135
179
|
},
|
|
136
180
|
{
|
|
@@ -140,6 +184,9 @@ const chains = {
|
|
|
140
184
|
"decimals": 6,
|
|
141
185
|
"pegGroup": "USD",
|
|
142
186
|
"priceSymbol": "USDT",
|
|
187
|
+
"settlementLayers": [
|
|
188
|
+
"ACROSS"
|
|
189
|
+
],
|
|
143
190
|
"symbol": "USDT"
|
|
144
191
|
}
|
|
145
192
|
],
|
|
@@ -155,6 +202,12 @@ const chains = {
|
|
|
155
202
|
]
|
|
156
203
|
},
|
|
157
204
|
"56": {
|
|
205
|
+
"caip2": "eip155:56",
|
|
206
|
+
"explorer": {
|
|
207
|
+
"url": "https://bscscan.com",
|
|
208
|
+
"addressPath": "/address/",
|
|
209
|
+
"txPath": "/tx/"
|
|
210
|
+
},
|
|
158
211
|
"name": "BNB Smart Chain",
|
|
159
212
|
"nativeToken": {
|
|
160
213
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -183,6 +236,10 @@ const chains = {
|
|
|
183
236
|
"balanceSlot": 1,
|
|
184
237
|
"decimals": 18,
|
|
185
238
|
"pegGroup": "USD",
|
|
239
|
+
"settlementLayers": [
|
|
240
|
+
"ACROSS",
|
|
241
|
+
"ECO"
|
|
242
|
+
],
|
|
186
243
|
"symbol": "USDC"
|
|
187
244
|
},
|
|
188
245
|
{
|
|
@@ -192,6 +249,10 @@ const chains = {
|
|
|
192
249
|
"decimals": 18,
|
|
193
250
|
"pegGroup": "ETH",
|
|
194
251
|
"priceSymbol": "ETH",
|
|
252
|
+
"settlementLayers": [
|
|
253
|
+
"ACROSS",
|
|
254
|
+
"ECO"
|
|
255
|
+
],
|
|
195
256
|
"symbol": "WETH"
|
|
196
257
|
},
|
|
197
258
|
{
|
|
@@ -200,6 +261,10 @@ const chains = {
|
|
|
200
261
|
"balanceSlot": 1,
|
|
201
262
|
"decimals": 18,
|
|
202
263
|
"pegGroup": "USD",
|
|
264
|
+
"settlementLayers": [
|
|
265
|
+
"ACROSS",
|
|
266
|
+
"ECO"
|
|
267
|
+
],
|
|
203
268
|
"symbol": "USDT"
|
|
204
269
|
}
|
|
205
270
|
],
|
|
@@ -215,6 +280,12 @@ const chains = {
|
|
|
215
280
|
]
|
|
216
281
|
},
|
|
217
282
|
"100": {
|
|
283
|
+
"caip2": "eip155:100",
|
|
284
|
+
"explorer": {
|
|
285
|
+
"url": "https://gnosisscan.io",
|
|
286
|
+
"addressPath": "/address/",
|
|
287
|
+
"txPath": "/tx/"
|
|
288
|
+
},
|
|
218
289
|
"name": "Gnosis",
|
|
219
290
|
"nativeToken": {
|
|
220
291
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -255,6 +326,12 @@ const chains = {
|
|
|
255
326
|
]
|
|
256
327
|
},
|
|
257
328
|
"130": {
|
|
329
|
+
"caip2": "eip155:130",
|
|
330
|
+
"explorer": {
|
|
331
|
+
"url": "https://uniscan.xyz",
|
|
332
|
+
"addressPath": "/address/",
|
|
333
|
+
"txPath": "/tx/"
|
|
334
|
+
},
|
|
258
335
|
"name": "Unichain",
|
|
259
336
|
"nativeToken": {
|
|
260
337
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -285,6 +362,10 @@ const chains = {
|
|
|
285
362
|
"balanceSlot": null,
|
|
286
363
|
"decimals": 18,
|
|
287
364
|
"pegGroup": "ETH",
|
|
365
|
+
"settlementLayers": [
|
|
366
|
+
"ACROSS",
|
|
367
|
+
"ECO"
|
|
368
|
+
],
|
|
288
369
|
"symbol": "ETH"
|
|
289
370
|
},
|
|
290
371
|
{
|
|
@@ -293,6 +374,10 @@ const chains = {
|
|
|
293
374
|
"balanceSlot": 9,
|
|
294
375
|
"decimals": 6,
|
|
295
376
|
"pegGroup": "USD",
|
|
377
|
+
"settlementLayers": [
|
|
378
|
+
"ACROSS",
|
|
379
|
+
"ECO"
|
|
380
|
+
],
|
|
296
381
|
"symbol": "USDC"
|
|
297
382
|
},
|
|
298
383
|
{
|
|
@@ -302,6 +387,10 @@ const chains = {
|
|
|
302
387
|
"decimals": 18,
|
|
303
388
|
"pegGroup": "ETH",
|
|
304
389
|
"priceSymbol": "ETH",
|
|
390
|
+
"settlementLayers": [
|
|
391
|
+
"ACROSS",
|
|
392
|
+
"ECO"
|
|
393
|
+
],
|
|
305
394
|
"symbol": "WETH"
|
|
306
395
|
},
|
|
307
396
|
{
|
|
@@ -311,6 +400,10 @@ const chains = {
|
|
|
311
400
|
"decimals": 6,
|
|
312
401
|
"pegGroup": "USD",
|
|
313
402
|
"priceSymbol": "USDT",
|
|
403
|
+
"settlementLayers": [
|
|
404
|
+
"ACROSS",
|
|
405
|
+
"ECO"
|
|
406
|
+
],
|
|
314
407
|
"symbol": "USDT0"
|
|
315
408
|
}
|
|
316
409
|
],
|
|
@@ -326,6 +419,12 @@ const chains = {
|
|
|
326
419
|
]
|
|
327
420
|
},
|
|
328
421
|
"137": {
|
|
422
|
+
"caip2": "eip155:137",
|
|
423
|
+
"explorer": {
|
|
424
|
+
"url": "https://polygonscan.com",
|
|
425
|
+
"addressPath": "/address/",
|
|
426
|
+
"txPath": "/tx/"
|
|
427
|
+
},
|
|
329
428
|
"name": "Polygon",
|
|
330
429
|
"nativeToken": {
|
|
331
430
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -357,6 +456,10 @@ const chains = {
|
|
|
357
456
|
"balanceSlot": 9,
|
|
358
457
|
"decimals": 6,
|
|
359
458
|
"pegGroup": "USD",
|
|
459
|
+
"settlementLayers": [
|
|
460
|
+
"ACROSS",
|
|
461
|
+
"ECO"
|
|
462
|
+
],
|
|
360
463
|
"symbol": "USDC"
|
|
361
464
|
},
|
|
362
465
|
{
|
|
@@ -366,6 +469,9 @@ const chains = {
|
|
|
366
469
|
"decimals": 18,
|
|
367
470
|
"pegGroup": "ETH",
|
|
368
471
|
"priceSymbol": "ETH",
|
|
472
|
+
"settlementLayers": [
|
|
473
|
+
"ACROSS"
|
|
474
|
+
],
|
|
369
475
|
"symbol": "WETH"
|
|
370
476
|
},
|
|
371
477
|
{
|
|
@@ -375,6 +481,10 @@ const chains = {
|
|
|
375
481
|
"decimals": 6,
|
|
376
482
|
"pegGroup": "USD",
|
|
377
483
|
"priceSymbol": "USDT",
|
|
484
|
+
"settlementLayers": [
|
|
485
|
+
"ACROSS",
|
|
486
|
+
"ECO"
|
|
487
|
+
],
|
|
378
488
|
"symbol": "USDT0"
|
|
379
489
|
}
|
|
380
490
|
],
|
|
@@ -390,6 +500,12 @@ const chains = {
|
|
|
390
500
|
]
|
|
391
501
|
},
|
|
392
502
|
"143": {
|
|
503
|
+
"caip2": "eip155:143",
|
|
504
|
+
"explorer": {
|
|
505
|
+
"url": "https://monadscan.com",
|
|
506
|
+
"addressPath": "/address/",
|
|
507
|
+
"txPath": "/tx/"
|
|
508
|
+
},
|
|
393
509
|
"name": "Monad",
|
|
394
510
|
"nativeToken": {
|
|
395
511
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -412,6 +528,9 @@ const chains = {
|
|
|
412
528
|
"approvalSlot": null,
|
|
413
529
|
"balanceSlot": null,
|
|
414
530
|
"decimals": 18,
|
|
531
|
+
"settlementLayers": [
|
|
532
|
+
"ACROSS"
|
|
533
|
+
],
|
|
415
534
|
"symbol": "MON"
|
|
416
535
|
},
|
|
417
536
|
{
|
|
@@ -420,6 +539,9 @@ const chains = {
|
|
|
420
539
|
"balanceSlot": 3,
|
|
421
540
|
"decimals": 18,
|
|
422
541
|
"priceSymbol": "MON",
|
|
542
|
+
"settlementLayers": [
|
|
543
|
+
"ACROSS"
|
|
544
|
+
],
|
|
423
545
|
"symbol": "WMON"
|
|
424
546
|
},
|
|
425
547
|
{
|
|
@@ -428,6 +550,9 @@ const chains = {
|
|
|
428
550
|
"balanceSlot": 9,
|
|
429
551
|
"decimals": 6,
|
|
430
552
|
"pegGroup": "USD",
|
|
553
|
+
"settlementLayers": [
|
|
554
|
+
"ACROSS"
|
|
555
|
+
],
|
|
431
556
|
"symbol": "USDC"
|
|
432
557
|
},
|
|
433
558
|
{
|
|
@@ -436,6 +561,9 @@ const chains = {
|
|
|
436
561
|
"balanceSlot": 51,
|
|
437
562
|
"decimals": 6,
|
|
438
563
|
"pegGroup": "USD",
|
|
564
|
+
"settlementLayers": [
|
|
565
|
+
"ACROSS"
|
|
566
|
+
],
|
|
439
567
|
"symbol": "USDT0"
|
|
440
568
|
}
|
|
441
569
|
],
|
|
@@ -451,6 +579,12 @@ const chains = {
|
|
|
451
579
|
]
|
|
452
580
|
},
|
|
453
581
|
"146": {
|
|
582
|
+
"caip2": "eip155:146",
|
|
583
|
+
"explorer": {
|
|
584
|
+
"url": "https://sonicscan.org",
|
|
585
|
+
"addressPath": "/address/",
|
|
586
|
+
"txPath": "/tx/"
|
|
587
|
+
},
|
|
454
588
|
"name": "Sonic",
|
|
455
589
|
"nativeToken": {
|
|
456
590
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -478,6 +612,9 @@ const chains = {
|
|
|
478
612
|
"balanceSlot": 9,
|
|
479
613
|
"decimals": 6,
|
|
480
614
|
"pegGroup": "USD",
|
|
615
|
+
"settlementLayers": [
|
|
616
|
+
"ECO"
|
|
617
|
+
],
|
|
481
618
|
"symbol": "USDC"
|
|
482
619
|
}
|
|
483
620
|
],
|
|
@@ -493,6 +630,12 @@ const chains = {
|
|
|
493
630
|
]
|
|
494
631
|
},
|
|
495
632
|
"999": {
|
|
633
|
+
"caip2": "eip155:999",
|
|
634
|
+
"explorer": {
|
|
635
|
+
"url": "https://hyperevmscan.io",
|
|
636
|
+
"addressPath": "/address/",
|
|
637
|
+
"txPath": "/tx/"
|
|
638
|
+
},
|
|
496
639
|
"name": "HyperEVM",
|
|
497
640
|
"nativeToken": {
|
|
498
641
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -517,6 +660,10 @@ const chains = {
|
|
|
517
660
|
"balanceSlot": 9,
|
|
518
661
|
"decimals": 6,
|
|
519
662
|
"pegGroup": "USD",
|
|
663
|
+
"settlementLayers": [
|
|
664
|
+
"ACROSS",
|
|
665
|
+
"ECO"
|
|
666
|
+
],
|
|
520
667
|
"symbol": "USDC"
|
|
521
668
|
},
|
|
522
669
|
{
|
|
@@ -526,6 +673,10 @@ const chains = {
|
|
|
526
673
|
"decimals": 6,
|
|
527
674
|
"pegGroup": "USD",
|
|
528
675
|
"priceSymbol": "USDT",
|
|
676
|
+
"settlementLayers": [
|
|
677
|
+
"ACROSS",
|
|
678
|
+
"ECO"
|
|
679
|
+
],
|
|
529
680
|
"symbol": "USDT0"
|
|
530
681
|
}
|
|
531
682
|
],
|
|
@@ -543,6 +694,7 @@ const chains = {
|
|
|
543
694
|
},
|
|
544
695
|
"1337": {
|
|
545
696
|
"caip2": "hypercore:mainnet",
|
|
697
|
+
"explorer": null,
|
|
546
698
|
"name": "HyperCore",
|
|
547
699
|
"nativeToken": {
|
|
548
700
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -573,6 +725,12 @@ const chains = {
|
|
|
573
725
|
"providers": []
|
|
574
726
|
},
|
|
575
727
|
"1868": {
|
|
728
|
+
"caip2": "eip155:1868",
|
|
729
|
+
"explorer": {
|
|
730
|
+
"url": "https://soneium.blockscout.com",
|
|
731
|
+
"addressPath": "/address/",
|
|
732
|
+
"txPath": "/tx/"
|
|
733
|
+
},
|
|
576
734
|
"name": "Soneium Mainnet",
|
|
577
735
|
"nativeToken": {
|
|
578
736
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -593,6 +751,9 @@ const chains = {
|
|
|
593
751
|
"balanceSlot": null,
|
|
594
752
|
"decimals": 18,
|
|
595
753
|
"pegGroup": "ETH",
|
|
754
|
+
"settlementLayers": [
|
|
755
|
+
"ACROSS"
|
|
756
|
+
],
|
|
596
757
|
"symbol": "ETH"
|
|
597
758
|
},
|
|
598
759
|
{
|
|
@@ -601,6 +762,9 @@ const chains = {
|
|
|
601
762
|
"balanceSlot": 9,
|
|
602
763
|
"decimals": 6,
|
|
603
764
|
"pegGroup": "USD",
|
|
765
|
+
"settlementLayers": [
|
|
766
|
+
"ACROSS"
|
|
767
|
+
],
|
|
604
768
|
"symbol": "USDC"
|
|
605
769
|
},
|
|
606
770
|
{
|
|
@@ -609,6 +773,9 @@ const chains = {
|
|
|
609
773
|
"balanceSlot": 0,
|
|
610
774
|
"decimals": 6,
|
|
611
775
|
"pegGroup": "USD",
|
|
776
|
+
"settlementLayers": [
|
|
777
|
+
"ACROSS"
|
|
778
|
+
],
|
|
612
779
|
"symbol": "USDT"
|
|
613
780
|
},
|
|
614
781
|
{
|
|
@@ -618,6 +785,9 @@ const chains = {
|
|
|
618
785
|
"decimals": 18,
|
|
619
786
|
"pegGroup": "ETH",
|
|
620
787
|
"priceSymbol": "ETH",
|
|
788
|
+
"settlementLayers": [
|
|
789
|
+
"ACROSS"
|
|
790
|
+
],
|
|
621
791
|
"symbol": "WETH"
|
|
622
792
|
}
|
|
623
793
|
],
|
|
@@ -633,6 +803,12 @@ const chains = {
|
|
|
633
803
|
]
|
|
634
804
|
},
|
|
635
805
|
"4663": {
|
|
806
|
+
"caip2": "eip155:4663",
|
|
807
|
+
"explorer": {
|
|
808
|
+
"url": "https://robinhoodchain.blockscout.com",
|
|
809
|
+
"addressPath": "/address/",
|
|
810
|
+
"txPath": "/tx/"
|
|
811
|
+
},
|
|
636
812
|
"name": "Robinhood Chain",
|
|
637
813
|
"nativeToken": {
|
|
638
814
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -665,6 +841,9 @@ const chains = {
|
|
|
665
841
|
"decimals": 18,
|
|
666
842
|
"pegGroup": "ETH",
|
|
667
843
|
"priceSymbol": "ETH",
|
|
844
|
+
"settlementLayers": [
|
|
845
|
+
"ACROSS"
|
|
846
|
+
],
|
|
668
847
|
"symbol": "WETH"
|
|
669
848
|
},
|
|
670
849
|
{
|
|
@@ -673,6 +852,9 @@ const chains = {
|
|
|
673
852
|
"balanceSlot": 1,
|
|
674
853
|
"decimals": 6,
|
|
675
854
|
"pegGroup": "USD",
|
|
855
|
+
"settlementLayers": [
|
|
856
|
+
"ACROSS"
|
|
857
|
+
],
|
|
676
858
|
"symbol": "USDG"
|
|
677
859
|
}
|
|
678
860
|
],
|
|
@@ -688,6 +870,12 @@ const chains = {
|
|
|
688
870
|
]
|
|
689
871
|
},
|
|
690
872
|
"8453": {
|
|
873
|
+
"caip2": "eip155:8453",
|
|
874
|
+
"explorer": {
|
|
875
|
+
"url": "https://basescan.org",
|
|
876
|
+
"addressPath": "/address/",
|
|
877
|
+
"txPath": "/tx/"
|
|
878
|
+
},
|
|
691
879
|
"name": "Base",
|
|
692
880
|
"nativeToken": {
|
|
693
881
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -717,6 +905,10 @@ const chains = {
|
|
|
717
905
|
"balanceSlot": null,
|
|
718
906
|
"decimals": 18,
|
|
719
907
|
"pegGroup": "ETH",
|
|
908
|
+
"settlementLayers": [
|
|
909
|
+
"ACROSS",
|
|
910
|
+
"ECO"
|
|
911
|
+
],
|
|
720
912
|
"symbol": "ETH"
|
|
721
913
|
},
|
|
722
914
|
{
|
|
@@ -725,6 +917,10 @@ const chains = {
|
|
|
725
917
|
"balanceSlot": 9,
|
|
726
918
|
"decimals": 6,
|
|
727
919
|
"pegGroup": "USD",
|
|
920
|
+
"settlementLayers": [
|
|
921
|
+
"ACROSS",
|
|
922
|
+
"ECO"
|
|
923
|
+
],
|
|
728
924
|
"symbol": "USDC"
|
|
729
925
|
},
|
|
730
926
|
{
|
|
@@ -734,6 +930,10 @@ const chains = {
|
|
|
734
930
|
"decimals": 18,
|
|
735
931
|
"pegGroup": "ETH",
|
|
736
932
|
"priceSymbol": "ETH",
|
|
933
|
+
"settlementLayers": [
|
|
934
|
+
"ACROSS",
|
|
935
|
+
"ECO"
|
|
936
|
+
],
|
|
737
937
|
"symbol": "WETH"
|
|
738
938
|
}
|
|
739
939
|
],
|
|
@@ -749,6 +949,12 @@ const chains = {
|
|
|
749
949
|
]
|
|
750
950
|
},
|
|
751
951
|
"9745": {
|
|
952
|
+
"caip2": "eip155:9745",
|
|
953
|
+
"explorer": {
|
|
954
|
+
"url": "https://plasmascan.to",
|
|
955
|
+
"addressPath": "/address/",
|
|
956
|
+
"txPath": "/tx/"
|
|
957
|
+
},
|
|
752
958
|
"name": "Plasma",
|
|
753
959
|
"nativeToken": {
|
|
754
960
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -777,6 +983,10 @@ const chains = {
|
|
|
777
983
|
"decimals": 6,
|
|
778
984
|
"pegGroup": "USD",
|
|
779
985
|
"priceSymbol": "USDT",
|
|
986
|
+
"settlementLayers": [
|
|
987
|
+
"ACROSS",
|
|
988
|
+
"ECO"
|
|
989
|
+
],
|
|
780
990
|
"symbol": "USDT0"
|
|
781
991
|
}
|
|
782
992
|
],
|
|
@@ -793,6 +1003,12 @@ const chains = {
|
|
|
793
1003
|
]
|
|
794
1004
|
},
|
|
795
1005
|
"9746": {
|
|
1006
|
+
"caip2": "eip155:9746",
|
|
1007
|
+
"explorer": {
|
|
1008
|
+
"url": "https://testnet.plasmascan.to",
|
|
1009
|
+
"addressPath": "/address/",
|
|
1010
|
+
"txPath": "/tx/"
|
|
1011
|
+
},
|
|
796
1012
|
"name": "Plasma Testnet",
|
|
797
1013
|
"nativeToken": {
|
|
798
1014
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -813,6 +1029,9 @@ const chains = {
|
|
|
813
1029
|
"decimals": 6,
|
|
814
1030
|
"pegGroup": "USD",
|
|
815
1031
|
"priceSymbol": "USDT",
|
|
1032
|
+
"settlementLayers": [
|
|
1033
|
+
"ECO"
|
|
1034
|
+
],
|
|
816
1035
|
"symbol": "USDT0"
|
|
817
1036
|
},
|
|
818
1037
|
{
|
|
@@ -821,6 +1040,9 @@ const chains = {
|
|
|
821
1040
|
"balanceSlot": 0,
|
|
822
1041
|
"decimals": 6,
|
|
823
1042
|
"pegGroup": "USD",
|
|
1043
|
+
"settlementLayers": [
|
|
1044
|
+
"ECO"
|
|
1045
|
+
],
|
|
824
1046
|
"symbol": "USDC"
|
|
825
1047
|
}
|
|
826
1048
|
],
|
|
@@ -837,6 +1059,12 @@ const chains = {
|
|
|
837
1059
|
]
|
|
838
1060
|
},
|
|
839
1061
|
"42161": {
|
|
1062
|
+
"caip2": "eip155:42161",
|
|
1063
|
+
"explorer": {
|
|
1064
|
+
"url": "https://arbiscan.io",
|
|
1065
|
+
"addressPath": "/address/",
|
|
1066
|
+
"txPath": "/tx/"
|
|
1067
|
+
},
|
|
840
1068
|
"name": "Arbitrum One",
|
|
841
1069
|
"nativeToken": {
|
|
842
1070
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -868,6 +1096,10 @@ const chains = {
|
|
|
868
1096
|
"balanceSlot": null,
|
|
869
1097
|
"decimals": 18,
|
|
870
1098
|
"pegGroup": "ETH",
|
|
1099
|
+
"settlementLayers": [
|
|
1100
|
+
"ACROSS",
|
|
1101
|
+
"ECO"
|
|
1102
|
+
],
|
|
871
1103
|
"symbol": "ETH"
|
|
872
1104
|
},
|
|
873
1105
|
{
|
|
@@ -876,6 +1108,10 @@ const chains = {
|
|
|
876
1108
|
"balanceSlot": 9,
|
|
877
1109
|
"decimals": 6,
|
|
878
1110
|
"pegGroup": "USD",
|
|
1111
|
+
"settlementLayers": [
|
|
1112
|
+
"ACROSS",
|
|
1113
|
+
"ECO"
|
|
1114
|
+
],
|
|
879
1115
|
"symbol": "USDC"
|
|
880
1116
|
},
|
|
881
1117
|
{
|
|
@@ -885,6 +1121,10 @@ const chains = {
|
|
|
885
1121
|
"decimals": 18,
|
|
886
1122
|
"pegGroup": "ETH",
|
|
887
1123
|
"priceSymbol": "ETH",
|
|
1124
|
+
"settlementLayers": [
|
|
1125
|
+
"ACROSS",
|
|
1126
|
+
"ECO"
|
|
1127
|
+
],
|
|
888
1128
|
"symbol": "WETH"
|
|
889
1129
|
},
|
|
890
1130
|
{
|
|
@@ -894,6 +1134,10 @@ const chains = {
|
|
|
894
1134
|
"decimals": 6,
|
|
895
1135
|
"pegGroup": "USD",
|
|
896
1136
|
"priceSymbol": "USDT",
|
|
1137
|
+
"settlementLayers": [
|
|
1138
|
+
"ACROSS",
|
|
1139
|
+
"ECO"
|
|
1140
|
+
],
|
|
897
1141
|
"symbol": "USDT0"
|
|
898
1142
|
}
|
|
899
1143
|
],
|
|
@@ -909,6 +1153,12 @@ const chains = {
|
|
|
909
1153
|
]
|
|
910
1154
|
},
|
|
911
1155
|
"43114": {
|
|
1156
|
+
"caip2": "eip155:43114",
|
|
1157
|
+
"explorer": {
|
|
1158
|
+
"url": "https://snowtrace.io",
|
|
1159
|
+
"addressPath": "/address/",
|
|
1160
|
+
"txPath": "/tx/"
|
|
1161
|
+
},
|
|
912
1162
|
"name": "Avalanche",
|
|
913
1163
|
"nativeToken": {
|
|
914
1164
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -951,6 +1201,9 @@ const chains = {
|
|
|
951
1201
|
"balanceSlot": 9,
|
|
952
1202
|
"decimals": 6,
|
|
953
1203
|
"pegGroup": "USD",
|
|
1204
|
+
"settlementLayers": [
|
|
1205
|
+
"ACROSS"
|
|
1206
|
+
],
|
|
954
1207
|
"symbol": "USDC"
|
|
955
1208
|
},
|
|
956
1209
|
{
|
|
@@ -960,6 +1213,9 @@ const chains = {
|
|
|
960
1213
|
"decimals": 6,
|
|
961
1214
|
"pegGroup": "USD",
|
|
962
1215
|
"priceSymbol": "USDT",
|
|
1216
|
+
"settlementLayers": [
|
|
1217
|
+
"ACROSS"
|
|
1218
|
+
],
|
|
963
1219
|
"symbol": "USDT"
|
|
964
1220
|
},
|
|
965
1221
|
{
|
|
@@ -984,6 +1240,12 @@ const chains = {
|
|
|
984
1240
|
]
|
|
985
1241
|
},
|
|
986
1242
|
"84532": {
|
|
1243
|
+
"caip2": "eip155:84532",
|
|
1244
|
+
"explorer": {
|
|
1245
|
+
"url": "https://sepolia.basescan.org",
|
|
1246
|
+
"addressPath": "/address/",
|
|
1247
|
+
"txPath": "/tx/"
|
|
1248
|
+
},
|
|
987
1249
|
"name": "Base Sepolia",
|
|
988
1250
|
"nativeToken": {
|
|
989
1251
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1005,6 +1267,10 @@ const chains = {
|
|
|
1005
1267
|
"balanceSlot": null,
|
|
1006
1268
|
"decimals": 18,
|
|
1007
1269
|
"pegGroup": "ETH",
|
|
1270
|
+
"settlementLayers": [
|
|
1271
|
+
"ACROSS",
|
|
1272
|
+
"ECO"
|
|
1273
|
+
],
|
|
1008
1274
|
"symbol": "ETH"
|
|
1009
1275
|
},
|
|
1010
1276
|
{
|
|
@@ -1013,6 +1279,10 @@ const chains = {
|
|
|
1013
1279
|
"balanceSlot": 9,
|
|
1014
1280
|
"decimals": 6,
|
|
1015
1281
|
"pegGroup": "USD",
|
|
1282
|
+
"settlementLayers": [
|
|
1283
|
+
"ACROSS",
|
|
1284
|
+
"ECO"
|
|
1285
|
+
],
|
|
1016
1286
|
"symbol": "USDC"
|
|
1017
1287
|
},
|
|
1018
1288
|
{
|
|
@@ -1022,6 +1292,10 @@ const chains = {
|
|
|
1022
1292
|
"decimals": 18,
|
|
1023
1293
|
"pegGroup": "ETH",
|
|
1024
1294
|
"priceSymbol": "ETH",
|
|
1295
|
+
"settlementLayers": [
|
|
1296
|
+
"ACROSS",
|
|
1297
|
+
"ECO"
|
|
1298
|
+
],
|
|
1025
1299
|
"symbol": "WETH"
|
|
1026
1300
|
},
|
|
1027
1301
|
{
|
|
@@ -1031,6 +1305,10 @@ const chains = {
|
|
|
1031
1305
|
"decimals": 6,
|
|
1032
1306
|
"pegGroup": "USD",
|
|
1033
1307
|
"priceSymbol": "USDC",
|
|
1308
|
+
"settlementLayers": [
|
|
1309
|
+
"ACROSS",
|
|
1310
|
+
"ECO"
|
|
1311
|
+
],
|
|
1034
1312
|
"symbol": "MockUSD",
|
|
1035
1313
|
"unpriced": true
|
|
1036
1314
|
}
|
|
@@ -1047,6 +1325,12 @@ const chains = {
|
|
|
1047
1325
|
]
|
|
1048
1326
|
},
|
|
1049
1327
|
"421614": {
|
|
1328
|
+
"caip2": "eip155:421614",
|
|
1329
|
+
"explorer": {
|
|
1330
|
+
"url": "https://sepolia.arbiscan.io",
|
|
1331
|
+
"addressPath": "/address/",
|
|
1332
|
+
"txPath": "/tx/"
|
|
1333
|
+
},
|
|
1050
1334
|
"name": "Arbitrum Sepolia",
|
|
1051
1335
|
"nativeToken": {
|
|
1052
1336
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1068,6 +1352,10 @@ const chains = {
|
|
|
1068
1352
|
"balanceSlot": null,
|
|
1069
1353
|
"decimals": 18,
|
|
1070
1354
|
"pegGroup": "ETH",
|
|
1355
|
+
"settlementLayers": [
|
|
1356
|
+
"ACROSS",
|
|
1357
|
+
"ECO"
|
|
1358
|
+
],
|
|
1071
1359
|
"symbol": "ETH"
|
|
1072
1360
|
},
|
|
1073
1361
|
{
|
|
@@ -1076,6 +1364,10 @@ const chains = {
|
|
|
1076
1364
|
"balanceSlot": 9,
|
|
1077
1365
|
"decimals": 6,
|
|
1078
1366
|
"pegGroup": "USD",
|
|
1367
|
+
"settlementLayers": [
|
|
1368
|
+
"ACROSS",
|
|
1369
|
+
"ECO"
|
|
1370
|
+
],
|
|
1079
1371
|
"symbol": "USDC"
|
|
1080
1372
|
},
|
|
1081
1373
|
{
|
|
@@ -1085,6 +1377,10 @@ const chains = {
|
|
|
1085
1377
|
"decimals": 18,
|
|
1086
1378
|
"pegGroup": "ETH",
|
|
1087
1379
|
"priceSymbol": "ETH",
|
|
1380
|
+
"settlementLayers": [
|
|
1381
|
+
"ACROSS",
|
|
1382
|
+
"ECO"
|
|
1383
|
+
],
|
|
1088
1384
|
"symbol": "WETH"
|
|
1089
1385
|
}
|
|
1090
1386
|
],
|
|
@@ -1100,6 +1396,12 @@ const chains = {
|
|
|
1100
1396
|
]
|
|
1101
1397
|
},
|
|
1102
1398
|
"747474": {
|
|
1399
|
+
"caip2": "eip155:747474",
|
|
1400
|
+
"explorer": {
|
|
1401
|
+
"url": "https://katanascan.com",
|
|
1402
|
+
"addressPath": "/address/",
|
|
1403
|
+
"txPath": "/tx/"
|
|
1404
|
+
},
|
|
1103
1405
|
"name": "Katana",
|
|
1104
1406
|
"nativeToken": {
|
|
1105
1407
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1162,6 +1464,12 @@ const chains = {
|
|
|
1162
1464
|
]
|
|
1163
1465
|
},
|
|
1164
1466
|
"11155111": {
|
|
1467
|
+
"caip2": "eip155:11155111",
|
|
1468
|
+
"explorer": {
|
|
1469
|
+
"url": "https://sepolia.etherscan.io",
|
|
1470
|
+
"addressPath": "/address/",
|
|
1471
|
+
"txPath": "/tx/"
|
|
1472
|
+
},
|
|
1165
1473
|
"name": "Sepolia",
|
|
1166
1474
|
"nativeToken": {
|
|
1167
1475
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1183,6 +1491,10 @@ const chains = {
|
|
|
1183
1491
|
"balanceSlot": null,
|
|
1184
1492
|
"decimals": 18,
|
|
1185
1493
|
"pegGroup": "ETH",
|
|
1494
|
+
"settlementLayers": [
|
|
1495
|
+
"ACROSS",
|
|
1496
|
+
"ECO"
|
|
1497
|
+
],
|
|
1186
1498
|
"symbol": "ETH"
|
|
1187
1499
|
},
|
|
1188
1500
|
{
|
|
@@ -1191,6 +1503,10 @@ const chains = {
|
|
|
1191
1503
|
"balanceSlot": 9,
|
|
1192
1504
|
"decimals": 6,
|
|
1193
1505
|
"pegGroup": "USD",
|
|
1506
|
+
"settlementLayers": [
|
|
1507
|
+
"ACROSS",
|
|
1508
|
+
"ECO"
|
|
1509
|
+
],
|
|
1194
1510
|
"symbol": "USDC"
|
|
1195
1511
|
},
|
|
1196
1512
|
{
|
|
@@ -1200,6 +1516,10 @@ const chains = {
|
|
|
1200
1516
|
"decimals": 18,
|
|
1201
1517
|
"pegGroup": "ETH",
|
|
1202
1518
|
"priceSymbol": "ETH",
|
|
1519
|
+
"settlementLayers": [
|
|
1520
|
+
"ACROSS",
|
|
1521
|
+
"ECO"
|
|
1522
|
+
],
|
|
1203
1523
|
"symbol": "WETH"
|
|
1204
1524
|
}
|
|
1205
1525
|
],
|
|
@@ -1215,6 +1535,12 @@ const chains = {
|
|
|
1215
1535
|
]
|
|
1216
1536
|
},
|
|
1217
1537
|
"11155420": {
|
|
1538
|
+
"caip2": "eip155:11155420",
|
|
1539
|
+
"explorer": {
|
|
1540
|
+
"url": "https://optimism-sepolia.blockscout.com",
|
|
1541
|
+
"addressPath": "/address/",
|
|
1542
|
+
"txPath": "/tx/"
|
|
1543
|
+
},
|
|
1218
1544
|
"name": "OP Sepolia",
|
|
1219
1545
|
"nativeToken": {
|
|
1220
1546
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1236,6 +1562,10 @@ const chains = {
|
|
|
1236
1562
|
"balanceSlot": null,
|
|
1237
1563
|
"decimals": 18,
|
|
1238
1564
|
"pegGroup": "ETH",
|
|
1565
|
+
"settlementLayers": [
|
|
1566
|
+
"ACROSS",
|
|
1567
|
+
"ECO"
|
|
1568
|
+
],
|
|
1239
1569
|
"symbol": "ETH"
|
|
1240
1570
|
},
|
|
1241
1571
|
{
|
|
@@ -1244,6 +1574,10 @@ const chains = {
|
|
|
1244
1574
|
"balanceSlot": 9,
|
|
1245
1575
|
"decimals": 6,
|
|
1246
1576
|
"pegGroup": "USD",
|
|
1577
|
+
"settlementLayers": [
|
|
1578
|
+
"ACROSS",
|
|
1579
|
+
"ECO"
|
|
1580
|
+
],
|
|
1247
1581
|
"symbol": "USDC"
|
|
1248
1582
|
},
|
|
1249
1583
|
{
|
|
@@ -1253,6 +1587,10 @@ const chains = {
|
|
|
1253
1587
|
"decimals": 18,
|
|
1254
1588
|
"pegGroup": "ETH",
|
|
1255
1589
|
"priceSymbol": "ETH",
|
|
1590
|
+
"settlementLayers": [
|
|
1591
|
+
"ACROSS",
|
|
1592
|
+
"ECO"
|
|
1593
|
+
],
|
|
1256
1594
|
"symbol": "WETH"
|
|
1257
1595
|
}
|
|
1258
1596
|
],
|
|
@@ -1269,6 +1607,11 @@ const chains = {
|
|
|
1269
1607
|
},
|
|
1270
1608
|
"728126428": {
|
|
1271
1609
|
"caip2": "tron:mainnet",
|
|
1610
|
+
"explorer": {
|
|
1611
|
+
"addressPath": "/#/address/",
|
|
1612
|
+
"txPath": "/#/transaction/",
|
|
1613
|
+
"url": "https://tronscan.org"
|
|
1614
|
+
},
|
|
1272
1615
|
"name": "Tron",
|
|
1273
1616
|
"nativeToken": {
|
|
1274
1617
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1311,6 +1654,11 @@ const chains = {
|
|
|
1311
1654
|
},
|
|
1312
1655
|
"792703809": {
|
|
1313
1656
|
"caip2": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
|
|
1657
|
+
"explorer": {
|
|
1658
|
+
"addressPath": "/address/",
|
|
1659
|
+
"txPath": "/tx/",
|
|
1660
|
+
"url": "https://solscan.io"
|
|
1661
|
+
},
|
|
1314
1662
|
"name": "Solana",
|
|
1315
1663
|
"nativeToken": {
|
|
1316
1664
|
"address": "11111111111111111111111111111111",
|