eth-chainlist 0.0.149 → 0.0.151
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 +189 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.151 (2023-05-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.150 ([d717b6f](https://github.com/poowf/eth-chainlist/commit/d717b6fb060ffb7982ebd04da7da19d7e470c5df))
|
9
|
+
* update chain data ([14b38dd](https://github.com/poowf/eth-chainlist/commit/14b38dd8d4fbb5b7bd06b653b1e1c049de8587e4))
|
10
|
+
|
11
|
+
### 0.0.150 (2023-05-17)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.149 ([de1ebf9](https://github.com/poowf/eth-chainlist/commit/de1ebf9147a494708076ffa6b1a8098eaff9f535))
|
17
|
+
* update chain data ([baab9a2](https://github.com/poowf/eth-chainlist/commit/baab9a2c8a9ffefd71d33de8da088817494e5748))
|
18
|
+
|
3
19
|
### 0.0.149 (2023-05-13)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -98,7 +98,8 @@ const chainArray = [
|
|
98
98
|
rpc: [
|
99
99
|
'https://goerli.infura.io/v3/${INFURA_API_KEY}',
|
100
100
|
'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
|
101
|
-
'https://rpc.goerli.mudit.blog/'
|
101
|
+
'https://rpc.goerli.mudit.blog/',
|
102
|
+
'https://ethereum-goerli.publicnode.com'
|
102
103
|
],
|
103
104
|
faucets: [
|
104
105
|
'http://fauceth.komputing.org?chain=5&address=${ADDRESS}',
|
@@ -1741,7 +1742,8 @@ const chainArray = [
|
|
1741
1742
|
'https://data-seed-prebsc-1-s2.binance.org:8545',
|
1742
1743
|
'https://data-seed-prebsc-2-s2.binance.org:8545',
|
1743
1744
|
'https://data-seed-prebsc-1-s3.binance.org:8545',
|
1744
|
-
'https://data-seed-prebsc-2-s3.binance.org:8545'
|
1745
|
+
'https://data-seed-prebsc-2-s3.binance.org:8545',
|
1746
|
+
'https://bsc-testnet.publicnode.com'
|
1745
1747
|
],
|
1746
1748
|
faucets: [ 'https://testnet.binance.org/faucet-smart' ],
|
1747
1749
|
nativeCurrency: {
|
@@ -3189,6 +3191,7 @@ const chainArray = [
|
|
3189
3191
|
{
|
3190
3192
|
name: 'LaChain',
|
3191
3193
|
chain: 'LaChain',
|
3194
|
+
icon: 'LaChain',
|
3192
3195
|
rpc: [
|
3193
3196
|
'https://rpc1.mainnet.lachain.network',
|
3194
3197
|
'https://rpc2.mainnet.lachain.network'
|
@@ -3799,11 +3802,12 @@ const chainArray = [
|
|
3799
3802
|
]
|
3800
3803
|
},
|
3801
3804
|
{
|
3802
|
-
name: '
|
3803
|
-
chain: '
|
3805
|
+
name: 'LaTestnet',
|
3806
|
+
chain: 'LaTestnet',
|
3807
|
+
icon: 'LaChain',
|
3804
3808
|
rpc: [ 'https://rpc.testnet.lachain.network' ],
|
3805
3809
|
faucets: [ 'https://faucet.lachain.network' ],
|
3806
|
-
nativeCurrency: { name: 'Test
|
3810
|
+
nativeCurrency: { name: 'Test LaCoin', symbol: 'TLA', decimals: 18 },
|
3807
3811
|
features: [ { name: 'EIP155' } ],
|
3808
3812
|
infoURL: '',
|
3809
3813
|
shortName: 'latestnet',
|
@@ -3811,7 +3815,7 @@ const chainArray = [
|
|
3811
3815
|
networkId: 418,
|
3812
3816
|
explorers: [
|
3813
3817
|
{
|
3814
|
-
name: '
|
3818
|
+
name: 'LaTestnet Explorer',
|
3815
3819
|
url: 'https://testexplorer.lachain.network',
|
3816
3820
|
standard: 'EIP3091'
|
3817
3821
|
}
|
@@ -3866,6 +3870,25 @@ const chainArray = [
|
|
3866
3870
|
}
|
3867
3871
|
]
|
3868
3872
|
},
|
3873
|
+
{
|
3874
|
+
name: 'ARZIO Chain',
|
3875
|
+
chain: 'ARZIO',
|
3876
|
+
icon: 'arzio',
|
3877
|
+
rpc: [ 'https://chain-rpc.arzio.co' ],
|
3878
|
+
faucets: [],
|
3879
|
+
nativeCurrency: { name: 'ARZIO', symbol: 'AZO', decimals: 18 },
|
3880
|
+
infoURL: 'https://chain.arzio.co',
|
3881
|
+
shortName: 'arzio',
|
3882
|
+
chainId: 456,
|
3883
|
+
networkId: 456,
|
3884
|
+
explorers: [
|
3885
|
+
{
|
3886
|
+
name: 'ARZIO Scan',
|
3887
|
+
url: 'https://scan.arzio.co',
|
3888
|
+
standard: 'EIP3091'
|
3889
|
+
}
|
3890
|
+
]
|
3891
|
+
},
|
3869
3892
|
{
|
3870
3893
|
name: 'Rupaya',
|
3871
3894
|
chain: 'RUPX',
|
@@ -6274,6 +6297,25 @@ const chainArray = [
|
|
6274
6297
|
}
|
6275
6298
|
]
|
6276
6299
|
},
|
6300
|
+
{
|
6301
|
+
name: 'Joseon Mainnet',
|
6302
|
+
chain: 'Joseon',
|
6303
|
+
icon: 'joseon',
|
6304
|
+
rpc: [ 'https://rpc.modchain.net/blockchain.joseon.com/rpc' ],
|
6305
|
+
faucets: [],
|
6306
|
+
nativeCurrency: { name: 'Joseon Mun', symbol: 'JSM', decimals: 18 },
|
6307
|
+
infoURL: 'https://www.joseon.com/',
|
6308
|
+
shortName: 'mun',
|
6309
|
+
chainId: 1392,
|
6310
|
+
networkId: 1392,
|
6311
|
+
explorers: [
|
6312
|
+
{
|
6313
|
+
name: 'BlockExplorer',
|
6314
|
+
url: 'https://www.blockexplorer.com',
|
6315
|
+
standard: 'EIP3091'
|
6316
|
+
}
|
6317
|
+
]
|
6318
|
+
},
|
6277
6319
|
{
|
6278
6320
|
name: 'Polygon zkEVM Testnet old',
|
6279
6321
|
title: 'Polygon zkEVM Testnet',
|
@@ -7570,7 +7612,7 @@ const chainArray = [
|
|
7570
7612
|
]
|
7571
7613
|
},
|
7572
7614
|
{
|
7573
|
-
name: 'Metaplayerone
|
7615
|
+
name: 'Metaplayerone Dubai Testnet',
|
7574
7616
|
chain: 'MP1 Dubai-Testnet',
|
7575
7617
|
icon: 'meu',
|
7576
7618
|
rpc: [ 'https://rpc-dubai.mp1network.com/' ],
|
@@ -7823,6 +7865,26 @@ const chainArray = [
|
|
7823
7865
|
explorers: [],
|
7824
7866
|
status: 'incubating'
|
7825
7867
|
},
|
7868
|
+
{
|
7869
|
+
name: 'SOMA Network Testnet',
|
7870
|
+
chain: 'SOMA',
|
7871
|
+
rpc: [ 'https://data-testnet-v1.somanetwork.io/' ],
|
7872
|
+
faucets: [ 'https://faucet.somanetwork.io' ],
|
7873
|
+
nativeCurrency: { name: 'SMA', symbol: 'tSMA', decimals: 18 },
|
7874
|
+
infoURL: 'https://somanetwork.io',
|
7875
|
+
shortName: 'sma',
|
7876
|
+
chainId: 2323,
|
7877
|
+
networkId: 2323,
|
7878
|
+
icon: 'soma',
|
7879
|
+
explorers: [
|
7880
|
+
{
|
7881
|
+
name: 'SOMA Testnet Explorer',
|
7882
|
+
icon: 'soma',
|
7883
|
+
url: 'https://testnet.somascan.io',
|
7884
|
+
standard: 'none'
|
7885
|
+
}
|
7886
|
+
]
|
7887
|
+
},
|
7826
7888
|
{
|
7827
7889
|
name: 'Altcoinchain',
|
7828
7890
|
chain: 'mainnet',
|
@@ -8553,7 +8615,10 @@ const chainArray = [
|
|
8553
8615
|
{
|
8554
8616
|
name: 'Fantom Testnet',
|
8555
8617
|
chain: 'FTM',
|
8556
|
-
rpc: [
|
8618
|
+
rpc: [
|
8619
|
+
'https://rpc.testnet.fantom.network',
|
8620
|
+
'https://fantom-testnet.publicnode.com'
|
8621
|
+
],
|
8557
8622
|
faucets: [ 'https://faucet.fantom.network' ],
|
8558
8623
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
8559
8624
|
infoURL: 'https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet',
|
@@ -9887,6 +9952,18 @@ const chainArray = [
|
|
9887
9952
|
],
|
9888
9953
|
redFlags: [ 'reusedChainId' ]
|
9889
9954
|
},
|
9955
|
+
{
|
9956
|
+
name: 'BitEth',
|
9957
|
+
chain: 'BTE',
|
9958
|
+
rpc: [ 'https://rpc.biteth.org' ],
|
9959
|
+
faucets: [],
|
9960
|
+
nativeCurrency: { name: 'BitEth', symbol: 'BTE', decimals: 18 },
|
9961
|
+
infoURL: 'https://biteth.org',
|
9962
|
+
shortName: 'BitEth',
|
9963
|
+
chainId: 8086,
|
9964
|
+
networkId: 8086,
|
9965
|
+
explorers: []
|
9966
|
+
},
|
9890
9967
|
{
|
9891
9968
|
name: 'StreamuX Blockchain',
|
9892
9969
|
chain: 'StreamuX',
|
@@ -11126,8 +11203,23 @@ const chainArray = [
|
|
11126
11203
|
name: 'Fibonacci Mainnet',
|
11127
11204
|
chain: 'FIBO',
|
11128
11205
|
icon: 'fibonacci',
|
11129
|
-
rpc: [
|
11130
|
-
|
11206
|
+
rpc: [
|
11207
|
+
'https://node1.fibo-api.asia',
|
11208
|
+
'https://node2.fibo-api.asia',
|
11209
|
+
'https://node3.fibo-api.asia',
|
11210
|
+
'https://node4.fibo-api.asia',
|
11211
|
+
'https://node5.fibo-api.asia',
|
11212
|
+
'https://node6.fibo-api.asia',
|
11213
|
+
'https://node7.fibo-api.asia',
|
11214
|
+
'https://node1.fibo-rpc.asia',
|
11215
|
+
'https://node2.fibo-rpc.asia',
|
11216
|
+
'https://node3.fibo-rpc.asia',
|
11217
|
+
'https://node4.fibo-rpc.asia',
|
11218
|
+
'https://node5.fibo-rpc.asia',
|
11219
|
+
'https://node6.fibo-rpc.asia',
|
11220
|
+
'https://node7.fibo-rpc.asia'
|
11221
|
+
],
|
11222
|
+
faucets: [ 'https://test.fibochain.org/faucets' ],
|
11131
11223
|
nativeCurrency: { name: 'FIBONACCI UTILITY TOKEN', symbol: 'FIBO', decimals: 18 },
|
11132
11224
|
infoURL: 'https://fibochain.org',
|
11133
11225
|
shortName: 'fibo',
|
@@ -11373,6 +11465,25 @@ const chainArray = [
|
|
11373
11465
|
chainId: 16001,
|
11374
11466
|
networkId: 16001
|
11375
11467
|
},
|
11468
|
+
{
|
11469
|
+
name: 'Genesys Mainnet',
|
11470
|
+
chain: 'Genesys',
|
11471
|
+
icon: 'genesys',
|
11472
|
+
rpc: [ 'https://rpc.genesys.network' ],
|
11473
|
+
faucets: [],
|
11474
|
+
nativeCurrency: { name: 'Genesys', symbol: 'GSYS', decimals: 18 },
|
11475
|
+
infoURL: 'https://www.genesys.network/',
|
11476
|
+
shortName: 'Genesys',
|
11477
|
+
chainId: 16507,
|
11478
|
+
networkId: 16507,
|
11479
|
+
explorers: [
|
11480
|
+
{
|
11481
|
+
name: 'GchainExplorer',
|
11482
|
+
url: 'https://gchainexplorer.genesys.network',
|
11483
|
+
standard: 'EIP3091'
|
11484
|
+
}
|
11485
|
+
]
|
11486
|
+
},
|
11376
11487
|
{
|
11377
11488
|
name: 'IRIShub Testnet',
|
11378
11489
|
chain: 'IRIShub',
|
@@ -12389,7 +12500,10 @@ const chainArray = [
|
|
12389
12500
|
name: 'Avalanche Fuji Testnet',
|
12390
12501
|
chain: 'AVAX',
|
12391
12502
|
icon: 'avax',
|
12392
|
-
rpc: [
|
12503
|
+
rpc: [
|
12504
|
+
'https://api.avax-test.network/ext/bc/C/rpc',
|
12505
|
+
'https://avalanche-fuji-c-chain.publicnode.com'
|
12506
|
+
],
|
12393
12507
|
faucets: [ 'https://faucet.avax-test.network/' ],
|
12394
12508
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
12395
12509
|
infoURL: 'https://cchain.explorer.avax-test.network',
|
@@ -12643,6 +12757,30 @@ const chainArray = [
|
|
12643
12757
|
],
|
12644
12758
|
parent: { type: 'L2', chain: 'eip155-3' }
|
12645
12759
|
},
|
12760
|
+
{
|
12761
|
+
name: 'Opside Testnet Pre-Alpha',
|
12762
|
+
chain: 'ETH',
|
12763
|
+
rpc: [
|
12764
|
+
'https://pre-alpha-us-http-geth.opside.network',
|
12765
|
+
'https://pre-alpha-hk-http-geth.opside.network'
|
12766
|
+
],
|
12767
|
+
faucets: [],
|
12768
|
+
nativeCurrency: { name: 'IDE Test Token', symbol: 'IDE', decimals: 18 },
|
12769
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
12770
|
+
infoURL: 'https://opsi.de/',
|
12771
|
+
shortName: 'Opside-Testnet',
|
12772
|
+
chainId: 51178,
|
12773
|
+
networkId: 51178,
|
12774
|
+
icon: 'opside-new',
|
12775
|
+
explorers: [
|
12776
|
+
{
|
12777
|
+
name: 'OpsideTestnetInfo',
|
12778
|
+
url: 'https://pre-alpha.opside.info',
|
12779
|
+
icon: 'opside-new',
|
12780
|
+
standard: 'EIP3091'
|
12781
|
+
}
|
12782
|
+
]
|
12783
|
+
},
|
12646
12784
|
{
|
12647
12785
|
name: 'Sardis Mainnet',
|
12648
12786
|
chain: 'SRDX',
|
@@ -13344,7 +13482,8 @@ const chainArray = [
|
|
13344
13482
|
rpc: [
|
13345
13483
|
'https://matic-mumbai.chainstacklabs.com',
|
13346
13484
|
'https://rpc-mumbai.maticvigil.com',
|
13347
|
-
'https://matic-testnet-archive-rpc.bwarelabs.com'
|
13485
|
+
'https://matic-testnet-archive-rpc.bwarelabs.com',
|
13486
|
+
'https://polygon-mumbai-bor.publicnode.com'
|
13348
13487
|
],
|
13349
13488
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
13350
13489
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
@@ -15048,6 +15187,11 @@ const chainArray = [
|
|
15048
15187
|
name: 'Scroll Alpha Testnet Block Explorer',
|
15049
15188
|
url: 'https://blockscout.scroll.io',
|
15050
15189
|
standard: 'EIP3091'
|
15190
|
+
},
|
15191
|
+
{
|
15192
|
+
name: 'Scroll Alpha Testnet Block Explorer',
|
15193
|
+
url: 'https://scrollexplorer.unifra.io',
|
15194
|
+
standard: 'EIP3091'
|
15051
15195
|
}
|
15052
15196
|
],
|
15053
15197
|
parent: { type: 'L2', chain: 'eip155-5', bridges: [] }
|
@@ -15170,6 +15314,25 @@ const chainArray = [
|
|
15170
15314
|
}
|
15171
15315
|
]
|
15172
15316
|
},
|
15317
|
+
{
|
15318
|
+
name: 'CURVE Mainnet',
|
15319
|
+
chain: 'CURVE',
|
15320
|
+
icon: 'curveIcon',
|
15321
|
+
rpc: [ 'https://mainnet-rpc.curvescan.io' ],
|
15322
|
+
faucets: [],
|
15323
|
+
nativeCurrency: { name: 'Curve', symbol: 'CURVE', decimals: 18 },
|
15324
|
+
infoURL: 'https://curvescan.io',
|
15325
|
+
shortName: 'CURVEm',
|
15326
|
+
chainId: 827431,
|
15327
|
+
networkId: 827431,
|
15328
|
+
explorers: [
|
15329
|
+
{
|
15330
|
+
name: 'CURVE Mainnet',
|
15331
|
+
url: 'https://curvescan.io',
|
15332
|
+
standard: 'EIP3091'
|
15333
|
+
}
|
15334
|
+
]
|
15335
|
+
},
|
15173
15336
|
{
|
15174
15337
|
name: '4GoodNetwork',
|
15175
15338
|
chain: '4GN',
|
@@ -15499,6 +15662,20 @@ const chainArray = [
|
|
15499
15662
|
slip44: 1,
|
15500
15663
|
explorers: []
|
15501
15664
|
},
|
15665
|
+
{
|
15666
|
+
name: 'Worlds Caldera',
|
15667
|
+
chain: 'WCal',
|
15668
|
+
rpc: [ 'https://worlds-test.calderachain.xyz/http' ],
|
15669
|
+
faucets: [],
|
15670
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15671
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
15672
|
+
infoURL: 'https://caldera.xyz/',
|
15673
|
+
shortName: 'worldscal',
|
15674
|
+
chainId: 4281033,
|
15675
|
+
networkId: 4281033,
|
15676
|
+
icon: 'ethereum',
|
15677
|
+
explorers: []
|
15678
|
+
},
|
15502
15679
|
{
|
15503
15680
|
name: 'MXC Wannsee zkEVM Testnet',
|
15504
15681
|
chain: 'MXC zkEVM',
|