eth-chainlist 0.0.409 → 0.0.411
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 +225 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.411 (2024-05-24)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.410 ([b597887](https://github.com/poowf/eth-chainlist/commit/b597887c5bcfac23ee5c6eee3300e906681e0c3a))
|
9
|
+
* update chain data ([3caf731](https://github.com/poowf/eth-chainlist/commit/3caf731bb73bed1df75d9c08ddc2ffd4c578d250))
|
10
|
+
|
11
|
+
### 0.0.410 (2024-05-22)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.409 ([b5cd51d](https://github.com/poowf/eth-chainlist/commit/b5cd51d8a2440ef3aebf024408c80083d4430738))
|
17
|
+
* update chain data ([7fccda9](https://github.com/poowf/eth-chainlist/commit/7fccda96132b05fb12766c53adb84c016ac86123))
|
18
|
+
|
3
19
|
### 0.0.409 (2024-05-21)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1292,11 +1292,8 @@ const chainArray = [
|
|
1292
1292
|
rpc: [
|
1293
1293
|
'https://etc.rivet.link',
|
1294
1294
|
'https://besu-at.etc-network.info',
|
1295
|
-
'https://besu-de.etc-network.info',
|
1296
1295
|
'https://geth-at.etc-network.info',
|
1297
|
-
'https://geth-de.etc-network.info',
|
1298
1296
|
'https://etc.etcdesktop.com',
|
1299
|
-
'https://rpc.etcinscribe.com',
|
1300
1297
|
'https://etc.mytokenpocket.vip'
|
1301
1298
|
],
|
1302
1299
|
features: [ { name: 'EIP155' } ],
|
@@ -2893,6 +2890,21 @@ const chainArray = [
|
|
2893
2890
|
}
|
2894
2891
|
]
|
2895
2892
|
},
|
2893
|
+
{
|
2894
|
+
name: 'EternalCoin Mainnet',
|
2895
|
+
chain: 'Eter',
|
2896
|
+
icon: 'eternal',
|
2897
|
+
rpc: [
|
2898
|
+
'https://mainnet.eternalcoin.io/v1',
|
2899
|
+
'ws://mainnet.eternalcoin.io/v1/ws'
|
2900
|
+
],
|
2901
|
+
faucets: [],
|
2902
|
+
nativeCurrency: { name: 'Eternal', symbol: 'Eter', decimals: 18 },
|
2903
|
+
infoURL: 'https://eternalcoin.io',
|
2904
|
+
shortName: 'Eter',
|
2905
|
+
chainId: 140,
|
2906
|
+
networkId: 140
|
2907
|
+
},
|
2896
2908
|
{
|
2897
2909
|
name: 'Openpiece Testnet',
|
2898
2910
|
chain: 'OPENPIECE',
|
@@ -3419,7 +3431,11 @@ const chainArray = [
|
|
3419
3431
|
{
|
3420
3432
|
name: 'Mint Mainnet',
|
3421
3433
|
chain: 'ETH',
|
3422
|
-
rpc: [
|
3434
|
+
rpc: [
|
3435
|
+
'https://rpc.mintchain.io',
|
3436
|
+
'https://global.rpc.mintchain.io',
|
3437
|
+
'https://asia.rpc.minchain.io'
|
3438
|
+
],
|
3423
3439
|
faucets: [],
|
3424
3440
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3425
3441
|
infoURL: 'https://www.mintchain.io',
|
@@ -10165,6 +10181,31 @@ const chainArray = [
|
|
10165
10181
|
networkId: 11235813,
|
10166
10182
|
slip44: 1620
|
10167
10183
|
},
|
10184
|
+
{
|
10185
|
+
name: 'Gravity Alpha Mainnet',
|
10186
|
+
chain: 'Gravity',
|
10187
|
+
rpc: [ 'https://rpc.gravity.xyz' ],
|
10188
|
+
faucets: [],
|
10189
|
+
nativeCurrency: { name: 'Gravity', symbol: 'G.', decimals: 18 },
|
10190
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP1108' } ],
|
10191
|
+
infoURL: 'https://gravity.xyz',
|
10192
|
+
shortName: 'gravity',
|
10193
|
+
chainId: 1625,
|
10194
|
+
networkId: 1625,
|
10195
|
+
icon: 'gravity',
|
10196
|
+
explorers: [
|
10197
|
+
{
|
10198
|
+
name: 'Gravity Alpha Mainnet Explorer',
|
10199
|
+
url: 'https://explorer.gravity.xyz',
|
10200
|
+
standard: 'EIP3091'
|
10201
|
+
}
|
10202
|
+
],
|
10203
|
+
parent: {
|
10204
|
+
type: 'L2',
|
10205
|
+
chain: 'eip155-1',
|
10206
|
+
bridges: [ { url: 'https://bridge.gravity.xyz' } ]
|
10207
|
+
}
|
10208
|
+
},
|
10168
10209
|
{
|
10169
10210
|
name: 'Btachain',
|
10170
10211
|
chain: 'btachain',
|
@@ -14345,6 +14386,30 @@ const chainArray = [
|
|
14345
14386
|
}
|
14346
14387
|
]
|
14347
14388
|
},
|
14389
|
+
{
|
14390
|
+
name: 'Carbonium Testnet Network',
|
14391
|
+
chain: 'CBR',
|
14392
|
+
rpc: [
|
14393
|
+
'https://rpc-dev.carbonium.network/',
|
14394
|
+
'https://server-testnet.carbonium.network'
|
14395
|
+
],
|
14396
|
+
nativeCurrency: { name: 'Carbonium', symbol: 'tCBR', decimals: 18 },
|
14397
|
+
infoURL: 'https://carbonium.network',
|
14398
|
+
shortName: 'tcbr',
|
14399
|
+
chainId: 4040,
|
14400
|
+
networkId: 4040,
|
14401
|
+
slip44: 1,
|
14402
|
+
icon: 'cbr',
|
14403
|
+
faucets: [ 'https://getfaucet.carbonium.network' ],
|
14404
|
+
explorers: [
|
14405
|
+
{
|
14406
|
+
name: 'Carbonium Network tesnet Explorer',
|
14407
|
+
icon: 'cbr',
|
14408
|
+
url: 'https://testnet.carboniumscan.com',
|
14409
|
+
standard: 'none'
|
14410
|
+
}
|
14411
|
+
]
|
14412
|
+
},
|
14348
14413
|
{
|
14349
14414
|
name: 'GAN Testnet',
|
14350
14415
|
chain: 'GAN',
|
@@ -16344,6 +16409,27 @@ const chainArray = [
|
|
16344
16409
|
}
|
16345
16410
|
]
|
16346
16411
|
},
|
16412
|
+
{
|
16413
|
+
name: 'Pools Mainnet',
|
16414
|
+
chain: 'Pools',
|
16415
|
+
rpc: [ 'https://rpc.poolsmobility.com' ],
|
16416
|
+
faucets: [],
|
16417
|
+
nativeCurrency: { name: 'POOLS Native Token', symbol: 'POOLS', decimals: 18 },
|
16418
|
+
infoURL: 'https://www.poolschain.org',
|
16419
|
+
shortName: 'POOLS',
|
16420
|
+
icon: 'POOLS',
|
16421
|
+
chainId: 6868,
|
16422
|
+
networkId: 6868,
|
16423
|
+
slip44: 6868,
|
16424
|
+
explorers: [
|
16425
|
+
{
|
16426
|
+
name: 'poolsscan',
|
16427
|
+
url: 'https://scan.poolsmobility.com',
|
16428
|
+
icon: 'POOLS',
|
16429
|
+
standard: 'EIP3091'
|
16430
|
+
}
|
16431
|
+
]
|
16432
|
+
},
|
16347
16433
|
{
|
16348
16434
|
name: 'Tomb Chain Mainnet',
|
16349
16435
|
chain: 'Tomb Chain',
|
@@ -17927,6 +18013,88 @@ const chainArray = [
|
|
17927
18013
|
}
|
17928
18014
|
]
|
17929
18015
|
},
|
18016
|
+
{
|
18017
|
+
name: 'Algen',
|
18018
|
+
chain: 'ALG',
|
18019
|
+
rpc: [ 'https://rpc.algen.network' ],
|
18020
|
+
faucets: [],
|
18021
|
+
nativeCurrency: { name: 'ALG', symbol: 'ALG', decimals: 18 },
|
18022
|
+
infoURL: 'https://www.algen.network',
|
18023
|
+
shortName: 'alg',
|
18024
|
+
chainId: 8911,
|
18025
|
+
networkId: 8911,
|
18026
|
+
icon: 'alg',
|
18027
|
+
explorers: [
|
18028
|
+
{
|
18029
|
+
name: 'algscan',
|
18030
|
+
url: 'https://scan.algen.network',
|
18031
|
+
icon: 'alg',
|
18032
|
+
standard: 'EIP3091'
|
18033
|
+
}
|
18034
|
+
]
|
18035
|
+
},
|
18036
|
+
{
|
18037
|
+
name: 'Algen Testnet',
|
18038
|
+
chain: 'ALG',
|
18039
|
+
rpc: [ 'https://rpc.test.algen.network' ],
|
18040
|
+
faucets: [],
|
18041
|
+
nativeCurrency: { name: 'ALG', symbol: 'ALG', decimals: 18 },
|
18042
|
+
infoURL: 'https://www.algen.network',
|
18043
|
+
shortName: 'algTest',
|
18044
|
+
chainId: 8912,
|
18045
|
+
networkId: 8912,
|
18046
|
+
icon: 'alg',
|
18047
|
+
explorers: [
|
18048
|
+
{
|
18049
|
+
name: 'algscan',
|
18050
|
+
url: 'https://scan.test.algen.network',
|
18051
|
+
icon: 'alg',
|
18052
|
+
standard: 'EIP3091'
|
18053
|
+
}
|
18054
|
+
]
|
18055
|
+
},
|
18056
|
+
{
|
18057
|
+
name: 'Algen Layer2',
|
18058
|
+
chain: 'ALG L2',
|
18059
|
+
rpc: [ 'https://rpc.alg2.algen.network' ],
|
18060
|
+
faucets: [],
|
18061
|
+
nativeCurrency: { name: 'ALG', symbol: 'ALG', decimals: 18 },
|
18062
|
+
infoURL: 'https://www.algen.network',
|
18063
|
+
shortName: 'algl2',
|
18064
|
+
chainId: 8921,
|
18065
|
+
networkId: 8921,
|
18066
|
+
icon: 'algl2',
|
18067
|
+
explorers: [
|
18068
|
+
{
|
18069
|
+
name: 'algl2scan',
|
18070
|
+
url: 'https://scan.alg2.algen.network',
|
18071
|
+
icon: 'algl2',
|
18072
|
+
standard: 'EIP3091'
|
18073
|
+
}
|
18074
|
+
],
|
18075
|
+
parent: { chain: 'eip155-8911', type: 'shard' }
|
18076
|
+
},
|
18077
|
+
{
|
18078
|
+
name: 'Algen Layer2 Testnet',
|
18079
|
+
chain: 'ALG L2',
|
18080
|
+
rpc: [ 'https://rpc.alg2-test.algen.network' ],
|
18081
|
+
faucets: [],
|
18082
|
+
nativeCurrency: { name: 'ALG', symbol: 'ALG', decimals: 18 },
|
18083
|
+
infoURL: 'https://www.algen.network',
|
18084
|
+
shortName: 'algl2Test',
|
18085
|
+
chainId: 8922,
|
18086
|
+
networkId: 8922,
|
18087
|
+
icon: 'algl2',
|
18088
|
+
explorers: [
|
18089
|
+
{
|
18090
|
+
name: 'algl2scan',
|
18091
|
+
url: 'https://scan.alg2-test.algen.network',
|
18092
|
+
icon: 'algl2',
|
18093
|
+
standard: 'EIP3091'
|
18094
|
+
}
|
18095
|
+
],
|
18096
|
+
parent: { chain: 'eip155-8921', type: 'shard' }
|
18097
|
+
},
|
17930
18098
|
{
|
17931
18099
|
name: 'Giant Mammoth Mainnet',
|
17932
18100
|
title: 'Giant Mammoth Chain',
|
@@ -18895,6 +19063,25 @@ const chainArray = [
|
|
18895
19063
|
}
|
18896
19064
|
]
|
18897
19065
|
},
|
19066
|
+
{
|
19067
|
+
name: 'TAO EVM Mainnet',
|
19068
|
+
chain: 'TAO EVM',
|
19069
|
+
icon: 'taoevmIcon',
|
19070
|
+
rpc: [ 'https://rpc.taoevm.io' ],
|
19071
|
+
faucets: [],
|
19072
|
+
nativeCurrency: { name: 'TAO', symbol: 'TAO', decimals: 18 },
|
19073
|
+
infoURL: 'https://taoevm.io',
|
19074
|
+
shortName: 'TAOm',
|
19075
|
+
chainId: 10321,
|
19076
|
+
networkId: 10321,
|
19077
|
+
explorers: [
|
19078
|
+
{
|
19079
|
+
name: 'TAO Mainnet Explorer',
|
19080
|
+
url: 'https://taoscan.org',
|
19081
|
+
standard: 'EIP3091'
|
19082
|
+
}
|
19083
|
+
]
|
19084
|
+
},
|
18898
19085
|
{
|
18899
19086
|
name: 'TAO EVM Testnet',
|
18900
19087
|
chain: 'TAO EVM',
|
@@ -20751,6 +20938,25 @@ const chainArray = [
|
|
20751
20938
|
}
|
20752
20939
|
]
|
20753
20940
|
},
|
20941
|
+
{
|
20942
|
+
name: 'DCpay Testnet',
|
20943
|
+
chain: 'DCpay',
|
20944
|
+
icon: 'dcpayIcon',
|
20945
|
+
rpc: [ 'https://testnet-rpc.dcpay.io' ],
|
20946
|
+
faucets: [ 'https://faucet.dcpay.io' ],
|
20947
|
+
nativeCurrency: { name: 'DCP', symbol: 'DCP', decimals: 18 },
|
20948
|
+
infoURL: 'https://dcpay.io',
|
20949
|
+
shortName: 'DCPt',
|
20950
|
+
chainId: 21224,
|
20951
|
+
networkId: 21224,
|
20952
|
+
explorers: [
|
20953
|
+
{
|
20954
|
+
name: 'DCpay Testnet Explorer',
|
20955
|
+
url: 'https://testnet.dcpay.io',
|
20956
|
+
standard: 'EIP3091'
|
20957
|
+
}
|
20958
|
+
]
|
20959
|
+
},
|
20754
20960
|
{
|
20755
20961
|
name: 'CENNZnet Azalea',
|
20756
20962
|
chain: 'CENNZnet',
|
@@ -24861,6 +25067,7 @@ const chainArray = [
|
|
24861
25067
|
shortName: 'INOAI',
|
24862
25068
|
chainId: 88559,
|
24863
25069
|
networkId: 88559,
|
25070
|
+
icon: 'inoai',
|
24864
25071
|
explorers: [
|
24865
25072
|
{
|
24866
25073
|
name: 'inoai live',
|
@@ -25217,6 +25424,19 @@ const chainArray = [
|
|
25217
25424
|
}
|
25218
25425
|
]
|
25219
25426
|
},
|
25427
|
+
{
|
25428
|
+
name: 'Ebi Chain',
|
25429
|
+
title: 'Ebi Chain',
|
25430
|
+
chain: 'Ebi',
|
25431
|
+
rpc: [ 'https://rpc.ebi.xyz' ],
|
25432
|
+
faucets: [],
|
25433
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25434
|
+
infoURL: 'https://ebi.xyz',
|
25435
|
+
shortName: 'ebi',
|
25436
|
+
chainId: 98881,
|
25437
|
+
networkId: 98881,
|
25438
|
+
status: 'incubating'
|
25439
|
+
},
|
25220
25440
|
{
|
25221
25441
|
name: 'eLiberty Testnet',
|
25222
25442
|
chain: '$EL',
|
@@ -27346,7 +27566,7 @@ const chainArray = [
|
|
27346
27566
|
explorers: [
|
27347
27567
|
{
|
27348
27568
|
name: 'Bitfinity Mainnet Block Explorer',
|
27349
|
-
url: 'https://explorer.
|
27569
|
+
url: 'https://explorer.mainnet.bitfinity.network',
|
27350
27570
|
icon: 'bitfinity',
|
27351
27571
|
standard: 'EIP3091'
|
27352
27572
|
}
|