eth-chainlist 0.0.218 → 0.0.219
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 +8 -0
- package/data/chain.js +126 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.219 (2023-08-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.218 ([32d4875](https://github.com/poowf/eth-chainlist/commit/32d487565fadd4e580790d1bcefcb45d73736b77))
|
9
|
+
* update chain data ([44b0194](https://github.com/poowf/eth-chainlist/commit/44b0194cb7302f99d6f54753217071e94db3eca6))
|
10
|
+
|
3
11
|
### 0.0.218 (2023-08-25)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -8,7 +8,9 @@ const chainArray = [
|
|
8
8
|
'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}',
|
9
9
|
'https://api.mycryptoapi.com/eth',
|
10
10
|
'https://cloudflare-eth.com',
|
11
|
-
'https://ethereum.publicnode.com'
|
11
|
+
'https://ethereum.publicnode.com',
|
12
|
+
'https://mainnet.gateway.tenderly.co',
|
13
|
+
'wss://mainnet.gateway.tenderly.co'
|
12
14
|
],
|
13
15
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
14
16
|
faucets: [],
|
@@ -105,7 +107,9 @@ const chainArray = [
|
|
105
107
|
'https://goerli.infura.io/v3/${INFURA_API_KEY}',
|
106
108
|
'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
|
107
109
|
'https://rpc.goerli.mudit.blog/',
|
108
|
-
'https://ethereum-goerli.publicnode.com'
|
110
|
+
'https://ethereum-goerli.publicnode.com',
|
111
|
+
'https://goerli.gateway.tenderly.co',
|
112
|
+
'wss://goerli.gateway.tenderly.co'
|
109
113
|
],
|
110
114
|
faucets: [
|
111
115
|
'http://fauceth.komputing.org?chain=5&address=${ADDRESS}',
|
@@ -197,7 +201,9 @@ const chainArray = [
|
|
197
201
|
chain: 'ETH',
|
198
202
|
rpc: [
|
199
203
|
'https://mainnet.optimism.io',
|
200
|
-
'https://optimism.publicnode.com'
|
204
|
+
'https://optimism.publicnode.com',
|
205
|
+
'https://optimism.gateway.tenderly.co',
|
206
|
+
'wss://optimism.gateway.tenderly.co'
|
201
207
|
],
|
202
208
|
faucets: [],
|
203
209
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -2130,12 +2136,13 @@ const chainArray = [
|
|
2130
2136
|
]
|
2131
2137
|
},
|
2132
2138
|
{
|
2133
|
-
name: 'DeBank Testnet',
|
2139
|
+
name: 'DeBank Testnet(Deprecated)',
|
2134
2140
|
chain: 'DeBank',
|
2135
2141
|
rpc: [],
|
2136
2142
|
faucets: [],
|
2137
2143
|
icon: 'debank',
|
2138
2144
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2145
|
+
status: 'deprecated',
|
2139
2146
|
infoURL: 'https://debank.com',
|
2140
2147
|
shortName: 'debank-testnet',
|
2141
2148
|
chainId: 115,
|
@@ -2149,6 +2156,7 @@ const chainArray = [
|
|
2149
2156
|
faucets: [],
|
2150
2157
|
icon: 'debank',
|
2151
2158
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2159
|
+
status: 'deprecated',
|
2152
2160
|
infoURL: 'https://debank.com',
|
2153
2161
|
shortName: 'debank-mainnet',
|
2154
2162
|
chainId: 116,
|
@@ -2442,7 +2450,9 @@ const chainArray = [
|
|
2442
2450
|
'https://rpc-mainnet.maticvigil.com',
|
2443
2451
|
'https://rpc-mainnet.matic.quiknode.pro',
|
2444
2452
|
'https://matic-mainnet-full-rpc.bwarelabs.com',
|
2445
|
-
'https://polygon-bor.publicnode.com'
|
2453
|
+
'https://polygon-bor.publicnode.com',
|
2454
|
+
'https://polygon.gateway.tenderly.co',
|
2455
|
+
'wss://polygon.gateway.tenderly.co'
|
2446
2456
|
],
|
2447
2457
|
faucets: [],
|
2448
2458
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
@@ -2912,6 +2922,24 @@ const chainArray = [
|
|
2912
2922
|
}
|
2913
2923
|
]
|
2914
2924
|
},
|
2925
|
+
{
|
2926
|
+
name: 'Bitchain Mainnet',
|
2927
|
+
chain: 'Bit',
|
2928
|
+
rpc: [ 'https://rpc.bitchain.biz/' ],
|
2929
|
+
faucets: [],
|
2930
|
+
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
2931
|
+
infoURL: 'https://www.bitchain.biz/',
|
2932
|
+
shortName: 'bit',
|
2933
|
+
chainId: 198,
|
2934
|
+
networkId: 198,
|
2935
|
+
explorers: [
|
2936
|
+
{
|
2937
|
+
name: 'Bitchain Scan',
|
2938
|
+
url: 'https://explorer.bitchain.biz',
|
2939
|
+
standard: 'EIP3091'
|
2940
|
+
}
|
2941
|
+
]
|
2942
|
+
},
|
2915
2943
|
{
|
2916
2944
|
name: 'BitTorrent Chain Mainnet',
|
2917
2945
|
chain: 'BTTC',
|
@@ -2967,6 +2995,25 @@ const chainArray = [
|
|
2967
2995
|
}
|
2968
2996
|
]
|
2969
2997
|
},
|
2998
|
+
{
|
2999
|
+
name: 'opBNB Mainnet',
|
3000
|
+
chain: 'opBNB',
|
3001
|
+
rpc: [ 'https://opbnb-mainnet-rpc.bnbchain.org' ],
|
3002
|
+
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains' ],
|
3003
|
+
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
3004
|
+
infoURL: 'https://opbnb.bnbchain.org/en',
|
3005
|
+
shortName: 'obnb',
|
3006
|
+
chainId: 204,
|
3007
|
+
networkId: 204,
|
3008
|
+
slip44: 714,
|
3009
|
+
explorers: [
|
3010
|
+
{
|
3011
|
+
name: 'opbnbscan',
|
3012
|
+
url: 'http://mainnet.opbnbscan.com',
|
3013
|
+
standard: 'EIP3091'
|
3014
|
+
}
|
3015
|
+
]
|
3016
|
+
},
|
2970
3017
|
{
|
2971
3018
|
name: 'Structx Mainnet',
|
2972
3019
|
chain: 'utx',
|
@@ -3396,8 +3443,8 @@ const chainArray = [
|
|
3396
3443
|
rpc: [
|
3397
3444
|
'https://mainnet.boba.network',
|
3398
3445
|
'https://replica.boba.network',
|
3399
|
-
'
|
3400
|
-
'
|
3446
|
+
'https://boba-ethereum.gateway.tenderly.co',
|
3447
|
+
'https://gateway.tenderly.co/public/boba-ethereum',
|
3401
3448
|
'wss://boba-ethereum.gateway.tenderly.co/',
|
3402
3449
|
'wss://gateway.tenderly.co/public/boba-ethereum'
|
3403
3450
|
],
|
@@ -4091,7 +4138,9 @@ const chainArray = [
|
|
4091
4138
|
chain: 'ETH',
|
4092
4139
|
rpc: [
|
4093
4140
|
'https://goerli.optimism.io',
|
4094
|
-
'https://optimism-goerli.publicnode.com'
|
4141
|
+
'https://optimism-goerli.publicnode.com',
|
4142
|
+
'https://optimism-goerli.gateway.tenderly.co',
|
4143
|
+
'wss://optimism-goerli.gateway.tenderly.co'
|
4095
4144
|
],
|
4096
4145
|
faucets: [],
|
4097
4146
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
@@ -10141,19 +10190,20 @@ const chainArray = [
|
|
10141
10190
|
}
|
10142
10191
|
},
|
10143
10192
|
{
|
10144
|
-
name: 'Beam
|
10193
|
+
name: 'Beam',
|
10145
10194
|
chain: 'BEAM',
|
10146
10195
|
rpc: [ 'https://subnets.avax.network/beam/mainnet/rpc' ],
|
10147
10196
|
features: [ { name: 'EIP1559' } ],
|
10148
10197
|
faucets: [],
|
10149
10198
|
nativeCurrency: { name: 'Merit Circle', symbol: 'MC', decimals: 18 },
|
10150
|
-
infoURL: 'https://www.onbeam.com
|
10151
|
-
shortName: '
|
10199
|
+
infoURL: 'https://www.onbeam.com',
|
10200
|
+
shortName: 'beam',
|
10201
|
+
icon: 'beam',
|
10152
10202
|
chainId: 4337,
|
10153
10203
|
networkId: 4337,
|
10154
10204
|
explorers: [
|
10155
10205
|
{
|
10156
|
-
name: '
|
10206
|
+
name: 'Beam Explorer',
|
10157
10207
|
url: 'https://subnets.avax.network/beam',
|
10158
10208
|
standard: 'EIP3091'
|
10159
10209
|
}
|
@@ -10598,6 +10648,29 @@ const chainArray = [
|
|
10598
10648
|
}
|
10599
10649
|
]
|
10600
10650
|
},
|
10651
|
+
{
|
10652
|
+
name: 'opBNB Testnet',
|
10653
|
+
chain: 'opBNB',
|
10654
|
+
rpc: [ 'https://opbnb-testnet-rpc.bnbchain.org' ],
|
10655
|
+
faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
|
10656
|
+
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'tBNB', decimals: 18 },
|
10657
|
+
infoURL: 'https://opbnb.bnbchain.org/en',
|
10658
|
+
shortName: 'obnbt',
|
10659
|
+
chainId: 5611,
|
10660
|
+
networkId: 5611,
|
10661
|
+
explorers: [
|
10662
|
+
{
|
10663
|
+
name: 'bscscan-opbnb-testnet',
|
10664
|
+
url: 'https://opbnb-testnet.bscscan.com',
|
10665
|
+
standard: 'EIP3091'
|
10666
|
+
},
|
10667
|
+
{
|
10668
|
+
name: 'opbnbscan',
|
10669
|
+
url: 'http://opbnbscan.com',
|
10670
|
+
standard: 'EIP3091'
|
10671
|
+
}
|
10672
|
+
]
|
10673
|
+
},
|
10601
10674
|
{
|
10602
10675
|
name: 'Arcturus Chain Testnet',
|
10603
10676
|
chain: 'ARCTURUS',
|
@@ -11778,7 +11851,9 @@ const chainArray = [
|
|
11778
11851
|
chain: 'ETH',
|
11779
11852
|
rpc: [
|
11780
11853
|
'https://mainnet.base.org/',
|
11781
|
-
'https://developer-access-mainnet.base.org/'
|
11854
|
+
'https://developer-access-mainnet.base.org/',
|
11855
|
+
'https://base.gateway.tenderly.co',
|
11856
|
+
'wss://base.gateway.tenderly.co'
|
11782
11857
|
],
|
11783
11858
|
faucets: [],
|
11784
11859
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -12315,7 +12390,9 @@ const chainArray = [
|
|
12315
12390
|
'https://testnet.bnb.boba.network',
|
12316
12391
|
'wss://wss.testnet.bnb.boba.network',
|
12317
12392
|
'https://replica.testnet.bnb.boba.network',
|
12318
|
-
'wss://replica-wss.testnet.bnb.boba.network'
|
12393
|
+
'wss://replica-wss.testnet.bnb.boba.network',
|
12394
|
+
'https://boba-bnb-testnet.gateway.tenderly.co',
|
12395
|
+
'wss://boba-bnb-testnet.gateway.tenderly.co'
|
12319
12396
|
],
|
12320
12397
|
faucets: [],
|
12321
12398
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
@@ -13213,8 +13290,9 @@ const chainArray = [
|
|
13213
13290
|
features: [ { name: 'EIP1559' } ],
|
13214
13291
|
faucets: [],
|
13215
13292
|
nativeCurrency: { name: 'Merit Circle', symbol: 'MC', decimals: 18 },
|
13216
|
-
infoURL: 'https://
|
13217
|
-
shortName: '
|
13293
|
+
infoURL: 'https://www.onbeam.com',
|
13294
|
+
shortName: 'beam-testnet',
|
13295
|
+
icon: 'beam',
|
13218
13296
|
chainId: 13337,
|
13219
13297
|
networkId: 13337,
|
13220
13298
|
explorers: [
|
@@ -14944,8 +15022,8 @@ const chainArray = [
|
|
14944
15022
|
chain: 'Boba BNB Mainnet',
|
14945
15023
|
rpc: [
|
14946
15024
|
'https://bnb.boba.network',
|
14947
|
-
'
|
14948
|
-
'
|
15025
|
+
'https://boba-bnb.gateway.tenderly.co/',
|
15026
|
+
'https://gateway.tenderly.co/public/boba-bnb',
|
14949
15027
|
'https://replica.bnb.boba.network',
|
14950
15028
|
'wss://boba-bnb.gateway.tenderly.co/',
|
14951
15029
|
'wss://gateway.tenderly.co/public/boba-bnb'
|
@@ -15707,7 +15785,9 @@ const chainArray = [
|
|
15707
15785
|
'https://matic-mumbai.chainstacklabs.com',
|
15708
15786
|
'https://rpc-mumbai.maticvigil.com',
|
15709
15787
|
'https://matic-testnet-archive-rpc.bwarelabs.com',
|
15710
|
-
'https://polygon-mumbai-bor.publicnode.com'
|
15788
|
+
'https://polygon-mumbai-bor.publicnode.com',
|
15789
|
+
'https://polygon-mumbai.gateway.tenderly.co',
|
15790
|
+
'wss://polygon-mumbai.gateway.tenderly.co'
|
15711
15791
|
],
|
15712
15792
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
15713
15793
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
@@ -15843,7 +15923,11 @@ const chainArray = [
|
|
15843
15923
|
{
|
15844
15924
|
name: 'Base Goerli Testnet',
|
15845
15925
|
chain: 'ETH',
|
15846
|
-
rpc: [
|
15926
|
+
rpc: [
|
15927
|
+
'https://goerli.base.org',
|
15928
|
+
'https://base-goerli.gateway.tenderly.co',
|
15929
|
+
'wss://base-goerli.gateway.tenderly.co'
|
15930
|
+
],
|
15847
15931
|
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
15848
15932
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
15849
15933
|
infoURL: 'https://base.org',
|
@@ -18212,6 +18296,25 @@ const chainArray = [
|
|
18212
18296
|
}
|
18213
18297
|
]
|
18214
18298
|
},
|
18299
|
+
{
|
18300
|
+
name: 'DeBank Testnet',
|
18301
|
+
chain: 'DeBank',
|
18302
|
+
rpc: [ 'http://rpc.testnet.debank.com' ],
|
18303
|
+
faucets: [],
|
18304
|
+
icon: 'debank',
|
18305
|
+
nativeCurrency: { name: 'DeBank USD', symbol: 'USD', decimals: 18 },
|
18306
|
+
infoURL: 'https://debank.com',
|
18307
|
+
shortName: 'dbk',
|
18308
|
+
chainId: 2021398,
|
18309
|
+
networkId: 2021398,
|
18310
|
+
explorers: [
|
18311
|
+
{
|
18312
|
+
name: 'DeBank Chain Explorer',
|
18313
|
+
url: 'https://explorer.testnet.debank.com',
|
18314
|
+
standard: 'EIP3091'
|
18315
|
+
}
|
18316
|
+
]
|
18317
|
+
},
|
18215
18318
|
{
|
18216
18319
|
name: 'Plian Mainnet Main',
|
18217
18320
|
chain: 'Plian',
|
@@ -18627,7 +18730,9 @@ const chainArray = [
|
|
18627
18730
|
'https://rpc-sepolia.rockx.com',
|
18628
18731
|
'https://rpc.sepolia.ethpandaops.io',
|
18629
18732
|
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
18630
|
-
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}'
|
18733
|
+
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
18734
|
+
'https://sepolia.gateway.tenderly.co',
|
18735
|
+
'wss://sepolia.gateway.tenderly.co'
|
18631
18736
|
],
|
18632
18737
|
faucets: [
|
18633
18738
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|