@hybrd/utils 0.4.8 → 0.5.1

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/index.cjs CHANGED
@@ -19,14 +19,71 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  // src/index.ts
20
20
  var src_exports = {};
21
21
  __export(src_exports, {
22
+ arbitrum: () => arbitrum,
23
+ arbitrumGoerli: () => arbitrumGoerli,
24
+ aurora: () => aurora,
25
+ auroraTestnet: () => auroraTestnet,
26
+ avalanche: () => avalanche,
27
+ avalancheFuji: () => avalancheFuji,
28
+ baseGoerli: () => baseGoerli,
22
29
  bipsToDecimal: () => bipsToDecimal,
23
30
  bipsToPercent: () => bipsToPercent,
31
+ boba: () => boba,
32
+ bronos: () => bronos,
33
+ bronosTestnet: () => bronosTestnet,
34
+ bsc: () => bsc,
35
+ bscTestnet: () => bscTestnet,
36
+ canto: () => canto,
37
+ celo: () => celo,
38
+ celoAlfajores: () => celoAlfajores,
24
39
  chainName: () => chainName,
40
+ crossbell: () => crossbell,
25
41
  etherscanAddressURL: () => etherscanAddressURL,
26
42
  etherscanHost: () => etherscanHost,
27
43
  etherscanTxURL: () => etherscanTxURL,
44
+ evmos: () => evmos,
45
+ evmosTestnet: () => evmosTestnet,
46
+ fantom: () => fantom,
47
+ fantomTestnet: () => fantomTestnet,
48
+ filecoin: () => filecoin,
49
+ filecoinCalibration: () => filecoinCalibration,
50
+ filecoinHyperspace: () => filecoinHyperspace,
51
+ flare: () => flare,
52
+ flareTestnet: () => flareTestnet,
53
+ foundry: () => foundry,
54
+ gnosis: () => gnosis,
55
+ gnosisChiado: () => gnosisChiado,
56
+ goerli: () => goerli,
57
+ hardhat: () => hardhat,
58
+ harmonyOne: () => harmonyOne,
59
+ iotex: () => iotex,
60
+ iotexTestnet: () => iotexTestnet,
61
+ localhost: () => localhost,
62
+ mainnet: () => mainnet,
63
+ metis: () => metis,
64
+ metisGoerli: () => metisGoerli,
65
+ moonbaseAlpha: () => moonbaseAlpha,
66
+ moonbeam: () => moonbeam,
67
+ moonriver: () => moonriver,
68
+ okc: () => okc,
69
+ optimism: () => optimism,
70
+ optimismGoerli: () => optimismGoerli,
28
71
  percentToBips: () => percentToBips,
29
- truncateEthAddress: () => truncateEthAddress
72
+ polygon: () => polygon,
73
+ polygonMumbai: () => polygonMumbai,
74
+ polygonZkEvmTestnet: () => polygonZkEvmTestnet,
75
+ sepolia: () => sepolia,
76
+ shardeumSphinx: () => shardeumSphinx,
77
+ songbird: () => songbird,
78
+ songbirdTestnet: () => songbirdTestnet,
79
+ taraxa: () => taraxa,
80
+ taraxaTestnet: () => taraxaTestnet,
81
+ telos: () => telos,
82
+ telosTestnet: () => telosTestnet,
83
+ truncateEthAddress: () => truncateEthAddress,
84
+ zhejiang: () => zhejiang,
85
+ zkSync: () => zkSync,
86
+ zkSyncTestnet: () => zkSyncTestnet
30
87
  });
31
88
  module.exports = __toCommonJS(src_exports);
32
89
 
@@ -45,6 +102,1452 @@ function bipsToDecimal(bp) {
45
102
  return parseInt(bp.toString()) / 1e4;
46
103
  }
47
104
 
105
+ // ../../node_modules/@wagmi/chains/dist/index.mjs
106
+ var arbitrum = {
107
+ id: 42161,
108
+ name: "Arbitrum One",
109
+ network: "arbitrum",
110
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
111
+ rpcUrls: {
112
+ alchemy: {
113
+ http: ["https://arb-mainnet.g.alchemy.com/v2"],
114
+ webSocket: ["wss://arb-mainnet.g.alchemy.com/v2"]
115
+ },
116
+ infura: {
117
+ http: ["https://arbitrum-mainnet.infura.io/v3"],
118
+ webSocket: ["wss://arbitrum-mainnet.infura.io/ws/v3"]
119
+ },
120
+ default: {
121
+ http: ["https://arb1.arbitrum.io/rpc"]
122
+ },
123
+ public: {
124
+ http: ["https://arb1.arbitrum.io/rpc"]
125
+ }
126
+ },
127
+ blockExplorers: {
128
+ etherscan: { name: "Arbiscan", url: "https://arbiscan.io" },
129
+ default: { name: "Arbiscan", url: "https://arbiscan.io" }
130
+ },
131
+ contracts: {
132
+ multicall3: {
133
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
134
+ blockCreated: 7654707
135
+ }
136
+ }
137
+ };
138
+ var arbitrumGoerli = {
139
+ id: 421613,
140
+ name: "Arbitrum Goerli",
141
+ network: "arbitrum-goerli",
142
+ nativeCurrency: {
143
+ name: "Arbitrum Goerli Ether",
144
+ symbol: "ETH",
145
+ decimals: 18
146
+ },
147
+ rpcUrls: {
148
+ alchemy: {
149
+ http: ["https://arb-goerli.g.alchemy.com/v2"],
150
+ webSocket: ["wss://arb-goerli.g.alchemy.com/v2"]
151
+ },
152
+ infura: {
153
+ http: ["https://arbitrum-goerli.infura.io/v3"],
154
+ webSocket: ["wss://arbitrum-goerli.infura.io/ws/v3"]
155
+ },
156
+ default: {
157
+ http: ["https://goerli-rollup.arbitrum.io/rpc"]
158
+ },
159
+ public: {
160
+ http: ["https://goerli-rollup.arbitrum.io/rpc"]
161
+ }
162
+ },
163
+ blockExplorers: {
164
+ etherscan: { name: "Arbiscan", url: "https://goerli.arbiscan.io/" },
165
+ default: { name: "Arbiscan", url: "https://goerli.arbiscan.io/" }
166
+ },
167
+ contracts: {
168
+ multicall3: {
169
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
170
+ blockCreated: 88114
171
+ }
172
+ },
173
+ testnet: true
174
+ };
175
+ var aurora = {
176
+ id: 1313161554,
177
+ name: "Aurora",
178
+ network: "aurora",
179
+ nativeCurrency: {
180
+ decimals: 18,
181
+ name: "Ether",
182
+ symbol: "ETH"
183
+ },
184
+ rpcUrls: {
185
+ infura: { http: ["https://aurora-mainnet.infura.io/v3"] },
186
+ default: { http: ["https://mainnet.aurora.dev"] },
187
+ public: { http: ["https://mainnet.aurora.dev"] }
188
+ },
189
+ blockExplorers: {
190
+ etherscan: { name: "Aurorascan", url: "https://aurorascan.dev" },
191
+ default: { name: "Aurorascan", url: "https://aurorascan.dev" }
192
+ }
193
+ };
194
+ var auroraTestnet = {
195
+ id: 1313161555,
196
+ name: "Aurora Testnet",
197
+ network: "aurora-testnet",
198
+ nativeCurrency: {
199
+ decimals: 18,
200
+ name: "Ether",
201
+ symbol: "ETH"
202
+ },
203
+ rpcUrls: {
204
+ infura: { http: ["https://aurora-testnet.infura.io/v3"] },
205
+ default: { http: ["https://testnet.aurora.dev"] },
206
+ public: { http: ["https://testnet.aurora.dev"] }
207
+ },
208
+ blockExplorers: {
209
+ etherscan: { name: "Aurorascan", url: "https://testnet.aurorascan.dev" },
210
+ default: { name: "Aurorascan", url: "https://testnet.aurorascan.dev" }
211
+ },
212
+ testnet: true
213
+ };
214
+ var avalanche = {
215
+ id: 43114,
216
+ name: "Avalanche",
217
+ network: "avalanche",
218
+ nativeCurrency: {
219
+ decimals: 18,
220
+ name: "Avalanche",
221
+ symbol: "AVAX"
222
+ },
223
+ rpcUrls: {
224
+ default: { http: ["https://api.avax.network/ext/bc/C/rpc"] },
225
+ public: { http: ["https://api.avax.network/ext/bc/C/rpc"] }
226
+ },
227
+ blockExplorers: {
228
+ etherscan: { name: "SnowTrace", url: "https://snowtrace.io" },
229
+ default: { name: "SnowTrace", url: "https://snowtrace.io" }
230
+ },
231
+ contracts: {
232
+ multicall3: {
233
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
234
+ blockCreated: 11907934
235
+ }
236
+ }
237
+ };
238
+ var avalancheFuji = {
239
+ id: 43113,
240
+ name: "Avalanche Fuji",
241
+ network: "avalanche-fuji",
242
+ nativeCurrency: {
243
+ decimals: 18,
244
+ name: "Avalanche Fuji",
245
+ symbol: "AVAX"
246
+ },
247
+ rpcUrls: {
248
+ default: { http: ["https://api.avax-test.network/ext/bc/C/rpc"] },
249
+ public: { http: ["https://api.avax-test.network/ext/bc/C/rpc"] }
250
+ },
251
+ blockExplorers: {
252
+ etherscan: { name: "SnowTrace", url: "https://testnet.snowtrace.io" },
253
+ default: { name: "SnowTrace", url: "https://testnet.snowtrace.io" }
254
+ },
255
+ contracts: {
256
+ multicall3: {
257
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
258
+ blockCreated: 7096959
259
+ }
260
+ },
261
+ testnet: true
262
+ };
263
+ var baseGoerli = {
264
+ id: 84531,
265
+ network: "base-goerli",
266
+ name: "Base Goerli",
267
+ nativeCurrency: { name: "Base Goerli", symbol: "ETH", decimals: 18 },
268
+ rpcUrls: {
269
+ default: {
270
+ http: ["https://goerli.base.org"]
271
+ },
272
+ public: {
273
+ http: ["https://goerli.base.org"]
274
+ }
275
+ },
276
+ blockExplorers: {
277
+ etherscan: {
278
+ name: "Basescan",
279
+ url: "https://goerli.basescan.org"
280
+ },
281
+ default: {
282
+ name: "Basescan",
283
+ url: "https://goerli.basescan.org"
284
+ }
285
+ },
286
+ testnet: true
287
+ };
288
+ var boba = {
289
+ id: 288,
290
+ name: "Boba Network",
291
+ network: "boba",
292
+ nativeCurrency: {
293
+ decimals: 18,
294
+ name: "BOBA",
295
+ symbol: "ETH"
296
+ },
297
+ rpcUrls: {
298
+ default: { http: ["https://mainnet.boba.network"] },
299
+ public: { http: ["https://mainnet.boba.network"] }
300
+ },
301
+ blockExplorers: {
302
+ etherscan: { name: "BOBAScan", url: "https://bobascan.com" },
303
+ default: { name: "BOBAScan", url: "https://bobascan.com" }
304
+ },
305
+ contracts: {
306
+ multicall3: {
307
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
308
+ blockCreated: 446859
309
+ }
310
+ }
311
+ };
312
+ var bronos = {
313
+ id: 1039,
314
+ name: "Bronos",
315
+ network: "bronos",
316
+ nativeCurrency: {
317
+ decimals: 18,
318
+ name: "BRO",
319
+ symbol: "BRO"
320
+ },
321
+ rpcUrls: {
322
+ default: { http: ["https://evm.bronos.org"] },
323
+ public: { http: ["https://evm.bronos.org"] }
324
+ },
325
+ blockExplorers: {
326
+ default: { name: "BronoScan", url: "https://broscan.bronos.org" }
327
+ }
328
+ };
329
+ var bronosTestnet = {
330
+ id: 1038,
331
+ name: "Bronos Testnet",
332
+ network: "bronos-testnet",
333
+ nativeCurrency: {
334
+ decimals: 18,
335
+ name: "Bronos Coin",
336
+ symbol: "tBRO"
337
+ },
338
+ rpcUrls: {
339
+ default: { http: ["https://evm-testnet.bronos.org"] },
340
+ public: { http: ["https://evm-testnet.bronos.org"] }
341
+ },
342
+ blockExplorers: {
343
+ default: { name: "BronoScan", url: "https://tbroscan.bronos.org" }
344
+ },
345
+ testnet: true
346
+ };
347
+ var bsc = {
348
+ id: 56,
349
+ name: "BNB Smart Chain",
350
+ network: "bsc",
351
+ nativeCurrency: {
352
+ decimals: 18,
353
+ name: "BNB",
354
+ symbol: "BNB"
355
+ },
356
+ rpcUrls: {
357
+ default: { http: ["https://rpc.ankr.com/bsc"] },
358
+ public: { http: ["https://rpc.ankr.com/bsc"] }
359
+ },
360
+ blockExplorers: {
361
+ etherscan: { name: "BscScan", url: "https://bscscan.com" },
362
+ default: { name: "BscScan", url: "https://bscscan.com" }
363
+ },
364
+ contracts: {
365
+ multicall3: {
366
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
367
+ blockCreated: 15921452
368
+ }
369
+ }
370
+ };
371
+ var bscTestnet = {
372
+ id: 97,
373
+ name: "Binance Smart Chain Testnet",
374
+ network: "bsc-testnet",
375
+ nativeCurrency: {
376
+ decimals: 18,
377
+ name: "BNB",
378
+ symbol: "tBNB"
379
+ },
380
+ rpcUrls: {
381
+ default: { http: ["https://bsc-testnet.public.blastapi.io"] },
382
+ public: { http: ["https://bsc-testnet.public.blastapi.io"] }
383
+ },
384
+ blockExplorers: {
385
+ etherscan: { name: "BscScan", url: "https://testnet.bscscan.com" },
386
+ default: { name: "BscScan", url: "https://testnet.bscscan.com" }
387
+ },
388
+ contracts: {
389
+ multicall3: {
390
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
391
+ blockCreated: 17422483
392
+ }
393
+ },
394
+ testnet: true
395
+ };
396
+ var canto = {
397
+ id: 7700,
398
+ name: "Canto",
399
+ network: "canto",
400
+ nativeCurrency: {
401
+ decimals: 18,
402
+ name: "Canto",
403
+ symbol: "CANTO"
404
+ },
405
+ rpcUrls: {
406
+ default: { http: ["https://canto.slingshot.finance"] },
407
+ public: { http: ["https://canto.slingshot.finance"] }
408
+ },
409
+ blockExplorers: {
410
+ default: {
411
+ name: "Canto EVM Explorer (Blockscout)",
412
+ url: "https://evm.explorer.canto.io"
413
+ }
414
+ }
415
+ };
416
+ var celo = {
417
+ id: 42220,
418
+ name: "Celo",
419
+ network: "celo",
420
+ nativeCurrency: {
421
+ decimals: 18,
422
+ name: "CELO",
423
+ symbol: "CELO"
424
+ },
425
+ rpcUrls: {
426
+ default: { http: ["https://forno.celo.org"] },
427
+ infura: {
428
+ http: ["https://celo-mainnet.infura.io/v3"]
429
+ },
430
+ public: {
431
+ http: ["https://forno.celo.org"]
432
+ }
433
+ },
434
+ blockExplorers: {
435
+ default: {
436
+ name: "Celo Explorer",
437
+ url: "https://explorer.celo.org/mainnet"
438
+ },
439
+ etherscan: { name: "CeloScan", url: "https://celoscan.io" }
440
+ },
441
+ contracts: {
442
+ multicall3: {
443
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
444
+ blockCreated: 13112599
445
+ }
446
+ },
447
+ testnet: false
448
+ };
449
+ var celoAlfajores = {
450
+ id: 44787,
451
+ name: "Alfajores",
452
+ network: "celo-alfajores",
453
+ nativeCurrency: {
454
+ decimals: 18,
455
+ name: "CELO",
456
+ symbol: "A-CELO"
457
+ },
458
+ rpcUrls: {
459
+ default: {
460
+ http: ["https://alfajores-forno.celo-testnet.org"]
461
+ },
462
+ infura: {
463
+ http: ["https://celo-alfajores.infura.io/v3"]
464
+ },
465
+ public: {
466
+ http: ["https://alfajores-forno.celo-testnet.org"]
467
+ }
468
+ },
469
+ blockExplorers: {
470
+ default: {
471
+ name: "Celo Explorer",
472
+ url: "https://explorer.celo.org/alfajores"
473
+ },
474
+ etherscan: { name: "CeloScan", url: "https://alfajores.celoscan.io/" }
475
+ },
476
+ contracts: {
477
+ multicall3: {
478
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
479
+ blockCreated: 14569001
480
+ }
481
+ },
482
+ testnet: true
483
+ };
484
+ var crossbell = {
485
+ id: 3737,
486
+ network: "crossbell",
487
+ name: "Crossbell",
488
+ nativeCurrency: {
489
+ decimals: 18,
490
+ name: "CSB",
491
+ symbol: "CSB"
492
+ },
493
+ rpcUrls: {
494
+ default: {
495
+ http: ["https://rpc.crossbell.io"]
496
+ },
497
+ public: {
498
+ http: ["https://rpc.crossbell.io"]
499
+ }
500
+ },
501
+ blockExplorers: {
502
+ default: { name: "CrossScan", url: "https://scan.crossbell.io" }
503
+ },
504
+ contracts: {
505
+ multicall3: {
506
+ address: "0xBB9759009cDaC82774EfC84D94cD9F7440f75Fcf",
507
+ blockCreated: 23499787
508
+ }
509
+ }
510
+ };
511
+ var evmos = {
512
+ id: 9001,
513
+ name: "Evmos",
514
+ network: "evmos",
515
+ nativeCurrency: {
516
+ decimals: 18,
517
+ name: "Evmos",
518
+ symbol: "EVMOS"
519
+ },
520
+ rpcUrls: {
521
+ default: { http: ["https://eth.bd.evmos.org:8545"] },
522
+ public: { http: ["https://eth.bd.evmos.org:8545"] }
523
+ },
524
+ blockExplorers: {
525
+ default: { name: "Evmos Block Explorer", url: "https://escan.live/" }
526
+ }
527
+ };
528
+ var evmosTestnet = {
529
+ id: 9e3,
530
+ name: "Evmos Testnet",
531
+ network: "evmos-testnet",
532
+ nativeCurrency: {
533
+ decimals: 18,
534
+ name: "Evmos",
535
+ symbol: "EVMOS"
536
+ },
537
+ rpcUrls: {
538
+ default: { http: ["https://eth.bd.evmos.dev:8545"] },
539
+ public: { http: ["https://eth.bd.evmos.dev:8545"] }
540
+ },
541
+ blockExplorers: {
542
+ default: {
543
+ name: "Evmos Testnet Block Explorer",
544
+ url: "https://evm.evmos.dev/"
545
+ }
546
+ }
547
+ };
548
+ var fantom = {
549
+ id: 250,
550
+ name: "Fantom",
551
+ network: "fantom",
552
+ nativeCurrency: {
553
+ decimals: 18,
554
+ name: "Fantom",
555
+ symbol: "FTM"
556
+ },
557
+ rpcUrls: {
558
+ default: { http: ["https://rpc.ankr.com/fantom"] },
559
+ public: { http: ["https://rpc.ankr.com/fantom"] }
560
+ },
561
+ blockExplorers: {
562
+ etherscan: { name: "FTMScan", url: "https://ftmscan.com" },
563
+ default: { name: "FTMScan", url: "https://ftmscan.com" }
564
+ },
565
+ contracts: {
566
+ multicall3: {
567
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
568
+ blockCreated: 33001987
569
+ }
570
+ }
571
+ };
572
+ var fantomTestnet = {
573
+ id: 4002,
574
+ name: "Fantom Testnet",
575
+ network: "fantom-testnet",
576
+ nativeCurrency: {
577
+ decimals: 18,
578
+ name: "Fantom",
579
+ symbol: "FTM"
580
+ },
581
+ rpcUrls: {
582
+ default: { http: ["https://rpc.testnet.fantom.network"] },
583
+ public: { http: ["https://rpc.testnet.fantom.network"] }
584
+ },
585
+ blockExplorers: {
586
+ etherscan: { name: "FTMScan", url: "https://testnet.ftmscan.com" },
587
+ default: { name: "FTMScan", url: "https://testnet.ftmscan.com" }
588
+ },
589
+ contracts: {
590
+ multicall3: {
591
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
592
+ blockCreated: 8328688
593
+ }
594
+ }
595
+ };
596
+ var filecoin = {
597
+ id: 314,
598
+ name: "Filecoin Mainnet",
599
+ network: "filecoin-mainnet",
600
+ nativeCurrency: {
601
+ decimals: 18,
602
+ name: "filecoin",
603
+ symbol: "FIL"
604
+ },
605
+ rpcUrls: {
606
+ default: { http: ["https://api.node.glif.io/rpc/v1"] },
607
+ public: { http: ["https://api.node.glif.io/rpc/v1"] }
608
+ },
609
+ blockExplorers: {
610
+ default: { name: "Filfox", url: "https://filfox.info/en" },
611
+ filscan: { name: "Filscan", url: "https://filscan.io" },
612
+ filscout: { name: "Filscout", url: "https://filscout.io/en" },
613
+ glif: { name: "Glif", url: "https://explorer.glif.io" }
614
+ }
615
+ };
616
+ var filecoinCalibration = {
617
+ id: 314159,
618
+ name: "Filecoin Calibration",
619
+ network: "filecoin-calibration",
620
+ nativeCurrency: {
621
+ decimals: 18,
622
+ name: "testnet filecoin",
623
+ symbol: "tFIL"
624
+ },
625
+ rpcUrls: {
626
+ default: { http: ["https://api.calibration.node.glif.io/rpc/v1"] },
627
+ public: { http: ["https://api.calibration.node.glif.io/rpc/v1"] }
628
+ },
629
+ blockExplorers: {
630
+ default: { name: "Filscan", url: "https://calibration.filscan.io" }
631
+ }
632
+ };
633
+ var filecoinHyperspace = {
634
+ id: 3141,
635
+ name: "Filecoin Hyperspace",
636
+ network: "filecoin-hyperspace",
637
+ nativeCurrency: {
638
+ decimals: 18,
639
+ name: "testnet filecoin",
640
+ symbol: "tFIL"
641
+ },
642
+ rpcUrls: {
643
+ default: { http: ["https://api.hyperspace.node.glif.io/rpc/v1"] },
644
+ public: { http: ["https://api.hyperspace.node.glif.io/rpc/v1"] }
645
+ },
646
+ blockExplorers: {
647
+ default: { name: "Filfox", url: "https://hyperspace.filfox.info/en" },
648
+ filscan: { name: "Filscan", url: "https://hyperspace.filscan.io" }
649
+ }
650
+ };
651
+ var flare = {
652
+ id: 14,
653
+ name: "Flare Mainnet",
654
+ network: "flare-mainnet",
655
+ nativeCurrency: {
656
+ decimals: 18,
657
+ name: "flare",
658
+ symbol: "FLR"
659
+ },
660
+ rpcUrls: {
661
+ default: { http: ["https://flare-api.flare.network/ext/C/rpc"] },
662
+ public: { http: ["https://flare-api.flare.network/ext/C/rpc"] }
663
+ },
664
+ blockExplorers: {
665
+ default: {
666
+ name: "Flare Explorer",
667
+ url: "https://flare-explorer.flare.network"
668
+ }
669
+ }
670
+ };
671
+ var flareTestnet = {
672
+ id: 114,
673
+ name: "Coston2",
674
+ network: "coston2",
675
+ nativeCurrency: {
676
+ decimals: 18,
677
+ name: "coston2flare",
678
+ symbol: "C2FLR"
679
+ },
680
+ rpcUrls: {
681
+ default: { http: ["https://coston2-api.flare.network/ext/C/rpc"] },
682
+ public: { http: ["https://coston2-api.flare.network/ext/C/rpc"] }
683
+ },
684
+ blockExplorers: {
685
+ default: {
686
+ name: "Coston2 Explorer",
687
+ url: "https://coston2-explorer.flare.network"
688
+ }
689
+ },
690
+ testnet: true
691
+ };
692
+ var foundry = {
693
+ id: 31337,
694
+ name: "Foundry",
695
+ network: "foundry",
696
+ nativeCurrency: {
697
+ decimals: 18,
698
+ name: "Ether",
699
+ symbol: "ETH"
700
+ },
701
+ rpcUrls: {
702
+ default: { http: ["http://127.0.0.1:8545"] },
703
+ public: { http: ["http://127.0.0.1:8545"] }
704
+ }
705
+ };
706
+ var iotex = {
707
+ id: 4689,
708
+ name: "IoTeX",
709
+ network: "iotex",
710
+ nativeCurrency: {
711
+ decimals: 18,
712
+ name: "IoTeX",
713
+ symbol: "IOTX"
714
+ },
715
+ rpcUrls: {
716
+ default: {
717
+ http: ["https://babel-api.mainnet.iotex.io"],
718
+ webSocket: ["wss://babel-api.mainnet.iotex.io"]
719
+ },
720
+ public: {
721
+ http: ["https://babel-api.mainnet.iotex.io"],
722
+ webSocket: ["wss://babel-api.mainnet.iotex.io"]
723
+ }
724
+ },
725
+ blockExplorers: {
726
+ default: { name: "IoTeXScan", url: "https://iotexscan.io" }
727
+ }
728
+ };
729
+ var iotexTestnet = {
730
+ id: 4690,
731
+ name: "IoTeX Testnet",
732
+ network: "iotex-testnet",
733
+ nativeCurrency: {
734
+ decimals: 18,
735
+ name: "IoTeX",
736
+ symbol: "IOTX"
737
+ },
738
+ rpcUrls: {
739
+ default: {
740
+ http: ["https://babel-api.testnet.iotex.io"],
741
+ webSocket: ["wss://babel-api.testnet.iotex.io"]
742
+ },
743
+ public: {
744
+ http: ["https://babel-api.testnet.iotex.io"],
745
+ webSocket: ["wss://babel-api.testnet.iotex.io"]
746
+ }
747
+ },
748
+ blockExplorers: {
749
+ default: { name: "IoTeXScan", url: "https://testnet.iotexscan.io" }
750
+ }
751
+ };
752
+ var goerli = {
753
+ id: 5,
754
+ network: "goerli",
755
+ name: "Goerli",
756
+ nativeCurrency: { name: "Goerli Ether", symbol: "ETH", decimals: 18 },
757
+ rpcUrls: {
758
+ alchemy: {
759
+ http: ["https://eth-goerli.g.alchemy.com/v2"],
760
+ webSocket: ["wss://eth-goerli.g.alchemy.com/v2"]
761
+ },
762
+ infura: {
763
+ http: ["https://goerli.infura.io/v3"],
764
+ webSocket: ["wss://goerli.infura.io/ws/v3"]
765
+ },
766
+ default: {
767
+ http: ["https://rpc.ankr.com/eth_goerli"]
768
+ },
769
+ public: {
770
+ http: ["https://rpc.ankr.com/eth_goerli"]
771
+ }
772
+ },
773
+ blockExplorers: {
774
+ etherscan: {
775
+ name: "Etherscan",
776
+ url: "https://goerli.etherscan.io"
777
+ },
778
+ default: {
779
+ name: "Etherscan",
780
+ url: "https://goerli.etherscan.io"
781
+ }
782
+ },
783
+ contracts: {
784
+ ensRegistry: {
785
+ address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"
786
+ },
787
+ ensUniversalResolver: {
788
+ address: "0x687c30Cc44bFA39A1449e86E172BF002E7b3f0b0",
789
+ blockCreated: 7725078
790
+ },
791
+ multicall3: {
792
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
793
+ blockCreated: 6507670
794
+ }
795
+ },
796
+ testnet: true
797
+ };
798
+ var gnosis = {
799
+ id: 100,
800
+ name: "Gnosis",
801
+ network: "gnosis",
802
+ nativeCurrency: {
803
+ decimals: 18,
804
+ name: "Gnosis",
805
+ symbol: "xDAI"
806
+ },
807
+ rpcUrls: {
808
+ default: { http: ["https://rpc.gnosischain.com"] },
809
+ public: { http: ["https://rpc.gnosischain.com"] }
810
+ },
811
+ blockExplorers: {
812
+ etherscan: {
813
+ name: "Gnosisscan",
814
+ url: "https://gnosisscan.io/"
815
+ },
816
+ default: {
817
+ name: "Gnosis Chain Explorer",
818
+ url: "https://blockscout.com/xdai/mainnet/"
819
+ }
820
+ }
821
+ };
822
+ var gnosisChiado = {
823
+ id: 10200,
824
+ name: "Gnosis Chiado",
825
+ network: "chiado",
826
+ nativeCurrency: {
827
+ decimals: 18,
828
+ name: "Gnosis",
829
+ symbol: "xDAI"
830
+ },
831
+ rpcUrls: {
832
+ default: { http: ["https://rpc.chiadochain.net"] },
833
+ public: { http: ["https://rpc.chiadochain.net"] }
834
+ },
835
+ blockExplorers: {
836
+ default: {
837
+ name: "Blockscout",
838
+ url: "https://blockscout.chiadochain.net"
839
+ }
840
+ }
841
+ };
842
+ var hardhat = {
843
+ id: 31337,
844
+ name: "Hardhat",
845
+ network: "hardhat",
846
+ nativeCurrency: {
847
+ decimals: 18,
848
+ name: "Ether",
849
+ symbol: "ETH"
850
+ },
851
+ rpcUrls: {
852
+ default: { http: ["http://127.0.0.1:8545"] },
853
+ public: { http: ["http://127.0.0.1:8545"] }
854
+ }
855
+ };
856
+ var harmonyOne = {
857
+ id: 16666e5,
858
+ name: "Harmony One",
859
+ network: "harmony",
860
+ nativeCurrency: {
861
+ name: "Harmony",
862
+ symbol: "ONE",
863
+ decimals: 18
864
+ },
865
+ rpcUrls: {
866
+ public: { http: ["https://rpc.ankr.com/harmony"] },
867
+ default: { http: ["https://rpc.ankr.com/harmony"] }
868
+ },
869
+ blockExplorers: {
870
+ default: { name: "Harmony Explorer", url: "https://explorer.harmony.one" }
871
+ },
872
+ contracts: {
873
+ multicall3: {
874
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
875
+ blockCreated: 24185753
876
+ }
877
+ }
878
+ };
879
+ var localhost = {
880
+ id: 1337,
881
+ name: "Localhost",
882
+ network: "localhost",
883
+ nativeCurrency: {
884
+ decimals: 18,
885
+ name: "Ether",
886
+ symbol: "ETH"
887
+ },
888
+ rpcUrls: {
889
+ default: { http: ["http://127.0.0.1:8545"] },
890
+ public: { http: ["http://127.0.0.1:8545"] }
891
+ }
892
+ };
893
+ var mainnet = {
894
+ id: 1,
895
+ network: "homestead",
896
+ name: "Ethereum",
897
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
898
+ rpcUrls: {
899
+ alchemy: {
900
+ http: ["https://eth-mainnet.g.alchemy.com/v2"],
901
+ webSocket: ["wss://eth-mainnet.g.alchemy.com/v2"]
902
+ },
903
+ infura: {
904
+ http: ["https://mainnet.infura.io/v3"],
905
+ webSocket: ["wss://mainnet.infura.io/ws/v3"]
906
+ },
907
+ default: {
908
+ http: ["https://cloudflare-eth.com"]
909
+ },
910
+ public: {
911
+ http: ["https://cloudflare-eth.com"]
912
+ }
913
+ },
914
+ blockExplorers: {
915
+ etherscan: {
916
+ name: "Etherscan",
917
+ url: "https://etherscan.io"
918
+ },
919
+ default: {
920
+ name: "Etherscan",
921
+ url: "https://etherscan.io"
922
+ }
923
+ },
924
+ contracts: {
925
+ ensRegistry: {
926
+ address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"
927
+ },
928
+ ensUniversalResolver: {
929
+ address: "0x74E20Bd2A1fE0cdbe45b9A1d89cb7e0a45b36376",
930
+ blockCreated: 16172161
931
+ },
932
+ multicall3: {
933
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
934
+ blockCreated: 14353601
935
+ }
936
+ }
937
+ };
938
+ var metis = {
939
+ id: 1088,
940
+ name: "Metis",
941
+ network: "andromeda",
942
+ nativeCurrency: {
943
+ decimals: 18,
944
+ name: "Metis",
945
+ symbol: "METIS"
946
+ },
947
+ rpcUrls: {
948
+ default: { http: ["https://andromeda.metis.io/?owner=1088"] },
949
+ public: { http: ["https://andromeda.metis.io/?owner=1088"] }
950
+ },
951
+ blockExplorers: {
952
+ default: {
953
+ name: "Andromeda Explorer",
954
+ url: "https://andromeda-explorer.metis.io"
955
+ }
956
+ }
957
+ };
958
+ var metisGoerli = {
959
+ id: 599,
960
+ name: "Metis Goerli",
961
+ network: "metis-goerli",
962
+ nativeCurrency: {
963
+ decimals: 18,
964
+ name: "Metis Goerli",
965
+ symbol: "METIS"
966
+ },
967
+ rpcUrls: {
968
+ default: { http: ["https://goerli.gateway.metisdevops.link"] },
969
+ public: { http: ["https://goerli.gateway.metisdevops.link"] }
970
+ },
971
+ blockExplorers: {
972
+ default: {
973
+ name: "Metis Goerli Explorer",
974
+ url: "https://goerli.explorer.metisdevops.link"
975
+ }
976
+ }
977
+ };
978
+ var moonbaseAlpha = {
979
+ id: 1287,
980
+ name: "Moonbase Alpha",
981
+ network: "moonbase-alpha",
982
+ nativeCurrency: {
983
+ decimals: 18,
984
+ name: "DEV",
985
+ symbol: "DEV"
986
+ },
987
+ rpcUrls: {
988
+ default: {
989
+ http: ["https://rpc.api.moonbase.moonbeam.network"],
990
+ webSocket: ["wss://wss.api.moonbase.moonbeam.network"]
991
+ },
992
+ public: {
993
+ http: ["https://rpc.api.moonbase.moonbeam.network"],
994
+ webSocket: ["wss://wss.api.moonbase.moonbeam.network"]
995
+ }
996
+ },
997
+ blockExplorers: {
998
+ default: {
999
+ name: "Moonscan",
1000
+ url: "https://moonbase.moonscan.io"
1001
+ },
1002
+ etherscan: {
1003
+ name: "Moonscan",
1004
+ url: "https://moonbase.moonscan.io"
1005
+ }
1006
+ },
1007
+ contracts: {
1008
+ multicall3: {
1009
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
1010
+ blockCreated: 1850686
1011
+ }
1012
+ },
1013
+ testnet: true
1014
+ };
1015
+ var moonbeam = {
1016
+ id: 1284,
1017
+ name: "Moonbeam",
1018
+ network: "moonbeam",
1019
+ nativeCurrency: {
1020
+ decimals: 18,
1021
+ name: "GLMR",
1022
+ symbol: "GLMR"
1023
+ },
1024
+ rpcUrls: {
1025
+ public: {
1026
+ http: ["https://moonbeam.public.blastapi.io"],
1027
+ webSocket: ["wss://moonbeam.public.blastapi.io"]
1028
+ },
1029
+ default: {
1030
+ http: ["https://moonbeam.public.blastapi.io"],
1031
+ webSocket: ["wss://moonbeam.public.blastapi.io"]
1032
+ }
1033
+ },
1034
+ blockExplorers: {
1035
+ default: {
1036
+ name: "Moonscan",
1037
+ url: "https://moonscan.io"
1038
+ },
1039
+ etherscan: {
1040
+ name: "Moonscan",
1041
+ url: "https://moonscan.io"
1042
+ }
1043
+ },
1044
+ contracts: {
1045
+ multicall3: {
1046
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
1047
+ blockCreated: 609002
1048
+ }
1049
+ },
1050
+ testnet: false
1051
+ };
1052
+ var moonriver = {
1053
+ id: 1285,
1054
+ name: "Moonriver",
1055
+ network: "moonriver",
1056
+ nativeCurrency: {
1057
+ decimals: 18,
1058
+ name: "MOVR",
1059
+ symbol: "MOVR"
1060
+ },
1061
+ rpcUrls: {
1062
+ public: {
1063
+ http: ["https://moonriver.public.blastapi.io"],
1064
+ webSocket: ["wss://moonriver.public.blastapi.io"]
1065
+ },
1066
+ default: {
1067
+ http: ["https://moonriver.public.blastapi.io"],
1068
+ webSocket: ["wss://moonriver.public.blastapi.io"]
1069
+ }
1070
+ },
1071
+ blockExplorers: {
1072
+ default: {
1073
+ name: "Moonscan",
1074
+ url: "https://moonriver.moonscan.io"
1075
+ },
1076
+ etherscan: {
1077
+ name: "Moonscan",
1078
+ url: "https://moonriver.moonscan.io"
1079
+ }
1080
+ },
1081
+ contracts: {
1082
+ multicall3: {
1083
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
1084
+ blockCreated: 1597904
1085
+ }
1086
+ },
1087
+ testnet: false
1088
+ };
1089
+ var okc = {
1090
+ id: 66,
1091
+ name: "OKC",
1092
+ network: "okc",
1093
+ nativeCurrency: {
1094
+ decimals: 18,
1095
+ name: "OKT",
1096
+ symbol: "OKT"
1097
+ },
1098
+ rpcUrls: {
1099
+ default: { http: ["https://exchainrpc.okex.org"] },
1100
+ public: { http: ["https://exchainrpc.okex.org"] }
1101
+ },
1102
+ blockExplorers: {
1103
+ default: { name: "oklink", url: "https://www.oklink.com/okc" }
1104
+ },
1105
+ contracts: {
1106
+ multicall3: {
1107
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1108
+ blockCreated: 10364792
1109
+ }
1110
+ }
1111
+ };
1112
+ var optimism = {
1113
+ id: 10,
1114
+ name: "Optimism",
1115
+ network: "optimism",
1116
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
1117
+ rpcUrls: {
1118
+ alchemy: {
1119
+ http: ["https://opt-mainnet.g.alchemy.com/v2"],
1120
+ webSocket: ["wss://opt-mainnet.g.alchemy.com/v2"]
1121
+ },
1122
+ infura: {
1123
+ http: ["https://optimism-mainnet.infura.io/v3"],
1124
+ webSocket: ["wss://optimism-mainnet.infura.io/ws/v3"]
1125
+ },
1126
+ default: {
1127
+ http: ["https://mainnet.optimism.io"]
1128
+ },
1129
+ public: {
1130
+ http: ["https://mainnet.optimism.io"]
1131
+ }
1132
+ },
1133
+ blockExplorers: {
1134
+ etherscan: {
1135
+ name: "Etherscan",
1136
+ url: "https://optimistic.etherscan.io"
1137
+ },
1138
+ default: {
1139
+ name: "Optimism Explorer",
1140
+ url: "https://explorer.optimism.io"
1141
+ }
1142
+ },
1143
+ contracts: {
1144
+ multicall3: {
1145
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1146
+ blockCreated: 4286263
1147
+ }
1148
+ }
1149
+ };
1150
+ var optimismGoerli = {
1151
+ id: 420,
1152
+ name: "Optimism Goerli",
1153
+ network: "optimism-goerli",
1154
+ nativeCurrency: { name: "Goerli Ether", symbol: "ETH", decimals: 18 },
1155
+ rpcUrls: {
1156
+ alchemy: {
1157
+ http: ["https://opt-goerli.g.alchemy.com/v2"],
1158
+ webSocket: ["wss://opt-goerli.g.alchemy.com/v2"]
1159
+ },
1160
+ infura: {
1161
+ http: ["https://optimism-goerli.infura.io/v3"],
1162
+ webSocket: ["wss://optimism-goerli.infura.io/ws/v3"]
1163
+ },
1164
+ default: {
1165
+ http: ["https://goerli.optimism.io"]
1166
+ },
1167
+ public: {
1168
+ http: ["https://goerli.optimism.io"]
1169
+ }
1170
+ },
1171
+ blockExplorers: {
1172
+ etherscan: {
1173
+ name: "Etherscan",
1174
+ url: "https://goerli-optimism.etherscan.io"
1175
+ },
1176
+ default: {
1177
+ name: "Etherscan",
1178
+ url: "https://goerli-optimism.etherscan.io"
1179
+ }
1180
+ },
1181
+ contracts: {
1182
+ multicall3: {
1183
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1184
+ blockCreated: 49461
1185
+ }
1186
+ },
1187
+ testnet: true
1188
+ };
1189
+ var polygon = {
1190
+ id: 137,
1191
+ name: "Polygon",
1192
+ network: "matic",
1193
+ nativeCurrency: { name: "MATIC", symbol: "MATIC", decimals: 18 },
1194
+ rpcUrls: {
1195
+ alchemy: {
1196
+ http: ["https://polygon-mainnet.g.alchemy.com/v2"],
1197
+ webSocket: ["wss://polygon-mainnet.g.alchemy.com/v2"]
1198
+ },
1199
+ infura: {
1200
+ http: ["https://polygon-mainnet.infura.io/v3"],
1201
+ webSocket: ["wss://polygon-mainnet.infura.io/ws/v3"]
1202
+ },
1203
+ default: {
1204
+ http: ["https://polygon-rpc.com"]
1205
+ },
1206
+ public: {
1207
+ http: ["https://polygon-rpc.com"]
1208
+ }
1209
+ },
1210
+ blockExplorers: {
1211
+ etherscan: {
1212
+ name: "PolygonScan",
1213
+ url: "https://polygonscan.com"
1214
+ },
1215
+ default: {
1216
+ name: "PolygonScan",
1217
+ url: "https://polygonscan.com"
1218
+ }
1219
+ },
1220
+ contracts: {
1221
+ multicall3: {
1222
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1223
+ blockCreated: 25770160
1224
+ }
1225
+ }
1226
+ };
1227
+ var polygonMumbai = {
1228
+ id: 80001,
1229
+ name: "Polygon Mumbai",
1230
+ network: "maticmum",
1231
+ nativeCurrency: { name: "MATIC", symbol: "MATIC", decimals: 18 },
1232
+ rpcUrls: {
1233
+ alchemy: {
1234
+ http: ["https://polygon-mumbai.g.alchemy.com/v2"],
1235
+ webSocket: ["wss://polygon-mumbai.g.alchemy.com/v2"]
1236
+ },
1237
+ infura: {
1238
+ http: ["https://polygon-mumbai.infura.io/v3"],
1239
+ webSocket: ["wss://polygon-mumbai.infura.io/ws/v3"]
1240
+ },
1241
+ default: {
1242
+ http: ["https://matic-mumbai.chainstacklabs.com"]
1243
+ },
1244
+ public: {
1245
+ http: ["https://matic-mumbai.chainstacklabs.com"]
1246
+ }
1247
+ },
1248
+ blockExplorers: {
1249
+ etherscan: {
1250
+ name: "PolygonScan",
1251
+ url: "https://mumbai.polygonscan.com"
1252
+ },
1253
+ default: {
1254
+ name: "PolygonScan",
1255
+ url: "https://mumbai.polygonscan.com"
1256
+ }
1257
+ },
1258
+ contracts: {
1259
+ multicall3: {
1260
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1261
+ blockCreated: 25770160
1262
+ }
1263
+ },
1264
+ testnet: true
1265
+ };
1266
+ var polygonZkEvmTestnet = {
1267
+ id: 1422,
1268
+ name: "Polygon zkEVM Testnet",
1269
+ network: "polygon-zkevm-testnet",
1270
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
1271
+ rpcUrls: {
1272
+ default: {
1273
+ http: ["https://rpc.public.zkevm-test.net"]
1274
+ },
1275
+ public: {
1276
+ http: ["https://rpc.public.zkevm-test.net"]
1277
+ }
1278
+ },
1279
+ blockExplorers: {
1280
+ default: {
1281
+ name: "Blockscout",
1282
+ url: "https://explorer.public.zkevm-test.net"
1283
+ }
1284
+ },
1285
+ testnet: true
1286
+ };
1287
+ var sepolia = {
1288
+ id: 11155111,
1289
+ network: "sepolia",
1290
+ name: "Sepolia",
1291
+ nativeCurrency: { name: "Sepolia Ether", symbol: "SEP", decimals: 18 },
1292
+ rpcUrls: {
1293
+ infura: {
1294
+ http: ["https://sepolia.infura.io/v3"],
1295
+ webSocket: ["wss://sepolia.infura.io/ws/v3"]
1296
+ },
1297
+ default: {
1298
+ http: ["https://rpc.sepolia.org"]
1299
+ },
1300
+ public: {
1301
+ http: ["https://rpc.sepolia.org"]
1302
+ }
1303
+ },
1304
+ blockExplorers: {
1305
+ etherscan: {
1306
+ name: "Etherscan",
1307
+ url: "https://sepolia.etherscan.io"
1308
+ },
1309
+ default: {
1310
+ name: "Etherscan",
1311
+ url: "https://sepolia.etherscan.io"
1312
+ }
1313
+ },
1314
+ contracts: {
1315
+ multicall3: {
1316
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
1317
+ blockCreated: 6507670
1318
+ }
1319
+ },
1320
+ testnet: true
1321
+ };
1322
+ var songbird = {
1323
+ id: 19,
1324
+ name: "Songbird Mainnet",
1325
+ network: "songbird-mainnet",
1326
+ nativeCurrency: {
1327
+ decimals: 18,
1328
+ name: "songbird",
1329
+ symbol: "SGB"
1330
+ },
1331
+ rpcUrls: {
1332
+ default: { http: ["https://songbird-api.flare.network/ext/C/rpc"] },
1333
+ public: { http: ["https://songbird-api.flare.network/ext/C/rpc"] }
1334
+ },
1335
+ blockExplorers: {
1336
+ default: {
1337
+ name: "Songbird Explorer",
1338
+ url: "https://songbird-explorer.flare.network"
1339
+ }
1340
+ }
1341
+ };
1342
+ var songbirdTestnet = {
1343
+ id: 16,
1344
+ name: "Coston",
1345
+ network: "coston",
1346
+ nativeCurrency: {
1347
+ decimals: 18,
1348
+ name: "costonflare",
1349
+ symbol: "CFLR"
1350
+ },
1351
+ rpcUrls: {
1352
+ default: { http: ["https://coston-api.flare.network/ext/C/rpc"] },
1353
+ public: { http: ["https://coston-api.flare.network/ext/C/rpc"] }
1354
+ },
1355
+ blockExplorers: {
1356
+ default: {
1357
+ name: "Coston Explorer",
1358
+ url: "https://coston-explorer.flare.network"
1359
+ }
1360
+ },
1361
+ testnet: true
1362
+ };
1363
+ var shardeumSphinx = {
1364
+ id: 8082,
1365
+ name: "Shardeum Sphinx",
1366
+ network: "shmSphinx",
1367
+ nativeCurrency: { name: "SHARDEUM", symbol: "SHM", decimals: 18 },
1368
+ rpcUrls: {
1369
+ default: {
1370
+ http: ["https://sphinx.shardeum.org"]
1371
+ },
1372
+ public: {
1373
+ http: ["https://sphinx.shardeum.org"]
1374
+ }
1375
+ },
1376
+ blockExplorers: {
1377
+ default: {
1378
+ name: "Shardeum Explorer",
1379
+ url: "https://explorer-sphinx.shardeum.org"
1380
+ }
1381
+ },
1382
+ testnet: true
1383
+ };
1384
+ var taraxa = {
1385
+ id: 841,
1386
+ name: "Taraxa Mainnet",
1387
+ network: "taraxa",
1388
+ nativeCurrency: { name: "Tara", symbol: "TARA", decimals: 18 },
1389
+ rpcUrls: {
1390
+ default: {
1391
+ http: ["https://rpc.mainnet.taraxa.io"]
1392
+ },
1393
+ public: {
1394
+ http: ["https://rpc.mainnet.taraxa.io"]
1395
+ }
1396
+ },
1397
+ blockExplorers: {
1398
+ default: {
1399
+ name: "Taraxa Explorer",
1400
+ url: "https://explorer.mainnet.taraxa.io"
1401
+ }
1402
+ }
1403
+ };
1404
+ var taraxaTestnet = {
1405
+ id: 842,
1406
+ name: "Taraxa Testnet",
1407
+ network: "taraxa-testnet",
1408
+ nativeCurrency: { name: "Tara", symbol: "TARA", decimals: 18 },
1409
+ rpcUrls: {
1410
+ default: {
1411
+ http: ["https://rpc.testnet.taraxa.io"]
1412
+ },
1413
+ public: {
1414
+ http: ["https://rpc.testnet.taraxa.io"]
1415
+ }
1416
+ },
1417
+ blockExplorers: {
1418
+ default: {
1419
+ name: "Taraxa Explorer",
1420
+ url: "https://explorer.testnet.taraxa.io"
1421
+ }
1422
+ },
1423
+ testnet: true
1424
+ };
1425
+ var telos = {
1426
+ id: 40,
1427
+ name: "Telos",
1428
+ network: "telos",
1429
+ nativeCurrency: {
1430
+ decimals: 18,
1431
+ name: "Telos",
1432
+ symbol: "TLOS"
1433
+ },
1434
+ rpcUrls: {
1435
+ default: { http: ["https://mainnet.telos.net/evm"] },
1436
+ public: { http: ["https://mainnet.telos.net/evm"] }
1437
+ },
1438
+ blockExplorers: {
1439
+ default: {
1440
+ name: "Teloscan",
1441
+ url: "https://www.teloscan.io/"
1442
+ }
1443
+ },
1444
+ contracts: {
1445
+ multicall3: {
1446
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
1447
+ blockCreated: 246530709
1448
+ }
1449
+ }
1450
+ };
1451
+ var telosTestnet = {
1452
+ id: 41,
1453
+ name: "Telos",
1454
+ network: "telosTestnet",
1455
+ nativeCurrency: {
1456
+ decimals: 18,
1457
+ name: "Telos",
1458
+ symbol: "TLOS"
1459
+ },
1460
+ rpcUrls: {
1461
+ default: { http: ["https://testnet.telos.net/evm"] },
1462
+ public: { http: ["https://testnet.telos.net/evm"] }
1463
+ },
1464
+ blockExplorers: {
1465
+ default: {
1466
+ name: "Teloscan (testnet)",
1467
+ url: "https://testnet.teloscan.io/"
1468
+ }
1469
+ },
1470
+ testnet: true
1471
+ };
1472
+ var zhejiang = {
1473
+ id: 1337803,
1474
+ network: "zhejiang",
1475
+ name: "Zhejiang",
1476
+ nativeCurrency: { name: "Zhejiang Ether", symbol: "ZhejETH", decimals: 18 },
1477
+ rpcUrls: {
1478
+ default: {
1479
+ http: ["https://rpc.zhejiang.ethpandaops.io"]
1480
+ },
1481
+ public: {
1482
+ http: ["https://rpc.zhejiang.ethpandaops.io"]
1483
+ }
1484
+ },
1485
+ blockExplorers: {
1486
+ beaconchain: {
1487
+ name: "Etherscan",
1488
+ url: "https://zhejiang.beaconcha.in"
1489
+ },
1490
+ blockscout: {
1491
+ name: "Blockscout",
1492
+ url: "https://blockscout.com/eth/zhejiang-testnet"
1493
+ },
1494
+ default: {
1495
+ name: "Beaconchain",
1496
+ url: "https://zhejiang.beaconcha.in"
1497
+ }
1498
+ },
1499
+ testnet: true
1500
+ };
1501
+ var zkSync = {
1502
+ id: 324,
1503
+ name: "zkSync",
1504
+ network: "zksync",
1505
+ nativeCurrency: {
1506
+ decimals: 18,
1507
+ name: "Ether",
1508
+ symbol: "ETH"
1509
+ },
1510
+ rpcUrls: {
1511
+ default: {
1512
+ http: ["https://zksync2-mainnet.zksync.io"],
1513
+ webSocket: ["wss://zksync2-mainnet.zksync.io/ws"]
1514
+ },
1515
+ public: {
1516
+ http: ["https://zksync2-mainnet.zksync.io"],
1517
+ webSocket: ["wss://zksync2-mainnet.zksync.io/ws"]
1518
+ }
1519
+ },
1520
+ blockExplorers: {
1521
+ default: {
1522
+ name: "zkExplorer",
1523
+ url: "https://explorer.zksync.io"
1524
+ }
1525
+ }
1526
+ };
1527
+ var zkSyncTestnet = {
1528
+ id: 280,
1529
+ name: "zkSync Testnet",
1530
+ network: "zksync-testnet",
1531
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
1532
+ rpcUrls: {
1533
+ default: {
1534
+ http: ["https://zksync2-testnet.zksync.dev"],
1535
+ webSocket: ["wss://zksync2-testnet.zksync.dev/ws"]
1536
+ },
1537
+ public: {
1538
+ http: ["https://zksync2-testnet.zksync.dev"],
1539
+ webSocket: ["wss://zksync2-testnet.zksync.dev/ws"]
1540
+ }
1541
+ },
1542
+ blockExplorers: {
1543
+ default: {
1544
+ name: "zkExplorer",
1545
+ url: "https://goerli.explorer.zksync.io"
1546
+ }
1547
+ },
1548
+ testnet: true
1549
+ };
1550
+
48
1551
  // src/chains.ts
49
1552
  function chainName(chainId) {
50
1553
  switch (parseInt(chainId.toString())) {
@@ -94,13 +1597,70 @@ function truncateEthAddress(address) {
94
1597
  }
95
1598
  // Annotate the CommonJS export names for ESM import in node:
96
1599
  0 && (module.exports = {
1600
+ arbitrum,
1601
+ arbitrumGoerli,
1602
+ aurora,
1603
+ auroraTestnet,
1604
+ avalanche,
1605
+ avalancheFuji,
1606
+ baseGoerli,
97
1607
  bipsToDecimal,
98
1608
  bipsToPercent,
1609
+ boba,
1610
+ bronos,
1611
+ bronosTestnet,
1612
+ bsc,
1613
+ bscTestnet,
1614
+ canto,
1615
+ celo,
1616
+ celoAlfajores,
99
1617
  chainName,
1618
+ crossbell,
100
1619
  etherscanAddressURL,
101
1620
  etherscanHost,
102
1621
  etherscanTxURL,
1622
+ evmos,
1623
+ evmosTestnet,
1624
+ fantom,
1625
+ fantomTestnet,
1626
+ filecoin,
1627
+ filecoinCalibration,
1628
+ filecoinHyperspace,
1629
+ flare,
1630
+ flareTestnet,
1631
+ foundry,
1632
+ gnosis,
1633
+ gnosisChiado,
1634
+ goerli,
1635
+ hardhat,
1636
+ harmonyOne,
1637
+ iotex,
1638
+ iotexTestnet,
1639
+ localhost,
1640
+ mainnet,
1641
+ metis,
1642
+ metisGoerli,
1643
+ moonbaseAlpha,
1644
+ moonbeam,
1645
+ moonriver,
1646
+ okc,
1647
+ optimism,
1648
+ optimismGoerli,
103
1649
  percentToBips,
104
- truncateEthAddress
1650
+ polygon,
1651
+ polygonMumbai,
1652
+ polygonZkEvmTestnet,
1653
+ sepolia,
1654
+ shardeumSphinx,
1655
+ songbird,
1656
+ songbirdTestnet,
1657
+ taraxa,
1658
+ taraxaTestnet,
1659
+ telos,
1660
+ telosTestnet,
1661
+ truncateEthAddress,
1662
+ zhejiang,
1663
+ zkSync,
1664
+ zkSyncTestnet
105
1665
  });
106
1666
  //# sourceMappingURL=index.cjs.map