eth-chainlist 0.0.458 → 0.0.460
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 +182 -27
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.460 (2024-08-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.459 ([4a705ec](https://github.com/poowf/eth-chainlist/commit/4a705ec624dcd0313bed7da3eeaf338567c17b63))
|
|
9
|
+
* update chain data ([ab0ce93](https://github.com/poowf/eth-chainlist/commit/ab0ce935129a4256b9d57730b1c8b451b2cbb7b1))
|
|
10
|
+
|
|
11
|
+
### 0.0.459 (2024-08-06)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.458 ([cd7a10d](https://github.com/poowf/eth-chainlist/commit/cd7a10d5d37f37d81f7697d8f6b7209bb261d36f))
|
|
17
|
+
* update chain data ([f8ef602](https://github.com/poowf/eth-chainlist/commit/f8ef6027acc22773d812ade3591d5070187da892))
|
|
18
|
+
|
|
3
19
|
### 0.0.458 (2024-08-05)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -1714,7 +1714,8 @@ const chainArray = [
|
|
|
1714
1714
|
chain: 'JOC',
|
|
1715
1715
|
rpc: [
|
|
1716
1716
|
'https://rpc-1.japanopenchain.org:8545',
|
|
1717
|
-
'https://rpc-2.japanopenchain.org:8545'
|
|
1717
|
+
'https://rpc-2.japanopenchain.org:8545',
|
|
1718
|
+
'https://rpc-3.japanopenchain.org'
|
|
1718
1719
|
],
|
|
1719
1720
|
faucets: [],
|
|
1720
1721
|
nativeCurrency: { name: 'Japan Open Chain Token', symbol: 'JOC', decimals: 18 },
|
|
@@ -11584,6 +11585,26 @@ const chainArray = [
|
|
|
11584
11585
|
}
|
|
11585
11586
|
]
|
|
11586
11587
|
},
|
|
11588
|
+
{
|
|
11589
|
+
name: 'ReDeFi Layer 2',
|
|
11590
|
+
chain: 'ReDeFi',
|
|
11591
|
+
icon: 'redefi',
|
|
11592
|
+
rpc: [ 'https://layer2.redefi.world' ],
|
|
11593
|
+
faucets: [],
|
|
11594
|
+
nativeCurrency: { name: 'RED', symbol: 'RED', decimals: 18 },
|
|
11595
|
+
infoURL: 'https://redefi.world',
|
|
11596
|
+
shortName: 'red',
|
|
11597
|
+
chainId: 1899,
|
|
11598
|
+
networkId: 1899,
|
|
11599
|
+
slip44: 1899,
|
|
11600
|
+
explorers: [
|
|
11601
|
+
{
|
|
11602
|
+
name: 'ReDeFi Scan',
|
|
11603
|
+
url: 'https://scanlayer2.redefi.world',
|
|
11604
|
+
standard: 'EIP3091'
|
|
11605
|
+
}
|
|
11606
|
+
]
|
|
11607
|
+
},
|
|
11587
11608
|
{
|
|
11588
11609
|
name: 'Sports Chain Network',
|
|
11589
11610
|
chain: 'SCN',
|
|
@@ -14759,12 +14780,14 @@ const chainArray = [
|
|
|
14759
14780
|
slip44: 1
|
|
14760
14781
|
},
|
|
14761
14782
|
{
|
|
14762
|
-
name: '
|
|
14783
|
+
name: 'peaq',
|
|
14763
14784
|
chain: 'peaq',
|
|
14764
14785
|
icon: 'peaq',
|
|
14765
14786
|
rpc: [
|
|
14766
14787
|
'https://peaq.api.onfinality.io/public',
|
|
14767
|
-
'https://peaq-rpc.dwellir.com'
|
|
14788
|
+
'https://peaq-rpc.dwellir.com',
|
|
14789
|
+
'https://peaq-rpc.publicnode.com',
|
|
14790
|
+
'https://evm.peaq.network'
|
|
14768
14791
|
],
|
|
14769
14792
|
faucets: [],
|
|
14770
14793
|
nativeCurrency: { name: 'peaq', symbol: 'PEAQ', decimals: 18 },
|
|
@@ -14773,11 +14796,6 @@ const chainArray = [
|
|
|
14773
14796
|
chainId: 3338,
|
|
14774
14797
|
networkId: 3338,
|
|
14775
14798
|
explorers: [
|
|
14776
|
-
{
|
|
14777
|
-
name: 'Polkadot.js',
|
|
14778
|
-
url: 'https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Fpeaq.api.onfinality.io%2Fpublic-ws#/explorer',
|
|
14779
|
-
standard: 'none'
|
|
14780
|
-
},
|
|
14781
14799
|
{
|
|
14782
14800
|
name: 'Subscan',
|
|
14783
14801
|
url: 'https://peaq.subscan.io',
|
|
@@ -17528,6 +17546,25 @@ const chainArray = [
|
|
|
17528
17546
|
chainId: 6363,
|
|
17529
17547
|
networkId: 6363
|
|
17530
17548
|
},
|
|
17549
|
+
{
|
|
17550
|
+
name: 'Connext Sepolia',
|
|
17551
|
+
chain: 'Connext Sepolia',
|
|
17552
|
+
rpc: [ 'https://rpc.connext-sepolia.gelato.digital/' ],
|
|
17553
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
17554
|
+
faucets: [],
|
|
17555
|
+
infoURL: '',
|
|
17556
|
+
shortName: 'connext-sepolia',
|
|
17557
|
+
chainId: 6398,
|
|
17558
|
+
networkId: 6398,
|
|
17559
|
+
explorers: [
|
|
17560
|
+
{
|
|
17561
|
+
name: 'Connext Sepolia',
|
|
17562
|
+
url: 'https://connext-sepolia.blockscout.com',
|
|
17563
|
+
icon: 'connext',
|
|
17564
|
+
standard: 'none'
|
|
17565
|
+
}
|
|
17566
|
+
]
|
|
17567
|
+
},
|
|
17531
17568
|
{
|
|
17532
17569
|
name: 'Peerpay',
|
|
17533
17570
|
chain: 'P2P',
|
|
@@ -18422,6 +18459,24 @@ const chainArray = [
|
|
|
18422
18459
|
}
|
|
18423
18460
|
]
|
|
18424
18461
|
},
|
|
18462
|
+
{
|
|
18463
|
+
name: 'PandaSea Mainnet',
|
|
18464
|
+
chain: 'PandaSea',
|
|
18465
|
+
rpc: [ 'https://rpc1.pandasea.io' ],
|
|
18466
|
+
faucets: [],
|
|
18467
|
+
nativeCurrency: { name: 'PandaSea Coin', symbol: 'PANDA', decimals: 18 },
|
|
18468
|
+
infoURL: '',
|
|
18469
|
+
shortName: 'pandaSea-mainnet',
|
|
18470
|
+
chainId: 7776,
|
|
18471
|
+
networkId: 7776,
|
|
18472
|
+
explorers: [
|
|
18473
|
+
{
|
|
18474
|
+
name: 'Tracehawk',
|
|
18475
|
+
url: 'https://pandaseascan.com',
|
|
18476
|
+
standard: 'none'
|
|
18477
|
+
}
|
|
18478
|
+
]
|
|
18479
|
+
},
|
|
18425
18480
|
{
|
|
18426
18481
|
name: 'Rise of the Warbots Testnet',
|
|
18427
18482
|
chain: 'nmactest',
|
|
@@ -20651,7 +20706,8 @@ const chainArray = [
|
|
|
20651
20706
|
chain: 'JOCT',
|
|
20652
20707
|
rpc: [
|
|
20653
20708
|
'https://rpc-1.testnet.japanopenchain.org:8545',
|
|
20654
|
-
'https://rpc-2.testnet.japanopenchain.org:8545'
|
|
20709
|
+
'https://rpc-2.testnet.japanopenchain.org:8545',
|
|
20710
|
+
'https://rpc-3.testnet.japanopenchain.org'
|
|
20655
20711
|
],
|
|
20656
20712
|
faucets: [],
|
|
20657
20713
|
nativeCurrency: {
|
|
@@ -21425,6 +21481,24 @@ const chainArray = [
|
|
|
21425
21481
|
],
|
|
21426
21482
|
parent: { chain: 'eip155-1', type: 'L2' }
|
|
21427
21483
|
},
|
|
21484
|
+
{
|
|
21485
|
+
name: 'Fuse Testnet',
|
|
21486
|
+
chain: 'Fuse',
|
|
21487
|
+
rpc: [ 'https://rpc.flash.fuse.io' ],
|
|
21488
|
+
faucets: [ 'https://faucet.flash.fuse.io' ],
|
|
21489
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
21490
|
+
infoURL: '',
|
|
21491
|
+
shortName: 'fuseZK',
|
|
21492
|
+
chainId: 12001,
|
|
21493
|
+
networkId: 12001,
|
|
21494
|
+
explorers: [
|
|
21495
|
+
{
|
|
21496
|
+
name: 'Blockscout',
|
|
21497
|
+
url: 'https://explorer.flash.fuse.io',
|
|
21498
|
+
standard: 'none'
|
|
21499
|
+
}
|
|
21500
|
+
]
|
|
21501
|
+
},
|
|
21428
21502
|
{
|
|
21429
21503
|
name: 'SatoshiChain Mainnet',
|
|
21430
21504
|
chain: 'SATS',
|
|
@@ -25265,6 +25339,26 @@ const chainArray = [
|
|
|
25265
25339
|
],
|
|
25266
25340
|
status: 'active'
|
|
25267
25341
|
},
|
|
25342
|
+
{
|
|
25343
|
+
name: 'ReDeFi Layer 1',
|
|
25344
|
+
chain: 'ReDeFi',
|
|
25345
|
+
icon: 'redefi',
|
|
25346
|
+
rpc: [ 'https://layer1.redefi.world' ],
|
|
25347
|
+
faucets: [],
|
|
25348
|
+
nativeCurrency: { name: 'BAX', symbol: 'BAX', decimals: 18 },
|
|
25349
|
+
infoURL: 'https://redefi.world',
|
|
25350
|
+
shortName: 'bax',
|
|
25351
|
+
chainId: 47803,
|
|
25352
|
+
networkId: 47803,
|
|
25353
|
+
slip44: 47803,
|
|
25354
|
+
explorers: [
|
|
25355
|
+
{
|
|
25356
|
+
name: 'ReDeFi Scan',
|
|
25357
|
+
url: 'https://scanlayer1.redefi.world',
|
|
25358
|
+
standard: 'EIP3091'
|
|
25359
|
+
}
|
|
25360
|
+
]
|
|
25361
|
+
},
|
|
25268
25362
|
{
|
|
25269
25363
|
name: 'REI Network',
|
|
25270
25364
|
chain: 'REI',
|
|
@@ -25685,24 +25779,6 @@ const chainArray = [
|
|
|
25685
25779
|
}
|
|
25686
25780
|
]
|
|
25687
25781
|
},
|
|
25688
|
-
{
|
|
25689
|
-
name: 'Photon Testnet',
|
|
25690
|
-
chain: 'Photon',
|
|
25691
|
-
rpc: [ 'https://rpc-test.photonchain.io' ],
|
|
25692
|
-
faucets: [ 'https://photonchain.io/airdrop' ],
|
|
25693
|
-
nativeCurrency: { name: 'Photon', symbol: 'PTON', decimals: 18 },
|
|
25694
|
-
infoURL: 'https://photonchain.io',
|
|
25695
|
-
shortName: 'pton',
|
|
25696
|
-
chainId: 54555,
|
|
25697
|
-
networkId: 54555,
|
|
25698
|
-
explorers: [
|
|
25699
|
-
{
|
|
25700
|
-
name: 'photon_testnet_explorer',
|
|
25701
|
-
url: 'https://testnet.photonchain.io',
|
|
25702
|
-
standard: 'none'
|
|
25703
|
-
}
|
|
25704
|
-
]
|
|
25705
|
-
},
|
|
25706
25782
|
{
|
|
25707
25783
|
name: 'Titan',
|
|
25708
25784
|
chain: 'ETH',
|
|
@@ -25724,6 +25800,24 @@ const chainArray = [
|
|
|
25724
25800
|
}
|
|
25725
25801
|
]
|
|
25726
25802
|
},
|
|
25803
|
+
{
|
|
25804
|
+
name: 'Photon Aurora Testnet',
|
|
25805
|
+
chain: 'Photon',
|
|
25806
|
+
rpc: [ 'https://rpc-test2.photonchain.io' ],
|
|
25807
|
+
faucets: [ 'https://photonchain.io/testnet2' ],
|
|
25808
|
+
nativeCurrency: { name: 'Photon', symbol: 'PTON', decimals: 18 },
|
|
25809
|
+
infoURL: 'https://photonchain.io',
|
|
25810
|
+
shortName: 'pton',
|
|
25811
|
+
chainId: 55551,
|
|
25812
|
+
networkId: 55551,
|
|
25813
|
+
explorers: [
|
|
25814
|
+
{
|
|
25815
|
+
name: 'photon_testnet2_explorer',
|
|
25816
|
+
url: 'https://testnet2.photonchain.io',
|
|
25817
|
+
standard: 'none'
|
|
25818
|
+
}
|
|
25819
|
+
]
|
|
25820
|
+
},
|
|
25727
25821
|
{
|
|
25728
25822
|
name: 'REI Chain Mainnet',
|
|
25729
25823
|
chain: 'REI',
|
|
@@ -26522,6 +26616,28 @@ const chainArray = [
|
|
|
26522
26616
|
}
|
|
26523
26617
|
]
|
|
26524
26618
|
},
|
|
26619
|
+
{
|
|
26620
|
+
name: 'CratD2C Testnet',
|
|
26621
|
+
chain: 'CRATD2C',
|
|
26622
|
+
rpc: [
|
|
26623
|
+
'https://cratd2c-testnet-node1.cratd2csmartchain.io/',
|
|
26624
|
+
'https://cratd2c-testnet-node2.cratd2csmartchain.io/'
|
|
26625
|
+
],
|
|
26626
|
+
faucets: [],
|
|
26627
|
+
nativeCurrency: { name: 'CRATD2C', symbol: 'CRAT', decimals: 18 },
|
|
26628
|
+
infoURL: 'https://cratd2csmartchain.io',
|
|
26629
|
+
shortName: 'cratd2c-testnet',
|
|
26630
|
+
chainId: 65349,
|
|
26631
|
+
networkId: 65349,
|
|
26632
|
+
explorers: [
|
|
26633
|
+
{
|
|
26634
|
+
name: 'Blockscout',
|
|
26635
|
+
url: 'https://explorer-testnet.cratd2csmartchain.io',
|
|
26636
|
+
icon: 'blockscout',
|
|
26637
|
+
standard: 'EIP3091'
|
|
26638
|
+
}
|
|
26639
|
+
]
|
|
26640
|
+
},
|
|
26525
26641
|
{
|
|
26526
26642
|
name: 'Vecno Mainnet',
|
|
26527
26643
|
chain: 'VE',
|
|
@@ -29971,6 +30087,27 @@ const chainArray = [
|
|
|
29971
30087
|
}
|
|
29972
30088
|
]
|
|
29973
30089
|
},
|
|
30090
|
+
{
|
|
30091
|
+
name: 'Abyss Protocol',
|
|
30092
|
+
chain: 'Abyss Protocol Testnet',
|
|
30093
|
+
rpc: [ 'https://testnet.rpc.abyssprotocol.ai/' ],
|
|
30094
|
+
faucets: [ 'https://faucet.abyssprotocol.ai/' ],
|
|
30095
|
+
nativeCurrency: { name: 'AbyssETH', symbol: 'aETH', decimals: 18 },
|
|
30096
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
30097
|
+
infoURL: 'https://abyssprotocol.ai/',
|
|
30098
|
+
shortName: 'abyss',
|
|
30099
|
+
chainId: 229772,
|
|
30100
|
+
networkId: 229772,
|
|
30101
|
+
icon: 'abyss',
|
|
30102
|
+
explorers: [
|
|
30103
|
+
{
|
|
30104
|
+
name: 'blockscout',
|
|
30105
|
+
url: 'https://testnet.abyssprotocol.ai',
|
|
30106
|
+
icon: 'blockscout',
|
|
30107
|
+
standard: 'EIP3091'
|
|
30108
|
+
}
|
|
30109
|
+
]
|
|
30110
|
+
},
|
|
29974
30111
|
{
|
|
29975
30112
|
name: 'HashKey Chain Testnet(discard)',
|
|
29976
30113
|
chain: 'HashKey',
|
|
@@ -31697,6 +31834,24 @@ const chainArray = [
|
|
|
31697
31834
|
}
|
|
31698
31835
|
]
|
|
31699
31836
|
},
|
|
31837
|
+
{
|
|
31838
|
+
name: 'Ternoa Testnet',
|
|
31839
|
+
chain: 'Ternoa',
|
|
31840
|
+
rpc: [ 'https://rpc.zkevm.ternoa.network' ],
|
|
31841
|
+
faucets: [ 'https://faucet.zkevm.ternoa.network' ],
|
|
31842
|
+
nativeCurrency: { name: 'Capsule Coin', symbol: 'CAPS', decimals: 18 },
|
|
31843
|
+
infoURL: '',
|
|
31844
|
+
shortName: 'ternoa',
|
|
31845
|
+
chainId: 752024,
|
|
31846
|
+
networkId: 7502024,
|
|
31847
|
+
explorers: [
|
|
31848
|
+
{
|
|
31849
|
+
name: 'Tracehawk',
|
|
31850
|
+
url: 'https://explorer.zkevm.ternoa.network',
|
|
31851
|
+
standard: 'none'
|
|
31852
|
+
}
|
|
31853
|
+
]
|
|
31854
|
+
},
|
|
31700
31855
|
{
|
|
31701
31856
|
name: 'Miexs Smartchain',
|
|
31702
31857
|
chain: 'MiexsSmartchain',
|