eth-chainlist 0.0.459 → 0.0.460
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +80 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.459 (2024-08-06)
|
4
12
|
|
5
13
|
|
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 },
|
@@ -18458,6 +18459,24 @@ const chainArray = [
|
|
18458
18459
|
}
|
18459
18460
|
]
|
18460
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
|
+
},
|
18461
18480
|
{
|
18462
18481
|
name: 'Rise of the Warbots Testnet',
|
18463
18482
|
chain: 'nmactest',
|
@@ -20687,7 +20706,8 @@ const chainArray = [
|
|
20687
20706
|
chain: 'JOCT',
|
20688
20707
|
rpc: [
|
20689
20708
|
'https://rpc-1.testnet.japanopenchain.org:8545',
|
20690
|
-
'https://rpc-2.testnet.japanopenchain.org:8545'
|
20709
|
+
'https://rpc-2.testnet.japanopenchain.org:8545',
|
20710
|
+
'https://rpc-3.testnet.japanopenchain.org'
|
20691
20711
|
],
|
20692
20712
|
faucets: [],
|
20693
20713
|
nativeCurrency: {
|
@@ -21461,6 +21481,24 @@ const chainArray = [
|
|
21461
21481
|
],
|
21462
21482
|
parent: { chain: 'eip155-1', type: 'L2' }
|
21463
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
|
+
},
|
21464
21502
|
{
|
21465
21503
|
name: 'SatoshiChain Mainnet',
|
21466
21504
|
chain: 'SATS',
|
@@ -26586,7 +26624,7 @@ const chainArray = [
|
|
26586
26624
|
'https://cratd2c-testnet-node2.cratd2csmartchain.io/'
|
26587
26625
|
],
|
26588
26626
|
faucets: [],
|
26589
|
-
nativeCurrency: { name: 'CRATD2C', symbol: '
|
26627
|
+
nativeCurrency: { name: 'CRATD2C', symbol: 'CRAT', decimals: 18 },
|
26590
26628
|
infoURL: 'https://cratd2csmartchain.io',
|
26591
26629
|
shortName: 'cratd2c-testnet',
|
26592
26630
|
chainId: 65349,
|
@@ -30049,6 +30087,27 @@ const chainArray = [
|
|
30049
30087
|
}
|
30050
30088
|
]
|
30051
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
|
+
},
|
30052
30111
|
{
|
30053
30112
|
name: 'HashKey Chain Testnet(discard)',
|
30054
30113
|
chain: 'HashKey',
|
@@ -31775,6 +31834,24 @@ const chainArray = [
|
|
31775
31834
|
}
|
31776
31835
|
]
|
31777
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
|
+
},
|
31778
31855
|
{
|
31779
31856
|
name: 'Miexs Smartchain',
|
31780
31857
|
chain: 'MiexsSmartchain',
|