eth-chainlist 0.0.808 → 0.0.810
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/CHANGELOG.md +16 -0
- package/data/chain.js +248 -30
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.810 (2026-08-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.809 ([fec028c](https://github.com/poowf/eth-chainlist/commit/fec028cae5ac49f0ac90949d825ad50dbd4c7f6b))
|
|
9
|
+
* update chain data ([5aa9188](https://github.com/poowf/eth-chainlist/commit/5aa91884118c5288d48110bce23a40a9f4d05012))
|
|
10
|
+
|
|
11
|
+
### 0.0.809 (2026-08-16)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.808 ([61a8a76](https://github.com/poowf/eth-chainlist/commit/61a8a767094f24e7f0c5f0cdec3a4cf7dca31527))
|
|
17
|
+
* update chain data ([25ebcaf](https://github.com/poowf/eth-chainlist/commit/25ebcaf2def14b48bb0258c5ebd1a3d5d1e873fd))
|
|
18
|
+
|
|
3
19
|
### 0.0.808 (2026-08-15)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2891,7 +2891,8 @@ const chainArray = [
|
|
|
2891
2891
|
'https://polygon.gateway.tenderly.co',
|
|
2892
2892
|
'wss://polygon.gateway.tenderly.co',
|
|
2893
2893
|
'https://rpc.satelink.network/rpc/polygon',
|
|
2894
|
-
'https://rpcfree.com/polygon-rpc'
|
|
2894
|
+
'https://rpcfree.com/polygon-rpc',
|
|
2895
|
+
'wss://rpc.satelink.network/rpc/ws/polygon'
|
|
2895
2896
|
],
|
|
2896
2897
|
faucets: [],
|
|
2897
2898
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -3438,19 +3439,24 @@ const chainArray = [
|
|
|
3438
3439
|
]
|
|
3439
3440
|
},
|
|
3440
3441
|
{
|
|
3441
|
-
name: '
|
|
3442
|
-
chain: '
|
|
3443
|
-
rpc: [],
|
|
3444
|
-
features: [ { name: 'EIP155' } ],
|
|
3442
|
+
name: 'Farm Chain',
|
|
3443
|
+
chain: 'FMC',
|
|
3444
|
+
rpc: [ 'https://rpc.fmcscan.com' ],
|
|
3445
3445
|
faucets: [],
|
|
3446
|
-
nativeCurrency: { name: '
|
|
3447
|
-
infoURL: 'https://
|
|
3448
|
-
shortName: '
|
|
3446
|
+
nativeCurrency: { name: 'Farm Coin', symbol: 'FMC', decimals: 18 },
|
|
3447
|
+
infoURL: 'https://fmcscan.com',
|
|
3448
|
+
shortName: 'fmc',
|
|
3449
3449
|
chainId: 165,
|
|
3450
3450
|
networkId: 165,
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3451
|
+
redFlags: [ 'reusedChainId' ],
|
|
3452
|
+
slip44: 60,
|
|
3453
|
+
explorers: [
|
|
3454
|
+
{
|
|
3455
|
+
name: 'Farm Chain Explorer',
|
|
3456
|
+
url: 'https://fmcscan.com',
|
|
3457
|
+
standard: 'EIP3091'
|
|
3458
|
+
}
|
|
3459
|
+
]
|
|
3454
3460
|
},
|
|
3455
3461
|
{
|
|
3456
3462
|
name: 'Nomina',
|
|
@@ -5268,6 +5274,19 @@ const chainArray = [
|
|
|
5268
5274
|
{ name: 'hscan', url: 'https://hscan.org', standard: 'EIP3091' }
|
|
5269
5275
|
]
|
|
5270
5276
|
},
|
|
5277
|
+
{
|
|
5278
|
+
name: 'Orbinum',
|
|
5279
|
+
chain: 'ORB',
|
|
5280
|
+
icon: 'orbinum',
|
|
5281
|
+
rpc: [],
|
|
5282
|
+
faucets: [],
|
|
5283
|
+
nativeCurrency: { name: 'ORB', symbol: 'ORB', decimals: 18 },
|
|
5284
|
+
infoURL: 'https://orbinum.network',
|
|
5285
|
+
shortName: 'orbinum',
|
|
5286
|
+
chainId: 270,
|
|
5287
|
+
networkId: 270,
|
|
5288
|
+
status: 'incubating'
|
|
5289
|
+
},
|
|
5271
5290
|
{
|
|
5272
5291
|
name: 'EgonCoin Mainnet',
|
|
5273
5292
|
chain: 'EGON',
|
|
@@ -18640,6 +18659,28 @@ const chainArray = [
|
|
|
18640
18659
|
}
|
|
18641
18660
|
]
|
|
18642
18661
|
},
|
|
18662
|
+
{
|
|
18663
|
+
name: 'Orbinum Testnet',
|
|
18664
|
+
chain: 'ORB',
|
|
18665
|
+
icon: 'orbinum',
|
|
18666
|
+
rpc: [
|
|
18667
|
+
'https://rpc-1.testnet.orbinum.io',
|
|
18668
|
+
'https://rpc-2.testnet.orbinum.io'
|
|
18669
|
+
],
|
|
18670
|
+
faucets: [ 'https://faucet.orbinum.network' ],
|
|
18671
|
+
nativeCurrency: { name: 'ORB', symbol: 'ORB', decimals: 18 },
|
|
18672
|
+
infoURL: 'https://orbinum.network',
|
|
18673
|
+
shortName: 'orbinum-testnet',
|
|
18674
|
+
chainId: 2700,
|
|
18675
|
+
networkId: 2700,
|
|
18676
|
+
explorers: [
|
|
18677
|
+
{
|
|
18678
|
+
name: 'Orbinum Privacy Explorer',
|
|
18679
|
+
url: 'https://explorer.testnet.orbinum.network',
|
|
18680
|
+
standard: 'EIP3091'
|
|
18681
|
+
}
|
|
18682
|
+
]
|
|
18683
|
+
},
|
|
18643
18684
|
{
|
|
18644
18685
|
name: 'Morph Testnet',
|
|
18645
18686
|
chain: 'ETH',
|
|
@@ -23140,6 +23181,18 @@ const chainArray = [
|
|
|
23140
23181
|
chainId: 5545,
|
|
23141
23182
|
networkId: 5545
|
|
23142
23183
|
},
|
|
23184
|
+
{
|
|
23185
|
+
name: 'Orden Global',
|
|
23186
|
+
chain: 'OGB',
|
|
23187
|
+
rpc: [],
|
|
23188
|
+
faucets: [],
|
|
23189
|
+
nativeCurrency: { name: 'Origen', symbol: 'ORIGEN', decimals: 18 },
|
|
23190
|
+
infoURL: 'https://ordenglobal.org',
|
|
23191
|
+
shortName: 'ogb',
|
|
23192
|
+
chainId: 5550,
|
|
23193
|
+
networkId: 5550,
|
|
23194
|
+
status: 'incubating'
|
|
23195
|
+
},
|
|
23143
23196
|
{
|
|
23144
23197
|
name: 'Nahmii 2 Mainnet',
|
|
23145
23198
|
chain: 'Nahmii',
|
|
@@ -23924,6 +23977,27 @@ const chainArray = [
|
|
|
23924
23977
|
}
|
|
23925
23978
|
]
|
|
23926
23979
|
},
|
|
23980
|
+
{
|
|
23981
|
+
name: 'YNX Testnet',
|
|
23982
|
+
chain: 'YNX',
|
|
23983
|
+
icon: 'ynx',
|
|
23984
|
+
rpc: [ 'https://evm.ynxweb4.com' ],
|
|
23985
|
+
faucets: [ 'https://www.ynxweb4.com/dapp/faucet' ],
|
|
23986
|
+
nativeCurrency: { name: 'YNXT', symbol: 'YNXT', decimals: 18 },
|
|
23987
|
+
infoURL: 'https://ynxweb4.com',
|
|
23988
|
+
shortName: 'ynxtest',
|
|
23989
|
+
chainId: 6423,
|
|
23990
|
+
networkId: 6423,
|
|
23991
|
+
slip44: 60,
|
|
23992
|
+
explorers: [
|
|
23993
|
+
{
|
|
23994
|
+
name: 'YNX Explorer',
|
|
23995
|
+
url: 'https://explorer.ynxweb4.com',
|
|
23996
|
+
standard: 'EIP3091'
|
|
23997
|
+
}
|
|
23998
|
+
],
|
|
23999
|
+
features: [ { name: 'EIP155' } ]
|
|
24000
|
+
},
|
|
23927
24001
|
{
|
|
23928
24002
|
name: 'MIZUHIKI Testnet Awaji',
|
|
23929
24003
|
chain: 'MIZU',
|
|
@@ -26771,7 +26845,8 @@ const chainArray = [
|
|
|
26771
26845
|
'https://base-rpc.publicnode.com',
|
|
26772
26846
|
'wss://base-rpc.publicnode.com',
|
|
26773
26847
|
'https://rpcfree.com/base-rpc',
|
|
26774
|
-
'https://rpc.baseazul.dev'
|
|
26848
|
+
'https://rpc.baseazul.dev',
|
|
26849
|
+
'https://rpc.satelink.network/rpc/base'
|
|
26775
26850
|
],
|
|
26776
26851
|
faucets: [],
|
|
26777
26852
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -26797,11 +26872,6 @@ const chainArray = [
|
|
|
26797
26872
|
url: 'https://base.dex.guru',
|
|
26798
26873
|
icon: 'dexguru',
|
|
26799
26874
|
standard: 'EIP3091'
|
|
26800
|
-
},
|
|
26801
|
-
{
|
|
26802
|
-
name: 'Routescan',
|
|
26803
|
-
url: 'https://base.superscan.network',
|
|
26804
|
-
standard: 'EIP3091'
|
|
26805
26875
|
}
|
|
26806
26876
|
],
|
|
26807
26877
|
status: 'active'
|
|
@@ -27151,7 +27221,8 @@ const chainArray = [
|
|
|
27151
27221
|
standard: 'EIP3091'
|
|
27152
27222
|
}
|
|
27153
27223
|
],
|
|
27154
|
-
status: 'active'
|
|
27224
|
+
status: 'active',
|
|
27225
|
+
icon: 'garuda'
|
|
27155
27226
|
},
|
|
27156
27227
|
{
|
|
27157
27228
|
name: 'MARO Blockchain Mainnet',
|
|
@@ -27334,23 +27405,35 @@ const chainArray = [
|
|
|
27334
27405
|
]
|
|
27335
27406
|
},
|
|
27336
27407
|
{
|
|
27337
|
-
name: '
|
|
27338
|
-
chain: '
|
|
27339
|
-
rpc: [
|
|
27408
|
+
name: 'c8ntinuum',
|
|
27409
|
+
chain: 'CTM',
|
|
27410
|
+
rpc: [
|
|
27411
|
+
'https://rpc.c8ntinuum.com',
|
|
27412
|
+
'https://rpc.c8ntinuum.io',
|
|
27413
|
+
'https://rpc.c8ntinuum.link'
|
|
27414
|
+
],
|
|
27340
27415
|
faucets: [],
|
|
27341
|
-
nativeCurrency: { name: '
|
|
27342
|
-
|
|
27343
|
-
|
|
27416
|
+
nativeCurrency: { name: 'c8ntinuum', symbol: 'CTM', decimals: 18 },
|
|
27417
|
+
features: [
|
|
27418
|
+
{ name: 'EIP155' },
|
|
27419
|
+
{ name: 'EIP1559' },
|
|
27420
|
+
{ name: 'EIP2930' },
|
|
27421
|
+
{ name: 'EIP7702' }
|
|
27422
|
+
],
|
|
27423
|
+
infoURL: 'https://c8ntinuum.com',
|
|
27424
|
+
shortName: 'ctm',
|
|
27344
27425
|
chainId: 8888,
|
|
27345
27426
|
networkId: 8888,
|
|
27346
|
-
|
|
27427
|
+
slip44: 60,
|
|
27428
|
+
icon: 'c8ntinuum',
|
|
27347
27429
|
explorers: [
|
|
27348
27430
|
{
|
|
27349
|
-
name: '
|
|
27350
|
-
url: 'https://
|
|
27431
|
+
name: 'CTMScan',
|
|
27432
|
+
url: 'https://ctmscan.io',
|
|
27351
27433
|
standard: 'EIP3091'
|
|
27352
27434
|
}
|
|
27353
27435
|
],
|
|
27436
|
+
status: 'active',
|
|
27354
27437
|
redFlags: [ 'reusedChainId' ]
|
|
27355
27438
|
},
|
|
27356
27439
|
{
|
|
@@ -33494,6 +33577,25 @@ const chainArray = [
|
|
|
33494
33577
|
}
|
|
33495
33578
|
]
|
|
33496
33579
|
},
|
|
33580
|
+
{
|
|
33581
|
+
name: 'Coinbosa Chain',
|
|
33582
|
+
chain: 'BOSA',
|
|
33583
|
+
rpc: [ 'https://explorer.coinbosa.com/rpc' ],
|
|
33584
|
+
faucets: [],
|
|
33585
|
+
nativeCurrency: { name: 'Coinbosa', symbol: 'BOSA', decimals: 18 },
|
|
33586
|
+
infoURL: 'https://coinbosa.com',
|
|
33587
|
+
shortName: 'bosa',
|
|
33588
|
+
chainId: 26262,
|
|
33589
|
+
networkId: 26262,
|
|
33590
|
+
icon: 'coinbosa',
|
|
33591
|
+
explorers: [
|
|
33592
|
+
{
|
|
33593
|
+
name: 'Coinbosa Explorer',
|
|
33594
|
+
url: 'https://explorer.coinbosa.com',
|
|
33595
|
+
standard: 'none'
|
|
33596
|
+
}
|
|
33597
|
+
]
|
|
33598
|
+
},
|
|
33497
33599
|
{
|
|
33498
33600
|
name: 'DucatusX Testnet',
|
|
33499
33601
|
chain: 'DUCX',
|
|
@@ -35447,7 +35549,8 @@ const chainArray = [
|
|
|
35447
35549
|
'https://arb1.arbitrum.io/rpc',
|
|
35448
35550
|
'https://arbitrum-one-rpc.publicnode.com',
|
|
35449
35551
|
'wss://arbitrum-one-rpc.publicnode.com',
|
|
35450
|
-
'https://rpcfree.com/arbitrum-rpc'
|
|
35552
|
+
'https://rpcfree.com/arbitrum-rpc',
|
|
35553
|
+
'https://rpc.satelink.network/rpc/arbitrum'
|
|
35451
35554
|
],
|
|
35452
35555
|
faucets: [],
|
|
35453
35556
|
explorers: [
|
|
@@ -39205,7 +39308,7 @@ const chainArray = [
|
|
|
39205
39308
|
]
|
|
39206
39309
|
},
|
|
39207
39310
|
{
|
|
39208
|
-
name: 'EAV7
|
|
39311
|
+
name: 'EAV7',
|
|
39209
39312
|
chain: 'EAV7',
|
|
39210
39313
|
icon: 'eav7',
|
|
39211
39314
|
rpc: [ 'https://rpc.eavscan.com' ],
|
|
@@ -39877,7 +39980,8 @@ const chainArray = [
|
|
|
39877
39980
|
'https://rpc-amoy.polygon.technology',
|
|
39878
39981
|
'https://polygon-amoy-bor-rpc.publicnode.com',
|
|
39879
39982
|
'wss://polygon-amoy-bor-rpc.publicnode.com',
|
|
39880
|
-
'https://polygon-amoy.drpc.org'
|
|
39983
|
+
'https://polygon-amoy.drpc.org',
|
|
39984
|
+
'https://rpc.satelink.network/rpc/amoy'
|
|
39881
39985
|
],
|
|
39882
39986
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
|
39883
39987
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -40686,6 +40790,25 @@ const chainArray = [
|
|
|
40686
40790
|
}
|
|
40687
40791
|
]
|
|
40688
40792
|
},
|
|
40793
|
+
{
|
|
40794
|
+
name: 'Shark Network',
|
|
40795
|
+
chain: 'SHARK',
|
|
40796
|
+
rpc: [ 'https://rpc.rpcshark.com' ],
|
|
40797
|
+
faucets: [],
|
|
40798
|
+
nativeCurrency: { name: 'Shark', symbol: 'SHARK', decimals: 18 },
|
|
40799
|
+
infoURL: 'https://swapshark.net',
|
|
40800
|
+
shortName: 'shark',
|
|
40801
|
+
chainId: 88118,
|
|
40802
|
+
networkId: 88118,
|
|
40803
|
+
icon: 'shark',
|
|
40804
|
+
explorers: [
|
|
40805
|
+
{
|
|
40806
|
+
name: 'SharkScan',
|
|
40807
|
+
url: 'https://sharkscan.app',
|
|
40808
|
+
standard: 'EIP3091'
|
|
40809
|
+
}
|
|
40810
|
+
]
|
|
40811
|
+
},
|
|
40689
40812
|
{
|
|
40690
40813
|
name: 'InoAi',
|
|
40691
40814
|
chain: 'INOAI',
|
|
@@ -43327,6 +43450,25 @@ const chainArray = [
|
|
|
43327
43450
|
}
|
|
43328
43451
|
]
|
|
43329
43452
|
},
|
|
43453
|
+
{
|
|
43454
|
+
name: 'WheatCoin Mainnet',
|
|
43455
|
+
chain: 'WHEAT',
|
|
43456
|
+
rpc: [ 'https://rpc.mizodevelopment.com' ],
|
|
43457
|
+
faucets: [],
|
|
43458
|
+
nativeCurrency: { name: 'WheatCoin', symbol: 'WHEAT', decimals: 18 },
|
|
43459
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
43460
|
+
infoURL: 'https://itzlalpekhlua.github.io/WheatCoin-Token/',
|
|
43461
|
+
shortName: 'wheat',
|
|
43462
|
+
chainId: 153043,
|
|
43463
|
+
networkId: 153043,
|
|
43464
|
+
explorers: [
|
|
43465
|
+
{
|
|
43466
|
+
name: 'WheatCoin Explorer',
|
|
43467
|
+
url: 'https://explorer.mizodevelopment.com',
|
|
43468
|
+
standard: 'EIP3091'
|
|
43469
|
+
}
|
|
43470
|
+
]
|
|
43471
|
+
},
|
|
43330
43472
|
{
|
|
43331
43473
|
name: 'Odyssey Chain Mainnet',
|
|
43332
43474
|
chain: 'DIONE',
|
|
@@ -47613,6 +47755,25 @@ const chainArray = [
|
|
|
47613
47755
|
],
|
|
47614
47756
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
47615
47757
|
},
|
|
47758
|
+
{
|
|
47759
|
+
name: 'HanChain Mainnet',
|
|
47760
|
+
chain: 'HAN',
|
|
47761
|
+
rpc: [ 'https://rpc.hanchain.cc/rpc' ],
|
|
47762
|
+
features: [ { name: 'EIP1559' } ],
|
|
47763
|
+
faucets: [],
|
|
47764
|
+
nativeCurrency: { name: 'HAN', symbol: 'HAN', decimals: 18 },
|
|
47765
|
+
infoURL: 'https://rpc.hanchain.cc',
|
|
47766
|
+
shortName: 'hanchain',
|
|
47767
|
+
chainId: 726578,
|
|
47768
|
+
networkId: 726578,
|
|
47769
|
+
explorers: [
|
|
47770
|
+
{
|
|
47771
|
+
name: 'HanChain Explorer',
|
|
47772
|
+
url: 'https://rpc.hanchain.cc',
|
|
47773
|
+
standard: 'EIP3091'
|
|
47774
|
+
}
|
|
47775
|
+
]
|
|
47776
|
+
},
|
|
47616
47777
|
{
|
|
47617
47778
|
name: 'bokuto',
|
|
47618
47779
|
chain: 'bokuto',
|
|
@@ -49662,6 +49823,27 @@ const chainArray = [
|
|
|
49662
49823
|
icon: 'coti',
|
|
49663
49824
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
49664
49825
|
},
|
|
49826
|
+
{
|
|
49827
|
+
name: 'Winmar Tech Chain',
|
|
49828
|
+
chain: 'WTC',
|
|
49829
|
+
icon: 'wtc',
|
|
49830
|
+
rpc: [ 'https://winmar.tech/rpc' ],
|
|
49831
|
+
faucets: [ 'https://winmar.tech/faucet' ],
|
|
49832
|
+
nativeCurrency: { name: 'Winmar Tech Chain', symbol: 'WTC', decimals: 18 },
|
|
49833
|
+
infoURL: 'https://winmar.tech',
|
|
49834
|
+
shortName: 'wtc',
|
|
49835
|
+
chainId: 2640162,
|
|
49836
|
+
networkId: 2640162,
|
|
49837
|
+
explorers: [
|
|
49838
|
+
{
|
|
49839
|
+
name: 'Winmar Explorer',
|
|
49840
|
+
url: 'https://winmar.tech/explorer',
|
|
49841
|
+
standard: 'EIP3091'
|
|
49842
|
+
}
|
|
49843
|
+
],
|
|
49844
|
+
features: [ { name: 'EIP155' } ],
|
|
49845
|
+
status: 'active'
|
|
49846
|
+
},
|
|
49665
49847
|
{
|
|
49666
49848
|
name: 'Horizen Testnet',
|
|
49667
49849
|
chain: 'horizen',
|
|
@@ -54821,6 +55003,25 @@ const chainArray = [
|
|
|
54821
55003
|
}
|
|
54822
55004
|
]
|
|
54823
55005
|
},
|
|
55006
|
+
{
|
|
55007
|
+
name: 'GUT Network',
|
|
55008
|
+
chain: 'GUT',
|
|
55009
|
+
rpc: [ 'https://rpc.gut.network' ],
|
|
55010
|
+
faucets: [],
|
|
55011
|
+
nativeCurrency: { name: 'GUT', symbol: 'GUT', decimals: 18 },
|
|
55012
|
+
infoURL: 'https://gut.network',
|
|
55013
|
+
shortName: 'gut',
|
|
55014
|
+
chainId: 3078101055,
|
|
55015
|
+
networkId: 3078101055,
|
|
55016
|
+
icon: 'gut',
|
|
55017
|
+
explorers: [
|
|
55018
|
+
{
|
|
55019
|
+
name: 'GUT Explorer',
|
|
55020
|
+
url: 'https://explorer.gut.network',
|
|
55021
|
+
standard: 'none'
|
|
55022
|
+
}
|
|
55023
|
+
]
|
|
55024
|
+
},
|
|
54824
55025
|
{
|
|
54825
55026
|
name: 'Pirl',
|
|
54826
55027
|
chain: 'PIRL',
|
|
@@ -55611,6 +55812,23 @@ const chainArray = [
|
|
|
55611
55812
|
standard: 'EIP3091'
|
|
55612
55813
|
}
|
|
55613
55814
|
]
|
|
55815
|
+
},
|
|
55816
|
+
{
|
|
55817
|
+
name: 'DuckFourFourChain',
|
|
55818
|
+
chain: 'DFFC',
|
|
55819
|
+
icon: 'dffc',
|
|
55820
|
+
rpc: [
|
|
55821
|
+
'https://main-duckchain.zeninhost.xyz',
|
|
55822
|
+
'wss://duckfourfourchain-ws.zeninhost.xyz'
|
|
55823
|
+
],
|
|
55824
|
+
faucets: [],
|
|
55825
|
+
nativeCurrency: { name: 'DuckFourFourCoin', symbol: 'DFFC', decimals: 18 },
|
|
55826
|
+
infoURL: 'https://duckfourfourchain.zeninhost.xyz',
|
|
55827
|
+
shortName: 'dffc',
|
|
55828
|
+
chainId: 2716446429837001,
|
|
55829
|
+
networkId: 2716446429837001,
|
|
55830
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
55831
|
+
explorers: []
|
|
55614
55832
|
}
|
|
55615
55833
|
];
|
|
55616
55834
|
module.exports = chainArray;
|