@layerzerolabs/static-chain-info 0.0.8

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.
@@ -0,0 +1,1616 @@
1
+ import { ChainName } from '@layerzerolabs/layerzero-definitions';
2
+
3
+ export enum ChainSubType {
4
+ ARBSTACK,
5
+ OPSTACK,
6
+ AVALANCHE,
7
+ TRON,
8
+ }
9
+
10
+ export interface StaticInfoForChain {
11
+ chainSubType?: ChainSubType;
12
+ addressSizeInBytes: number;
13
+ decimals: number;
14
+ mptBaseGas?: number;
15
+ fpBaseGas: number;
16
+ symbol: string;
17
+ chainLayer?: number;
18
+ }
19
+
20
+ export interface StaticConfig {
21
+ [baseName: string]: StaticInfoForChain;
22
+ }
23
+
24
+ const TON_DECIMALS = 9;
25
+ const EVM_DECIMALS = 18;
26
+ const TRON_DECIMALS = 6;
27
+ const SOLANA_DECIMALS = 9;
28
+ const HEDERA_DECIMALS = 8;
29
+ const APTOS_DECIMALS = 8;
30
+ const XRP_DECIMALS = 6;
31
+ const INITIA_DECIMALS = 6;
32
+
33
+ export const staticConfig: StaticConfig = {
34
+ [ChainName.ETHEREUM]: {
35
+ addressSizeInBytes: 20,
36
+ decimals: EVM_DECIMALS,
37
+ mptBaseGas: 195000,
38
+ fpBaseGas: 195000,
39
+ symbol: 'ETH',
40
+ },
41
+ [ChainName.ARBITRUM]: {
42
+ addressSizeInBytes: 20,
43
+ decimals: EVM_DECIMALS,
44
+ mptBaseGas: 5550000,
45
+ fpBaseGas: 5550000,
46
+ symbol: 'ETH',
47
+ },
48
+ [ChainName.AVALANCHE]: {
49
+ chainSubType: ChainSubType.AVALANCHE,
50
+ addressSizeInBytes: 20,
51
+ decimals: EVM_DECIMALS,
52
+ mptBaseGas: 195000,
53
+ fpBaseGas: 195000,
54
+ symbol: 'AVAX',
55
+ },
56
+ [ChainName.SOLANA]: {
57
+ addressSizeInBytes: 32,
58
+ decimals: SOLANA_DECIMALS,
59
+ mptBaseGas: 5000,
60
+ fpBaseGas: 5000,
61
+ symbol: 'SOL',
62
+ },
63
+ [ChainName.TRON]: {
64
+ addressSizeInBytes: 20,
65
+ decimals: TRON_DECIMALS,
66
+ mptBaseGas: 195000,
67
+ fpBaseGas: 195000,
68
+ symbol: 'TRX',
69
+ chainSubType: ChainSubType.TRON,
70
+ },
71
+ [ChainName.TON]: {
72
+ addressSizeInBytes: 32,
73
+ decimals: TON_DECIMALS,
74
+ mptBaseGas: 200000, // FIXME: Don't know
75
+ fpBaseGas: 200000, // FIXME: Don't know
76
+ symbol: 'TON',
77
+ chainLayer: 1,
78
+ },
79
+ [ChainName.POLYGON]: {
80
+ addressSizeInBytes: 20,
81
+ decimals: EVM_DECIMALS,
82
+ mptBaseGas: 195000,
83
+ fpBaseGas: 195000,
84
+ symbol: 'MATIC',
85
+ chainLayer: 2,
86
+ },
87
+ [ChainName.OPTIMISM]: {
88
+ addressSizeInBytes: 20,
89
+ decimals: EVM_DECIMALS,
90
+ mptBaseGas: 200000,
91
+ fpBaseGas: 200000,
92
+ symbol: 'ETH',
93
+ chainLayer: 2,
94
+ },
95
+ [ChainName.FANTOM]: {
96
+ addressSizeInBytes: 20,
97
+ decimals: EVM_DECIMALS,
98
+ mptBaseGas: 200000,
99
+ fpBaseGas: 200000,
100
+ symbol: 'FTM',
101
+ chainLayer: 1,
102
+ },
103
+ [ChainName.DFK]: {
104
+ addressSizeInBytes: 20,
105
+ decimals: EVM_DECIMALS,
106
+ mptBaseGas: 200000,
107
+ fpBaseGas: 200000,
108
+ symbol: 'JEWEL',
109
+ },
110
+ [ChainName.HARMONY]: {
111
+ addressSizeInBytes: 20,
112
+ decimals: EVM_DECIMALS,
113
+ mptBaseGas: 200000,
114
+ fpBaseGas: 200000,
115
+ symbol: 'ONE',
116
+ chainLayer: 2,
117
+ },
118
+ [ChainName.DEXALOT]: {
119
+ addressSizeInBytes: 20,
120
+ decimals: EVM_DECIMALS,
121
+ mptBaseGas: 199000,
122
+ fpBaseGas: 199000,
123
+ symbol: 'ALOT',
124
+ },
125
+ [ChainName.MOONBEAM]: {
126
+ addressSizeInBytes: 20,
127
+ decimals: EVM_DECIMALS,
128
+ mptBaseGas: 200000,
129
+ fpBaseGas: 200000,
130
+ symbol: 'GLMR',
131
+ },
132
+ [ChainName.MOONRIVER]: {
133
+ addressSizeInBytes: 20,
134
+ decimals: EVM_DECIMALS,
135
+ mptBaseGas: 200000,
136
+ fpBaseGas: 200000,
137
+ symbol: 'MOVR',
138
+ },
139
+ [ChainName.APTOS]: {
140
+ addressSizeInBytes: 32,
141
+ decimals: APTOS_DECIMALS,
142
+ mptBaseGas: 5000,
143
+ fpBaseGas: 5000,
144
+ symbol: 'APT',
145
+ },
146
+ [ChainName.CELO]: {
147
+ addressSizeInBytes: 20,
148
+ decimals: EVM_DECIMALS,
149
+ mptBaseGas: 200000,
150
+ fpBaseGas: 200000,
151
+ symbol: 'CELO',
152
+ },
153
+ [ChainName.CONVERGE]: {
154
+ addressSizeInBytes: 20,
155
+ decimals: EVM_DECIMALS,
156
+ mptBaseGas: 200000,
157
+ fpBaseGas: 200000,
158
+ symbol: 'ETH',
159
+ chainLayer: 2,
160
+ },
161
+ [ChainName.DOS]: {
162
+ addressSizeInBytes: 20,
163
+ decimals: EVM_DECIMALS,
164
+ mptBaseGas: 200000,
165
+ fpBaseGas: 200000,
166
+ symbol: 'DOS',
167
+ },
168
+ [ChainName.FUSE]: {
169
+ addressSizeInBytes: 20,
170
+ decimals: EVM_DECIMALS,
171
+ mptBaseGas: 200000,
172
+ fpBaseGas: 200000,
173
+ symbol: 'FUSE',
174
+ chainLayer: 2,
175
+ },
176
+ [ChainName.KLAYTN]: {
177
+ addressSizeInBytes: 20,
178
+ decimals: EVM_DECIMALS,
179
+ mptBaseGas: 200000,
180
+ fpBaseGas: 200000,
181
+ symbol: 'KLAY',
182
+ },
183
+ [ChainName.SHRAPNEL]: {
184
+ addressSizeInBytes: 20,
185
+ decimals: EVM_DECIMALS,
186
+ mptBaseGas: 200000,
187
+ fpBaseGas: 200000,
188
+ symbol: 'SHRAP',
189
+ },
190
+ [ChainName.METIS]: {
191
+ addressSizeInBytes: 20,
192
+ decimals: EVM_DECIMALS,
193
+ mptBaseGas: 200000,
194
+ fpBaseGas: 200000,
195
+ symbol: 'METIS',
196
+ chainLayer: 2,
197
+ },
198
+ [ChainName.COREDAO]: {
199
+ addressSizeInBytes: 20,
200
+ decimals: EVM_DECIMALS,
201
+ mptBaseGas: 200000,
202
+ fpBaseGas: 200000,
203
+ symbol: 'CORE',
204
+ },
205
+ [ChainName.GNOSIS]: {
206
+ addressSizeInBytes: 20,
207
+ decimals: EVM_DECIMALS,
208
+ mptBaseGas: 200000,
209
+ fpBaseGas: 200000,
210
+ symbol: 'DAI',
211
+ },
212
+ [ChainName.ZKSYNC]: {
213
+ addressSizeInBytes: 20,
214
+ decimals: EVM_DECIMALS,
215
+ mptBaseGas: 200000,
216
+ fpBaseGas: 200000,
217
+ symbol: 'ETH',
218
+ chainLayer: 2,
219
+ },
220
+ [ChainName.OKX]: {
221
+ addressSizeInBytes: 20,
222
+ decimals: EVM_DECIMALS,
223
+ mptBaseGas: 200000,
224
+ fpBaseGas: 200000,
225
+ symbol: 'OKT',
226
+ },
227
+ [ChainName.METER]: {
228
+ addressSizeInBytes: 20,
229
+ decimals: EVM_DECIMALS,
230
+ mptBaseGas: 200000,
231
+ fpBaseGas: 200000,
232
+ symbol: 'MTR',
233
+ },
234
+ [ChainName.GOERLI]: {
235
+ addressSizeInBytes: 20,
236
+ decimals: EVM_DECIMALS,
237
+ mptBaseGas: 195000,
238
+ fpBaseGas: 195000,
239
+ symbol: 'GETH',
240
+ },
241
+ // @deprecated put it back there for backfill purpose
242
+ [ChainName.SWIMMER]: {
243
+ addressSizeInBytes: 20,
244
+ decimals: EVM_DECIMALS,
245
+ mptBaseGas: 195000,
246
+ fpBaseGas: 195000,
247
+ symbol: 'GETH',
248
+ },
249
+ // @deprecated put it back there for backfill purpose
250
+ [ChainName.INTAIN]: {
251
+ addressSizeInBytes: 20,
252
+ decimals: EVM_DECIMALS,
253
+ mptBaseGas: 195000,
254
+ fpBaseGas: 195000,
255
+ symbol: 'GETH',
256
+ },
257
+ [ChainName.SEPOLIA]: {
258
+ addressSizeInBytes: 20,
259
+ decimals: EVM_DECIMALS,
260
+ mptBaseGas: 195000,
261
+ fpBaseGas: 195000,
262
+ symbol: 'SETH',
263
+ },
264
+ [ChainName.SOMNIA]: {
265
+ addressSizeInBytes: 20,
266
+ decimals: EVM_DECIMALS,
267
+ mptBaseGas: 200000,
268
+ fpBaseGas: 200000,
269
+ symbol: 'STT',
270
+ },
271
+ [ChainName.SOMNIASHANNON]: {
272
+ addressSizeInBytes: 20,
273
+ decimals: EVM_DECIMALS,
274
+ mptBaseGas: 200000,
275
+ fpBaseGas: 200000,
276
+ symbol: 'STT',
277
+ },
278
+ [ChainName.SILICON]: {
279
+ addressSizeInBytes: 20,
280
+ decimals: EVM_DECIMALS,
281
+ symbol: 'ETH',
282
+ mptBaseGas: 200000,
283
+ fpBaseGas: 200000,
284
+ },
285
+ [ChainName.SILICONSEPOLIA]: {
286
+ addressSizeInBytes: 20,
287
+ decimals: EVM_DECIMALS,
288
+ symbol: 'ETH',
289
+ mptBaseGas: 200000,
290
+ fpBaseGas: 200000,
291
+ },
292
+ [ChainName.ETHEREAL]: {
293
+ addressSizeInBytes: 20,
294
+ decimals: EVM_DECIMALS,
295
+ mptBaseGas: 200000,
296
+ fpBaseGas: 200000,
297
+ symbol: 'USDe',
298
+ },
299
+ [ChainName.BASE]: {
300
+ addressSizeInBytes: 20,
301
+ decimals: EVM_DECIMALS,
302
+ mptBaseGas: 200000,
303
+ fpBaseGas: 200000,
304
+ symbol: 'ETH',
305
+ chainLayer: 2,
306
+ },
307
+ [ChainName.ZKCONSENSYS]: {
308
+ addressSizeInBytes: 20,
309
+ decimals: EVM_DECIMALS,
310
+ mptBaseGas: 195000,
311
+ fpBaseGas: 195000,
312
+ symbol: 'ETH',
313
+ chainLayer: 2,
314
+ },
315
+ [ChainName.ZKPOLYGON]: {
316
+ addressSizeInBytes: 20,
317
+ decimals: EVM_DECIMALS,
318
+ mptBaseGas: 195000,
319
+ fpBaseGas: 195000,
320
+ symbol: 'ETH',
321
+ chainLayer: 2,
322
+ },
323
+ [ChainName.SCROLL]: {
324
+ addressSizeInBytes: 20,
325
+ decimals: EVM_DECIMALS,
326
+ mptBaseGas: 200000,
327
+ fpBaseGas: 200000,
328
+ symbol: 'ETH',
329
+ chainLayer: 2,
330
+ },
331
+ [ChainName.CATHAY]: {
332
+ addressSizeInBytes: 20,
333
+ decimals: EVM_DECIMALS,
334
+ mptBaseGas: 200000,
335
+ fpBaseGas: 200000,
336
+ symbol: 'ETH',
337
+ },
338
+ [ChainName.KAVA]: {
339
+ addressSizeInBytes: 20,
340
+ decimals: EVM_DECIMALS,
341
+ mptBaseGas: 200000,
342
+ fpBaseGas: 200000,
343
+ symbol: 'KAVA',
344
+ },
345
+ [ChainName.TENET]: {
346
+ addressSizeInBytes: 20,
347
+ decimals: EVM_DECIMALS,
348
+ mptBaseGas: 200000,
349
+ fpBaseGas: 200000,
350
+ symbol: 'TENET',
351
+ },
352
+ [ChainName.ORDERLY]: {
353
+ addressSizeInBytes: 20,
354
+ decimals: EVM_DECIMALS,
355
+ mptBaseGas: 200000,
356
+ fpBaseGas: 200000,
357
+ symbol: 'ETH',
358
+ chainLayer: 2,
359
+ },
360
+ [ChainName.CANTO]: {
361
+ addressSizeInBytes: 20,
362
+ decimals: EVM_DECIMALS,
363
+ mptBaseGas: 200000,
364
+ fpBaseGas: 200000,
365
+ symbol: 'CANTO',
366
+ },
367
+ [ChainName.NOVA]: {
368
+ addressSizeInBytes: 20,
369
+ decimals: EVM_DECIMALS,
370
+ mptBaseGas: 5550000,
371
+ fpBaseGas: 5550000,
372
+ symbol: 'ETH',
373
+ chainLayer: 2,
374
+ },
375
+ [ChainName.AAVEGOTCHI]: {
376
+ addressSizeInBytes: 20,
377
+ decimals: 8, // TEMPORARILY 8, they will re-genesis to 18
378
+ mptBaseGas: 200000,
379
+ fpBaseGas: 200000,
380
+ symbol: 'MATIC',
381
+ },
382
+ [ChainName.BLOCKGEN]: {
383
+ addressSizeInBytes: 20,
384
+ decimals: EVM_DECIMALS,
385
+ mptBaseGas: 200000,
386
+ fpBaseGas: 200000,
387
+ symbol: 'MATIC',
388
+ },
389
+ [ChainName.MERITCIRCLE]: {
390
+ addressSizeInBytes: 20,
391
+ decimals: EVM_DECIMALS,
392
+ mptBaseGas: 200000,
393
+ fpBaseGas: 200000,
394
+ symbol: 'BEAM',
395
+ },
396
+ [ChainName.MANTLE]: {
397
+ addressSizeInBytes: 20,
398
+ decimals: EVM_DECIMALS,
399
+ mptBaseGas: 200000,
400
+ fpBaseGas: 200000,
401
+ symbol: 'MNT',
402
+ chainLayer: 2,
403
+ },
404
+ // @]deprecated put it back there for backfill purpose
405
+ [ChainName.HUBBLE]: {
406
+ addressSizeInBytes: 20,
407
+ decimals: EVM_DECIMALS,
408
+ mptBaseGas: 200000,
409
+ fpBaseGas: 200000,
410
+ symbol: 'USDC',
411
+ chainLayer: 2,
412
+ },
413
+ [ChainName.ZORA]: {
414
+ addressSizeInBytes: 20,
415
+ decimals: EVM_DECIMALS,
416
+ mptBaseGas: 200000,
417
+ fpBaseGas: 200000,
418
+ symbol: 'ETH',
419
+ chainLayer: 2,
420
+ },
421
+ [ChainName.TOMO]: {
422
+ addressSizeInBytes: 20,
423
+ decimals: EVM_DECIMALS,
424
+ mptBaseGas: 200000,
425
+ fpBaseGas: 200000,
426
+ symbol: 'TOMO',
427
+ },
428
+ [ChainName.LOOT]: {
429
+ addressSizeInBytes: 20,
430
+ decimals: EVM_DECIMALS,
431
+ mptBaseGas: 200000,
432
+ fpBaseGas: 200000,
433
+ symbol: 'AGLD',
434
+ chainLayer: 2,
435
+ },
436
+ [ChainName.TELOS]: {
437
+ addressSizeInBytes: 20,
438
+ decimals: EVM_DECIMALS,
439
+ mptBaseGas: 200000,
440
+ fpBaseGas: 200000,
441
+ symbol: 'TLOS',
442
+ },
443
+ [ChainName.OPBNB]: {
444
+ addressSizeInBytes: 20,
445
+ decimals: EVM_DECIMALS,
446
+ mptBaseGas: 200000,
447
+ fpBaseGas: 200000,
448
+ symbol: 'BNB',
449
+ chainLayer: 2,
450
+ },
451
+ [ChainName.SHIMMER]: {
452
+ addressSizeInBytes: 20,
453
+ decimals: EVM_DECIMALS,
454
+ mptBaseGas: 200000,
455
+ fpBaseGas: 200000,
456
+ symbol: 'SMR',
457
+ chainLayer: 2,
458
+ },
459
+ [ChainName.AURORA]: {
460
+ addressSizeInBytes: 20,
461
+ decimals: EVM_DECIMALS,
462
+ mptBaseGas: 195000,
463
+ fpBaseGas: 195000,
464
+ symbol: 'ETH',
465
+ },
466
+ [ChainName.LIF3]: {
467
+ addressSizeInBytes: 20,
468
+ decimals: EVM_DECIMALS,
469
+ mptBaseGas: 195000,
470
+ fpBaseGas: 195000,
471
+ symbol: 'LIF3',
472
+ chainLayer: 2,
473
+ },
474
+ [ChainName.KIWI]: {
475
+ addressSizeInBytes: 20,
476
+ decimals: EVM_DECIMALS,
477
+ mptBaseGas: 200000,
478
+ fpBaseGas: 200000,
479
+ symbol: 'SHRAP',
480
+ },
481
+ [ChainName.KIWI2]: {
482
+ addressSizeInBytes: 20,
483
+ decimals: EVM_DECIMALS,
484
+ mptBaseGas: 200000,
485
+ fpBaseGas: 200000,
486
+ symbol: 'SHRAP',
487
+ },
488
+ [ChainName.ASTAR]: {
489
+ addressSizeInBytes: 20,
490
+ decimals: EVM_DECIMALS,
491
+ mptBaseGas: 195000,
492
+ fpBaseGas: 195000,
493
+ symbol: 'ASTR',
494
+ chainLayer: 2,
495
+ },
496
+ [ChainName.CONFLUX]: {
497
+ addressSizeInBytes: 20,
498
+ decimals: EVM_DECIMALS,
499
+ mptBaseGas: 195000,
500
+ fpBaseGas: 195000,
501
+ symbol: 'CFX',
502
+ },
503
+ [ChainName.EON]: {
504
+ addressSizeInBytes: 20,
505
+ decimals: EVM_DECIMALS,
506
+ mptBaseGas: 185000,
507
+ fpBaseGas: 185000,
508
+ symbol: 'ZEN',
509
+ chainLayer: 2,
510
+ },
511
+ [ChainName.XPLA]: {
512
+ addressSizeInBytes: 20,
513
+ decimals: EVM_DECIMALS,
514
+ mptBaseGas: 185000,
515
+ fpBaseGas: 185000,
516
+ symbol: 'XPLA',
517
+ },
518
+ [ChainName.HOLESKY]: {
519
+ addressSizeInBytes: 20,
520
+ decimals: EVM_DECIMALS,
521
+ mptBaseGas: 195000,
522
+ fpBaseGas: 195000,
523
+ symbol: 'ETH',
524
+ },
525
+ [ChainName.INJECTIVE]: {
526
+ addressSizeInBytes: 20,
527
+ decimals: EVM_DECIMALS,
528
+ mptBaseGas: 185000,
529
+ fpBaseGas: 185000,
530
+ symbol: 'ETH',
531
+ },
532
+ [ChainName.IDEX]: {
533
+ addressSizeInBytes: 20,
534
+ decimals: EVM_DECIMALS,
535
+ mptBaseGas: 185000,
536
+ fpBaseGas: 185000,
537
+ symbol: 'ETH',
538
+ },
539
+ [ChainName.MANTA]: {
540
+ addressSizeInBytes: 20,
541
+ decimals: EVM_DECIMALS,
542
+ mptBaseGas: 200000,
543
+ fpBaseGas: 200000,
544
+ symbol: 'ETH',
545
+ chainLayer: 2,
546
+ },
547
+ [ChainName.ZKATANA]: {
548
+ addressSizeInBytes: 20,
549
+ decimals: EVM_DECIMALS,
550
+ mptBaseGas: 195000,
551
+ fpBaseGas: 195000,
552
+ symbol: 'ETH',
553
+ chainLayer: 2,
554
+ },
555
+ [ChainName.FRAME]: {
556
+ addressSizeInBytes: 20,
557
+ decimals: EVM_DECIMALS,
558
+ mptBaseGas: 5550000,
559
+ fpBaseGas: 5550000,
560
+ symbol: 'ETH',
561
+ chainLayer: 2,
562
+ },
563
+ [ChainName.POLYGONCDK]: {
564
+ addressSizeInBytes: 20,
565
+ decimals: EVM_DECIMALS,
566
+ mptBaseGas: 195000,
567
+ fpBaseGas: 195000,
568
+ symbol: 'ETH',
569
+ chainLayer: 2,
570
+ },
571
+ [ChainName.ARBSEP]: {
572
+ addressSizeInBytes: 20,
573
+ decimals: EVM_DECIMALS,
574
+ mptBaseGas: 5550000,
575
+ fpBaseGas: 5550000,
576
+ symbol: 'ETH',
577
+ },
578
+ [ChainName.OPTSEP]: {
579
+ addressSizeInBytes: 20,
580
+ decimals: EVM_DECIMALS,
581
+ mptBaseGas: 200000,
582
+ fpBaseGas: 200000,
583
+ symbol: 'ETH',
584
+ },
585
+ [ChainName.VENN]: {
586
+ addressSizeInBytes: 20,
587
+ decimals: EVM_DECIMALS,
588
+ mptBaseGas: 200000,
589
+ fpBaseGas: 200000,
590
+ symbol: 'ETH',
591
+ },
592
+ [ChainName.RARIBLE]: {
593
+ addressSizeInBytes: 20,
594
+ decimals: EVM_DECIMALS,
595
+ mptBaseGas: 5550000,
596
+ fpBaseGas: 5550000,
597
+ symbol: 'ETH',
598
+ chainLayer: 2,
599
+ },
600
+ [ChainName.GUNZILLA]: {
601
+ addressSizeInBytes: 20,
602
+ decimals: EVM_DECIMALS,
603
+ mptBaseGas: 199000,
604
+ fpBaseGas: 199000,
605
+ symbol: 'AVAX',
606
+ },
607
+ [ChainName.RC1]: {
608
+ addressSizeInBytes: 20,
609
+ decimals: EVM_DECIMALS,
610
+ mptBaseGas: 199000,
611
+ fpBaseGas: 199000,
612
+ symbol: 'AVAX',
613
+ },
614
+ [ChainName.BERA]: {
615
+ addressSizeInBytes: 20,
616
+ decimals: EVM_DECIMALS,
617
+ mptBaseGas: 195000,
618
+ fpBaseGas: 195000,
619
+ symbol: 'BERA',
620
+ chainLayer: 3,
621
+ },
622
+ [ChainName.BB1]: {
623
+ addressSizeInBytes: 20,
624
+ decimals: EVM_DECIMALS,
625
+ mptBaseGas: 5550000,
626
+ fpBaseGas: 5550000,
627
+ symbol: 'INJ',
628
+ },
629
+ [ChainName.XCHAIN]: {
630
+ addressSizeInBytes: 20,
631
+ decimals: EVM_DECIMALS,
632
+ mptBaseGas: 195000,
633
+ fpBaseGas: 195000,
634
+ symbol: 'ETH',
635
+ chainLayer: 2,
636
+ },
637
+ [ChainName.JOC]: {
638
+ addressSizeInBytes: 20,
639
+ decimals: EVM_DECIMALS,
640
+ mptBaseGas: 195000,
641
+ fpBaseGas: 195000,
642
+ symbol: 'JOC',
643
+ chainLayer: 1,
644
+ },
645
+ [ChainName.BLAST]: {
646
+ addressSizeInBytes: 20,
647
+ decimals: EVM_DECIMALS,
648
+ mptBaseGas: 200000,
649
+ fpBaseGas: 200000,
650
+ symbol: 'ETH',
651
+ chainLayer: 2,
652
+ },
653
+ [ChainName.XAI]: {
654
+ addressSizeInBytes: 20,
655
+ decimals: EVM_DECIMALS,
656
+ mptBaseGas: 200000,
657
+ fpBaseGas: 200000,
658
+ symbol: 'XAI',
659
+ },
660
+ [ChainName.TANGIBLE]: {
661
+ addressSizeInBytes: 20,
662
+ decimals: EVM_DECIMALS,
663
+ mptBaseGas: 200000,
664
+ fpBaseGas: 200000,
665
+ symbol: 'ETH',
666
+ chainLayer: 2,
667
+ },
668
+ [ChainName.ZKPOLYGONSEP]: {
669
+ addressSizeInBytes: 20,
670
+ decimals: EVM_DECIMALS,
671
+ mptBaseGas: 195000,
672
+ fpBaseGas: 195000,
673
+ symbol: 'ETH',
674
+ },
675
+ [ChainName.BASESEP]: {
676
+ addressSizeInBytes: 20,
677
+ decimals: EVM_DECIMALS,
678
+ mptBaseGas: 200000,
679
+ fpBaseGas: 200000,
680
+ symbol: 'ETH',
681
+ },
682
+ [ChainName.ZORASEP]: {
683
+ addressSizeInBytes: 20,
684
+ decimals: EVM_DECIMALS,
685
+ mptBaseGas: 200000,
686
+ fpBaseGas: 200000,
687
+ symbol: 'ETH',
688
+ },
689
+ [ChainName.ETHERLINK]: {
690
+ addressSizeInBytes: 20,
691
+ decimals: EVM_DECIMALS,
692
+ mptBaseGas: 200000,
693
+ fpBaseGas: 200000,
694
+ symbol: 'XTZ',
695
+ chainLayer: 2,
696
+ },
697
+ [ChainName.EXOCORE]: {
698
+ addressSizeInBytes: 20,
699
+ decimals: EVM_DECIMALS,
700
+ mptBaseGas: 200000,
701
+ fpBaseGas: 200000,
702
+ symbol: 'ETH',
703
+ },
704
+ [ChainName.FRAXTAL]: {
705
+ addressSizeInBytes: 20,
706
+ decimals: EVM_DECIMALS,
707
+ mptBaseGas: 200000,
708
+ fpBaseGas: 200000,
709
+ symbol: 'FRAX',
710
+ chainLayer: 2,
711
+ },
712
+ [ChainName.TILTYARD]: {
713
+ addressSizeInBytes: 20,
714
+ decimals: EVM_DECIMALS,
715
+ mptBaseGas: 200000,
716
+ fpBaseGas: 200000,
717
+ symbol: 'TILT',
718
+ },
719
+ [ChainName.SKALE]: {
720
+ addressSizeInBytes: 20,
721
+ decimals: EVM_DECIMALS,
722
+ mptBaseGas: 200000,
723
+ fpBaseGas: 200000,
724
+ symbol: 'MATIC',
725
+ chainLayer: 2,
726
+ },
727
+ [ChainName.MODE]: {
728
+ addressSizeInBytes: 20,
729
+ decimals: EVM_DECIMALS,
730
+ mptBaseGas: 200000,
731
+ fpBaseGas: 200000,
732
+ symbol: 'ETH',
733
+ chainLayer: 2,
734
+ },
735
+ [ChainName.SEI]: {
736
+ addressSizeInBytes: 20,
737
+ decimals: EVM_DECIMALS,
738
+ mptBaseGas: 200000,
739
+ fpBaseGas: 200000,
740
+ symbol: 'SEI',
741
+ },
742
+ [ChainName.MANTLESEP]: {
743
+ addressSizeInBytes: 20,
744
+ decimals: EVM_DECIMALS,
745
+ mptBaseGas: 200000,
746
+ fpBaseGas: 200000,
747
+ symbol: 'MNT',
748
+ },
749
+ [ChainName.HEDERA]: {
750
+ addressSizeInBytes: 20,
751
+ decimals: HEDERA_DECIMALS,
752
+ mptBaseGas: 200000,
753
+ fpBaseGas: 200000,
754
+ symbol: 'HBAR',
755
+ },
756
+ [ChainName.MASA]: {
757
+ addressSizeInBytes: 20,
758
+ decimals: EVM_DECIMALS,
759
+ mptBaseGas: 200000,
760
+ fpBaseGas: 200000,
761
+ symbol: 'AVAX',
762
+ },
763
+ [ChainName.UNREAL]: {
764
+ addressSizeInBytes: 20,
765
+ decimals: EVM_DECIMALS,
766
+ mptBaseGas: 200000,
767
+ fpBaseGas: 200000,
768
+ symbol: 'ETH',
769
+ chainLayer: 2,
770
+ },
771
+ [ChainName.MERLIN]: {
772
+ addressSizeInBytes: 20,
773
+ decimals: EVM_DECIMALS,
774
+ mptBaseGas: 200000,
775
+ fpBaseGas: 200000,
776
+ symbol: 'BTC',
777
+ chainLayer: 2,
778
+ },
779
+ [ChainName.REAL]: {
780
+ addressSizeInBytes: 20,
781
+ decimals: EVM_DECIMALS,
782
+ mptBaseGas: 200000,
783
+ fpBaseGas: 200000,
784
+ symbol: 'ETH',
785
+ chainLayer: 2,
786
+ },
787
+ [ChainName.HOMEVERSE]: {
788
+ addressSizeInBytes: 20,
789
+ decimals: EVM_DECIMALS,
790
+ mptBaseGas: 200000,
791
+ fpBaseGas: 200000,
792
+ symbol: 'OAS',
793
+ },
794
+ [ChainName.ZKASTAR]: {
795
+ addressSizeInBytes: 20,
796
+ decimals: EVM_DECIMALS,
797
+ mptBaseGas: 200000,
798
+ fpBaseGas: 200000,
799
+ symbol: 'ETH',
800
+ },
801
+ [ChainName.AMOY]: {
802
+ addressSizeInBytes: 20,
803
+ decimals: EVM_DECIMALS,
804
+ mptBaseGas: 200000,
805
+ fpBaseGas: 200000,
806
+ symbol: 'MATIC',
807
+ },
808
+ [ChainName.XLAYER]: {
809
+ addressSizeInBytes: 20,
810
+ decimals: EVM_DECIMALS,
811
+ mptBaseGas: 200000,
812
+ fpBaseGas: 200000,
813
+ symbol: 'OKB',
814
+ },
815
+ [ChainName.FORM]: {
816
+ addressSizeInBytes: 20,
817
+ decimals: EVM_DECIMALS,
818
+ mptBaseGas: 200000,
819
+ fpBaseGas: 200000,
820
+ symbol: 'ETH',
821
+ },
822
+ [ChainName.LL1]: {
823
+ addressSizeInBytes: 20,
824
+ decimals: EVM_DECIMALS,
825
+ mptBaseGas: 200000,
826
+ fpBaseGas: 200000,
827
+ symbol: 'USDC',
828
+ },
829
+ [ChainName.BESU1]: {
830
+ addressSizeInBytes: 20,
831
+ decimals: EVM_DECIMALS,
832
+ mptBaseGas: 200000,
833
+ fpBaseGas: 200000,
834
+ symbol: 'USDC',
835
+ chainLayer: 1,
836
+ },
837
+ [ChainName.MANTASEP]: {
838
+ addressSizeInBytes: 20,
839
+ decimals: EVM_DECIMALS,
840
+ mptBaseGas: 200000,
841
+ fpBaseGas: 200000,
842
+ symbol: 'ETH',
843
+ },
844
+ [ChainName.DEGEN]: {
845
+ addressSizeInBytes: 20,
846
+ decimals: EVM_DECIMALS,
847
+ mptBaseGas: 200000,
848
+ fpBaseGas: 200000,
849
+ symbol: 'DEGEN',
850
+ },
851
+ [ChainName.ZIRCUIT]: {
852
+ addressSizeInBytes: 20,
853
+ decimals: EVM_DECIMALS,
854
+ mptBaseGas: 200000,
855
+ fpBaseGas: 200000,
856
+ symbol: 'ETH',
857
+ },
858
+ [ChainName.CAMP]: {
859
+ addressSizeInBytes: 20,
860
+ decimals: EVM_DECIMALS,
861
+ mptBaseGas: 200000,
862
+ fpBaseGas: 200000,
863
+ symbol: 'CAMP',
864
+ chainLayer: 1,
865
+ },
866
+ [ChainName.TAIKO]: {
867
+ addressSizeInBytes: 20,
868
+ decimals: EVM_DECIMALS,
869
+ mptBaseGas: 200000,
870
+ fpBaseGas: 200000,
871
+ symbol: 'ETH',
872
+ chainLayer: 1,
873
+ },
874
+ [ChainName.OLIVE]: {
875
+ addressSizeInBytes: 20,
876
+ decimals: EVM_DECIMALS,
877
+ mptBaseGas: 200000,
878
+ fpBaseGas: 200000,
879
+ symbol: 'MATIC',
880
+ },
881
+ [ChainName.SANKO]: {
882
+ addressSizeInBytes: 20,
883
+ decimals: EVM_DECIMALS,
884
+ mptBaseGas: 200000,
885
+ fpBaseGas: 200000,
886
+ symbol: 'DMT',
887
+ },
888
+ [ChainName.CYBER]: {
889
+ addressSizeInBytes: 20,
890
+ decimals: EVM_DECIMALS,
891
+ mptBaseGas: 200000,
892
+ fpBaseGas: 200000,
893
+ symbol: 'ETH',
894
+ chainLayer: 2,
895
+ },
896
+ [ChainName.BOB]: {
897
+ addressSizeInBytes: 20,
898
+ decimals: EVM_DECIMALS,
899
+ mptBaseGas: 200000,
900
+ fpBaseGas: 200000,
901
+ symbol: 'ETH',
902
+ chainLayer: 2,
903
+ },
904
+ [ChainName.BOTANIX]: {
905
+ addressSizeInBytes: 20,
906
+ decimals: EVM_DECIMALS,
907
+ mptBaseGas: 200000,
908
+ fpBaseGas: 200000,
909
+ symbol: 'BTC',
910
+ chainLayer: 2,
911
+ },
912
+ [ChainName.EBI]: {
913
+ addressSizeInBytes: 20,
914
+ decimals: EVM_DECIMALS,
915
+ mptBaseGas: 200000,
916
+ fpBaseGas: 200000,
917
+ symbol: 'ETH',
918
+ chainLayer: 2,
919
+ },
920
+ [ChainName.LINEASEP]: {
921
+ addressSizeInBytes: 20,
922
+ decimals: EVM_DECIMALS,
923
+ mptBaseGas: 195000,
924
+ fpBaseGas: 195000,
925
+ symbol: 'ETH',
926
+ chainLayer: 2,
927
+ },
928
+ [ChainName.IOTA]: {
929
+ addressSizeInBytes: 20,
930
+ decimals: EVM_DECIMALS,
931
+ mptBaseGas: 200000,
932
+ fpBaseGas: 200000,
933
+ symbol: 'IOTA',
934
+ chainLayer: 1,
935
+ },
936
+ [ChainName.MORPH]: {
937
+ addressSizeInBytes: 20,
938
+ decimals: EVM_DECIMALS,
939
+ mptBaseGas: 200000,
940
+ fpBaseGas: 200000,
941
+ symbol: 'ETH',
942
+ chainLayer: 2,
943
+ },
944
+ [ChainName.BOUNCEBIT]: {
945
+ addressSizeInBytes: 20,
946
+ decimals: EVM_DECIMALS,
947
+ mptBaseGas: 200000,
948
+ fpBaseGas: 200000,
949
+ symbol: 'BB',
950
+ chainLayer: 1,
951
+ },
952
+ [ChainName.GRAVITY]: {
953
+ addressSizeInBytes: 20,
954
+ decimals: EVM_DECIMALS,
955
+ mptBaseGas: 200000,
956
+ fpBaseGas: 200000,
957
+ symbol: 'G',
958
+ chainLayer: 2,
959
+ },
960
+ [ChainName.BARTIO]: {
961
+ addressSizeInBytes: 20,
962
+ decimals: EVM_DECIMALS,
963
+ mptBaseGas: 200000,
964
+ fpBaseGas: 200000,
965
+ symbol: 'BERA',
966
+ chainLayer: 2,
967
+ },
968
+ [ChainName.FLARE]: {
969
+ addressSizeInBytes: 20,
970
+ decimals: EVM_DECIMALS,
971
+ mptBaseGas: 199000,
972
+ fpBaseGas: 199000,
973
+ symbol: 'FLR',
974
+ },
975
+ [ChainName.METISSEP]: {
976
+ addressSizeInBytes: 20,
977
+ decimals: EVM_DECIMALS,
978
+ mptBaseGas: 200000,
979
+ fpBaseGas: 200000,
980
+ symbol: 'METIS',
981
+ chainLayer: 2,
982
+ },
983
+ [ChainName.ZKLINK]: {
984
+ addressSizeInBytes: 20,
985
+ decimals: EVM_DECIMALS,
986
+ mptBaseGas: 200000,
987
+ fpBaseGas: 200000,
988
+ symbol: 'ETH',
989
+ chainLayer: 3,
990
+ },
991
+ [ChainName.GLUE]: {
992
+ addressSizeInBytes: 20,
993
+ decimals: EVM_DECIMALS,
994
+ mptBaseGas: 200000,
995
+ fpBaseGas: 200000,
996
+ symbol: 'MATIC',
997
+ chainLayer: 2,
998
+ },
999
+ [ChainName.OPENCAMPUS]: {
1000
+ addressSizeInBytes: 20,
1001
+ decimals: EVM_DECIMALS,
1002
+ mptBaseGas: 200000,
1003
+ fpBaseGas: 200000,
1004
+ symbol: 'EDU',
1005
+ chainLayer: 2,
1006
+ },
1007
+ [ChainName.VANAR]: {
1008
+ addressSizeInBytes: 20,
1009
+ decimals: EVM_DECIMALS,
1010
+ mptBaseGas: 200000,
1011
+ fpBaseGas: 200000,
1012
+ symbol: 'VANRY',
1013
+ chainLayer: 1,
1014
+ },
1015
+ [ChainName.PEAQ]: {
1016
+ addressSizeInBytes: 20,
1017
+ decimals: EVM_DECIMALS,
1018
+ mptBaseGas: 200000,
1019
+ fpBaseGas: 200000,
1020
+ symbol: 'PEAQ',
1021
+ chainLayer: 1,
1022
+ },
1023
+ [ChainName.FI]: {
1024
+ addressSizeInBytes: 20,
1025
+ decimals: EVM_DECIMALS,
1026
+ mptBaseGas: 200000,
1027
+ fpBaseGas: 200000,
1028
+ symbol: 'ETH',
1029
+ chainLayer: 2,
1030
+ },
1031
+ [ChainName.CURTIS]: {
1032
+ addressSizeInBytes: 20,
1033
+ decimals: EVM_DECIMALS,
1034
+ mptBaseGas: 200000,
1035
+ fpBaseGas: 200000,
1036
+ symbol: 'APE',
1037
+ chainLayer: 2,
1038
+ },
1039
+ [ChainName.APE]: {
1040
+ addressSizeInBytes: 20,
1041
+ decimals: EVM_DECIMALS,
1042
+ mptBaseGas: 200000,
1043
+ fpBaseGas: 200000,
1044
+ symbol: 'APE',
1045
+ chainLayer: 2,
1046
+ },
1047
+ [ChainName.PLUME]: {
1048
+ addressSizeInBytes: 20,
1049
+ decimals: EVM_DECIMALS,
1050
+ mptBaseGas: 200000,
1051
+ fpBaseGas: 200000,
1052
+ symbol: 'ETH',
1053
+ chainLayer: 2,
1054
+ },
1055
+ [ChainName.ZKSYNCSEP]: {
1056
+ addressSizeInBytes: 20,
1057
+ decimals: EVM_DECIMALS,
1058
+ mptBaseGas: 200000,
1059
+ fpBaseGas: 200000,
1060
+ symbol: 'ETH',
1061
+ chainLayer: 2,
1062
+ },
1063
+ [ChainName.LYRA]: {
1064
+ addressSizeInBytes: 20,
1065
+ decimals: EVM_DECIMALS,
1066
+ mptBaseGas: 200000,
1067
+ fpBaseGas: 200000,
1068
+ symbol: 'ETH',
1069
+ chainLayer: 2,
1070
+ },
1071
+ [ChainName.LIGHTLINK]: {
1072
+ addressSizeInBytes: 20,
1073
+ decimals: EVM_DECIMALS,
1074
+ mptBaseGas: 200000,
1075
+ fpBaseGas: 200000,
1076
+ symbol: 'ETH',
1077
+ chainLayer: 2,
1078
+ },
1079
+ [ChainName.BAHAMUT]: {
1080
+ addressSizeInBytes: 20,
1081
+ decimals: EVM_DECIMALS,
1082
+ mptBaseGas: 200000,
1083
+ fpBaseGas: 200000,
1084
+ symbol: 'FTN',
1085
+ chainLayer: 2,
1086
+ },
1087
+ [ChainName.CODEX]: {
1088
+ addressSizeInBytes: 20,
1089
+ decimals: EVM_DECIMALS,
1090
+ mptBaseGas: 200000,
1091
+ fpBaseGas: 200000,
1092
+ symbol: 'ETH',
1093
+ chainLayer: 2,
1094
+ },
1095
+ [ChainName.ROOT]: {
1096
+ addressSizeInBytes: 20,
1097
+ decimals: XRP_DECIMALS,
1098
+ mptBaseGas: 200000,
1099
+ fpBaseGas: 200000,
1100
+ symbol: 'XRP',
1101
+ chainLayer: 2,
1102
+ },
1103
+ [ChainName.ABSTRACT]: {
1104
+ addressSizeInBytes: 20,
1105
+ decimals: EVM_DECIMALS,
1106
+ mptBaseGas: 200000,
1107
+ fpBaseGas: 200000,
1108
+ symbol: 'ETH',
1109
+ chainLayer: 2,
1110
+ },
1111
+ [ChainName.TREASURE]: {
1112
+ addressSizeInBytes: 20,
1113
+ decimals: EVM_DECIMALS,
1114
+ mptBaseGas: 200000,
1115
+ fpBaseGas: 200000,
1116
+ symbol: 'MAGIC',
1117
+ chainLayer: 2,
1118
+ },
1119
+ [ChainName.OTHERWORLD]: {
1120
+ addressSizeInBytes: 20,
1121
+ decimals: EVM_DECIMALS,
1122
+ mptBaseGas: 200000,
1123
+ fpBaseGas: 200000,
1124
+ symbol: 'FUEL',
1125
+ chainLayer: 1,
1126
+ },
1127
+ [ChainName.REYA]: {
1128
+ addressSizeInBytes: 20,
1129
+ decimals: EVM_DECIMALS,
1130
+ mptBaseGas: 200000,
1131
+ fpBaseGas: 200000,
1132
+ symbol: 'ETH',
1133
+ chainLayer: 2,
1134
+ },
1135
+ [ChainName.PGN]: {
1136
+ // deprecated
1137
+ addressSizeInBytes: 20,
1138
+ decimals: EVM_DECIMALS,
1139
+ mptBaseGas: 200000,
1140
+ fpBaseGas: 200000,
1141
+ symbol: 'ETH',
1142
+ chainLayer: 2,
1143
+ },
1144
+ [ChainName.BITLAYER]: {
1145
+ addressSizeInBytes: 20,
1146
+ decimals: EVM_DECIMALS,
1147
+ mptBaseGas: 195000,
1148
+ fpBaseGas: 195000,
1149
+ symbol: 'BTC',
1150
+ },
1151
+ [ChainName.DM2VERSE]: {
1152
+ addressSizeInBytes: 20,
1153
+ decimals: EVM_DECIMALS,
1154
+ mptBaseGas: 195000,
1155
+ fpBaseGas: 195000,
1156
+ symbol: 'OAS',
1157
+ },
1158
+ [ChainName.STORY]: {
1159
+ addressSizeInBytes: 20,
1160
+ decimals: EVM_DECIMALS,
1161
+ mptBaseGas: 195000,
1162
+ fpBaseGas: 195000,
1163
+ symbol: 'IP',
1164
+ chainLayer: 2,
1165
+ },
1166
+ [ChainName.OZEAN]: {
1167
+ addressSizeInBytes: 20,
1168
+ decimals: EVM_DECIMALS,
1169
+ mptBaseGas: 200000,
1170
+ fpBaseGas: 200000,
1171
+ symbol: 'USDC', // TODO: It is actually USDX, which is another stable coin. Put it as USDC for now as USDX is not available on coin market cap. update cmcConfig.json as well
1172
+ chainLayer: 2,
1173
+ },
1174
+ [ChainName.BEVM]: {
1175
+ addressSizeInBytes: 20,
1176
+ decimals: EVM_DECIMALS,
1177
+ mptBaseGas: 200000,
1178
+ fpBaseGas: 200000,
1179
+ symbol: 'BTC',
1180
+ chainLayer: 2,
1181
+ },
1182
+ initia: {
1183
+ addressSizeInBytes: 32,
1184
+ decimals: INITIA_DECIMALS,
1185
+ mptBaseGas: 195000,
1186
+ fpBaseGas: 195000,
1187
+ symbol: 'INIT',
1188
+ },
1189
+ movement: {
1190
+ addressSizeInBytes: 32,
1191
+ decimals: APTOS_DECIMALS,
1192
+ mptBaseGas: 5000,
1193
+ fpBaseGas: 5000,
1194
+ symbol: 'MOVE',
1195
+ },
1196
+ [ChainName.LISK]: {
1197
+ addressSizeInBytes: 20,
1198
+ decimals: EVM_DECIMALS,
1199
+ mptBaseGas: 195000,
1200
+ fpBaseGas: 195000,
1201
+ symbol: 'ETH',
1202
+ chainLayer: 2,
1203
+ },
1204
+ [ChainName.KEVNET]: {
1205
+ addressSizeInBytes: 20,
1206
+ decimals: EVM_DECIMALS,
1207
+ mptBaseGas: 195000,
1208
+ fpBaseGas: 195000,
1209
+ symbol: 'ETH',
1210
+ chainLayer: 2,
1211
+ },
1212
+ bl2: {
1213
+ addressSizeInBytes: 20,
1214
+ decimals: EVM_DECIMALS,
1215
+ mptBaseGas: 195000,
1216
+ fpBaseGas: 195000,
1217
+ symbol: 'ETH',
1218
+ chainLayer: 3,
1219
+ },
1220
+ plume2: {
1221
+ addressSizeInBytes: 20,
1222
+ decimals: EVM_DECIMALS,
1223
+ mptBaseGas: 200000,
1224
+ fpBaseGas: 200000,
1225
+ symbol: 'ETH', // Might need to change when deploying mainnet, in testnet they use ETH
1226
+ chainLayer: 2,
1227
+ },
1228
+ ble: {
1229
+ addressSizeInBytes: 20,
1230
+ decimals: EVM_DECIMALS,
1231
+ mptBaseGas: 195000,
1232
+ fpBaseGas: 195000,
1233
+ symbol: 'ETH',
1234
+ chainLayer: 2,
1235
+ },
1236
+ [ChainName.UNICHAIN]: {
1237
+ addressSizeInBytes: 20,
1238
+ decimals: EVM_DECIMALS,
1239
+ mptBaseGas: 195000,
1240
+ fpBaseGas: 195000,
1241
+ symbol: 'ETH',
1242
+ chainLayer: 2,
1243
+ },
1244
+ [ChainName.HYPERLIQUID]: {
1245
+ addressSizeInBytes: 20,
1246
+ decimals: EVM_DECIMALS,
1247
+ mptBaseGas: 195000,
1248
+ fpBaseGas: 195000,
1249
+ symbol: 'HYPE',
1250
+ chainLayer: 1,
1251
+ },
1252
+ [ChainName.MINATO]: {
1253
+ addressSizeInBytes: 20,
1254
+ decimals: EVM_DECIMALS,
1255
+ mptBaseGas: 195000,
1256
+ fpBaseGas: 195000,
1257
+ symbol: 'ETH',
1258
+ chainLayer: 2,
1259
+ },
1260
+ [ChainName.WORLDCOIN]: {
1261
+ addressSizeInBytes: 20,
1262
+ decimals: EVM_DECIMALS,
1263
+ mptBaseGas: 195000,
1264
+ fpBaseGas: 195000,
1265
+ symbol: 'ETH',
1266
+ chainLayer: 2,
1267
+ },
1268
+ [ChainName.WORLDCHAIN]: {
1269
+ addressSizeInBytes: 20,
1270
+ decimals: EVM_DECIMALS,
1271
+ mptBaseGas: 195000,
1272
+ fpBaseGas: 195000,
1273
+ symbol: 'ETH',
1274
+ chainLayer: 2,
1275
+ },
1276
+ [ChainName.SUPERPOSITION]: {
1277
+ addressSizeInBytes: 20,
1278
+ decimals: EVM_DECIMALS,
1279
+ mptBaseGas: 5550000,
1280
+ fpBaseGas: 5550000,
1281
+ symbol: 'ETH',
1282
+ chainLayer: 3,
1283
+ },
1284
+ [ChainName.HEMI]: {
1285
+ addressSizeInBytes: 20,
1286
+ decimals: EVM_DECIMALS,
1287
+ mptBaseGas: 195000,
1288
+ fpBaseGas: 195000,
1289
+ symbol: 'ETH',
1290
+ chainLayer: 2,
1291
+ },
1292
+ [ChainName.MOKSHA]: {
1293
+ addressSizeInBytes: 20,
1294
+ decimals: EVM_DECIMALS,
1295
+ mptBaseGas: 195000,
1296
+ fpBaseGas: 195000,
1297
+ symbol: 'VANA',
1298
+ chainLayer: 1,
1299
+ },
1300
+ [ChainName.SOPHON]: {
1301
+ addressSizeInBytes: 20,
1302
+ decimals: EVM_DECIMALS,
1303
+ mptBaseGas: 195000,
1304
+ fpBaseGas: 195000,
1305
+ symbol: 'SOPH',
1306
+ chainLayer: 2,
1307
+ },
1308
+ [ChainName.GAMESWIFT]: {
1309
+ addressSizeInBytes: 20,
1310
+ decimals: EVM_DECIMALS,
1311
+ mptBaseGas: 195000,
1312
+ fpBaseGas: 195000,
1313
+ symbol: 'tGS',
1314
+ chainLayer: 2,
1315
+ },
1316
+ [ChainName.ODYSSEY]: {
1317
+ addressSizeInBytes: 20,
1318
+ decimals: EVM_DECIMALS,
1319
+ mptBaseGas: 195000,
1320
+ fpBaseGas: 195000,
1321
+ symbol: 'IP',
1322
+ chainLayer: 2,
1323
+ },
1324
+ [ChainName.CITREA]: {
1325
+ addressSizeInBytes: 20,
1326
+ decimals: EVM_DECIMALS,
1327
+ mptBaseGas: 195000,
1328
+ fpBaseGas: 195000,
1329
+ symbol: 'CBTC',
1330
+ chainLayer: 2,
1331
+ },
1332
+ [ChainName.EDU]: {
1333
+ addressSizeInBytes: 20,
1334
+ decimals: EVM_DECIMALS,
1335
+ mptBaseGas: 200000,
1336
+ fpBaseGas: 200000,
1337
+ symbol: 'EDU',
1338
+ chainLayer: 2,
1339
+ },
1340
+ [ChainName.ISLANDER]: {
1341
+ addressSizeInBytes: 20,
1342
+ decimals: EVM_DECIMALS,
1343
+ mptBaseGas: 195000,
1344
+ fpBaseGas: 195000,
1345
+ symbol: 'VANA',
1346
+ chainLayer: 1,
1347
+ },
1348
+ [ChainName.MP1]: {
1349
+ addressSizeInBytes: 20,
1350
+ decimals: EVM_DECIMALS,
1351
+ mptBaseGas: 195000,
1352
+ fpBaseGas: 195000,
1353
+ symbol: 'BTCN',
1354
+ chainLayer: 2,
1355
+ },
1356
+ [ChainName.BL3]: {
1357
+ addressSizeInBytes: 20,
1358
+ decimals: EVM_DECIMALS,
1359
+ mptBaseGas: 195000,
1360
+ fpBaseGas: 195000,
1361
+ symbol: 'BERA',
1362
+ chainLayer: 3,
1363
+ },
1364
+ [ChainName.FLOW]: {
1365
+ addressSizeInBytes: 20,
1366
+ decimals: EVM_DECIMALS,
1367
+ mptBaseGas: 195000,
1368
+ fpBaseGas: 195000,
1369
+ symbol: 'FLOW',
1370
+ chainLayer: 2,
1371
+ },
1372
+ [ChainName.ROOTSTOCK]: {
1373
+ addressSizeInBytes: 20,
1374
+ decimals: EVM_DECIMALS,
1375
+ mptBaseGas: 195000,
1376
+ fpBaseGas: 195000,
1377
+ symbol: 'RBTC',
1378
+ chainLayer: 1,
1379
+ },
1380
+ [ChainName.SWELL]: {
1381
+ addressSizeInBytes: 20,
1382
+ decimals: EVM_DECIMALS,
1383
+ mptBaseGas: 195000,
1384
+ fpBaseGas: 195000,
1385
+ symbol: 'ETH',
1386
+ chainLayer: 2,
1387
+ },
1388
+ [ChainName.SONIC]: {
1389
+ addressSizeInBytes: 20,
1390
+ decimals: EVM_DECIMALS,
1391
+ mptBaseGas: 195000,
1392
+ fpBaseGas: 195000,
1393
+ symbol: 'S',
1394
+ chainLayer: 1,
1395
+ },
1396
+ [ChainName.NIBIRU]: {
1397
+ addressSizeInBytes: 20,
1398
+ decimals: EVM_DECIMALS, // rpc uses 18 decimals, but the gas token will get truncated to 6 decimals
1399
+ mptBaseGas: 195000,
1400
+ fpBaseGas: 195000,
1401
+ symbol: 'NIBI',
1402
+ chainLayer: 1,
1403
+ },
1404
+ [ChainName.GOAT]: {
1405
+ addressSizeInBytes: 20,
1406
+ decimals: EVM_DECIMALS,
1407
+ mptBaseGas: 195000,
1408
+ fpBaseGas: 195000,
1409
+ symbol: 'BTC',
1410
+ chainLayer: 1,
1411
+ },
1412
+ [ChainName.APEXFUSIONNEXUS]: {
1413
+ addressSizeInBytes: 20,
1414
+ decimals: EVM_DECIMALS,
1415
+ mptBaseGas: 195000,
1416
+ fpBaseGas: 195000,
1417
+ symbol: 'AP3X',
1418
+ chainLayer: 1,
1419
+ },
1420
+ [ChainName.INK]: {
1421
+ addressSizeInBytes: 20,
1422
+ decimals: EVM_DECIMALS,
1423
+ mptBaseGas: 195000,
1424
+ fpBaseGas: 195000,
1425
+ symbol: 'ETH',
1426
+ chainLayer: 2,
1427
+ },
1428
+ [ChainName.MEMECOREFORMICARIUM]: {
1429
+ addressSizeInBytes: 20,
1430
+ decimals: EVM_DECIMALS,
1431
+ mptBaseGas: 195000,
1432
+ fpBaseGas: 195000,
1433
+ symbol: 'M',
1434
+ chainLayer: 1,
1435
+ },
1436
+ [ChainName.BL6]: {
1437
+ addressSizeInBytes: 20,
1438
+ decimals: EVM_DECIMALS,
1439
+ mptBaseGas: 195000,
1440
+ fpBaseGas: 195000,
1441
+ symbol: 'M',
1442
+ chainLayer: 2,
1443
+ },
1444
+ [ChainName.SPACE]: {
1445
+ addressSizeInBytes: 20,
1446
+ decimals: EVM_DECIMALS,
1447
+ mptBaseGas: 200000,
1448
+ fpBaseGas: 200000,
1449
+ symbol: 'USDC',
1450
+ },
1451
+ [ChainName.SONEIUM]: {
1452
+ addressSizeInBytes: 20,
1453
+ decimals: EVM_DECIMALS,
1454
+ mptBaseGas: 195000,
1455
+ fpBaseGas: 195000,
1456
+ symbol: 'ETH',
1457
+ chainLayer: 2,
1458
+ },
1459
+ [ChainName.CRONOSEVM]: {
1460
+ addressSizeInBytes: 20,
1461
+ decimals: EVM_DECIMALS,
1462
+ mptBaseGas: 195000,
1463
+ fpBaseGas: 195000,
1464
+ symbol: 'CRO',
1465
+ chainLayer: 1,
1466
+ },
1467
+ [ChainName.CRONOSZKEVM]: {
1468
+ addressSizeInBytes: 20,
1469
+ decimals: EVM_DECIMALS,
1470
+ mptBaseGas: 200000,
1471
+ fpBaseGas: 200000,
1472
+ symbol: 'zkCRO',
1473
+ chainLayer: 2,
1474
+ },
1475
+ [ChainName.STABLEDEVNET]: {
1476
+ addressSizeInBytes: 20,
1477
+ decimals: EVM_DECIMALS,
1478
+ mptBaseGas: 200000,
1479
+ fpBaseGas: 200000,
1480
+ symbol: 'USDT',
1481
+ chainLayer: 2,
1482
+ },
1483
+ [ChainName.MONAD]: {
1484
+ addressSizeInBytes: 20,
1485
+ decimals: EVM_DECIMALS,
1486
+ mptBaseGas: 195000,
1487
+ fpBaseGas: 195000,
1488
+ symbol: 'MATIC', //change this to MON when live https://coinmarketcap.com/currencies/monad/
1489
+ chainLayer: 1,
1490
+ },
1491
+ [ChainName.XDC]: {
1492
+ addressSizeInBytes: 20,
1493
+ decimals: EVM_DECIMALS,
1494
+ mptBaseGas: 195000,
1495
+ fpBaseGas: 195000,
1496
+ symbol: 'XDC',
1497
+ chainLayer: 1,
1498
+ },
1499
+ [ChainName.CONCRETE]: {
1500
+ addressSizeInBytes: 20,
1501
+ decimals: EVM_DECIMALS,
1502
+ mptBaseGas: 195000,
1503
+ fpBaseGas: 195000,
1504
+ symbol: 'ETH',
1505
+ chainLayer: 2,
1506
+ },
1507
+ [ChainName.PLUMEPHOENIX]: {
1508
+ addressSizeInBytes: 20,
1509
+ decimals: EVM_DECIMALS,
1510
+ mptBaseGas: 5550000,
1511
+ fpBaseGas: 5550000,
1512
+ symbol: 'PLUME',
1513
+ chainLayer: 2,
1514
+ },
1515
+ [ChainName.MEGAETH]: {
1516
+ addressSizeInBytes: 20,
1517
+ decimals: EVM_DECIMALS,
1518
+ mptBaseGas: 195000,
1519
+ fpBaseGas: 195000,
1520
+ symbol: 'ETH',
1521
+ chainLayer: 1,
1522
+ },
1523
+ [ChainName.BEPOLIA]: {
1524
+ addressSizeInBytes: 20,
1525
+ decimals: EVM_DECIMALS,
1526
+ mptBaseGas: 195000,
1527
+ fpBaseGas: 195000,
1528
+ symbol: 'BERA',
1529
+ chainLayer: 1,
1530
+ },
1531
+ [ChainName.GUNZ]: {
1532
+ addressSizeInBytes: 20,
1533
+ decimals: EVM_DECIMALS,
1534
+ mptBaseGas: 195000,
1535
+ fpBaseGas: 195000,
1536
+ symbol: 'GUN',
1537
+ chainLayer: 2,
1538
+ },
1539
+ [ChainName.ANIMECHAIN]: {
1540
+ addressSizeInBytes: 20,
1541
+ decimals: EVM_DECIMALS,
1542
+ mptBaseGas: 195000,
1543
+ fpBaseGas: 195000,
1544
+ symbol: 'ANIME',
1545
+ chainLayer: 2,
1546
+ },
1547
+ [ChainName.LENS]: {
1548
+ addressSizeInBytes: 20,
1549
+ decimals: EVM_DECIMALS,
1550
+ mptBaseGas: 200000,
1551
+ fpBaseGas: 200000,
1552
+ chainLayer: 2,
1553
+ symbol: 'GHO',
1554
+ },
1555
+ [ChainName.STABLE]: {
1556
+ addressSizeInBytes: 20,
1557
+ decimals: EVM_DECIMALS,
1558
+ mptBaseGas: 200000,
1559
+ fpBaseGas: 200000,
1560
+ symbol: 'USDT',
1561
+ chainLayer: 2,
1562
+ },
1563
+ [ChainName.ONDO]: {
1564
+ addressSizeInBytes: 20,
1565
+ decimals: EVM_DECIMALS,
1566
+ mptBaseGas: 200000,
1567
+ fpBaseGas: 200000,
1568
+ symbol: 'ONDO',
1569
+ chainLayer: 1,
1570
+ },
1571
+ [ChainName.SUBTENSOREVM]: {
1572
+ addressSizeInBytes: 20,
1573
+ decimals: EVM_DECIMALS,
1574
+ mptBaseGas: 200000,
1575
+ fpBaseGas: 200000,
1576
+ symbol: 'TAO',
1577
+ chainLayer: 1,
1578
+ },
1579
+ [ChainName.KATANA]: {
1580
+ addressSizeInBytes: 20,
1581
+ decimals: EVM_DECIMALS,
1582
+ mptBaseGas: 200000,
1583
+ fpBaseGas: 200000,
1584
+ symbol: 'ETH',
1585
+ chainLayer: 2,
1586
+ },
1587
+ [ChainName.TAC]: {
1588
+ addressSizeInBytes: 20,
1589
+ decimals: EVM_DECIMALS,
1590
+ mptBaseGas: 195000,
1591
+ fpBaseGas: 195000,
1592
+ symbol: 'TAC',
1593
+ chainLayer: 1,
1594
+ },
1595
+ [ChainName.TACSPB]: {
1596
+ addressSizeInBytes: 20,
1597
+ decimals: EVM_DECIMALS,
1598
+ mptBaseGas: 195000,
1599
+ fpBaseGas: 195000,
1600
+ symbol: 'TAC',
1601
+ chainLayer: 1,
1602
+ },
1603
+ };
1604
+
1605
+ export const isZkChain = (chainName: ChainName): boolean => {
1606
+ return [
1607
+ ChainName.ZKSYNC,
1608
+ ChainName.ZKLINK,
1609
+ ChainName.ABSTRACT,
1610
+ ChainName.LENS,
1611
+ ChainName.CRONOSZKEVM,
1612
+ ChainName.SOPHON,
1613
+ ChainName.TREASURE,
1614
+ ChainName.ZKSYNCSEP,
1615
+ ].includes(chainName);
1616
+ };