eth-chainlist 0.0.580 → 0.0.581
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 +133 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.581 (2025-01-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.580 ([fa1b467](https://github.com/poowf/eth-chainlist/commit/fa1b467575b18c5ed24d4167576b92415817ea25))
|
9
|
+
* update chain data ([7403db0](https://github.com/poowf/eth-chainlist/commit/7403db068e14af015ae1beb8b21fec91a090f79f))
|
10
|
+
|
3
11
|
### 0.0.580 (2025-01-07)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -320,7 +320,7 @@ const chainArray = [
|
|
320
320
|
'https://rpc.ankr.com/flare',
|
321
321
|
'https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc',
|
322
322
|
'https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc',
|
323
|
-
'https://rpc.
|
323
|
+
'https://rpc.au.cc/flare',
|
324
324
|
'https://flare.enosys.global/ext/C/rpc',
|
325
325
|
'https://flare.solidifi.app/ext/C/rpc'
|
326
326
|
],
|
@@ -435,7 +435,7 @@ const chainArray = [
|
|
435
435
|
'https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc',
|
436
436
|
'https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc',
|
437
437
|
'https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc',
|
438
|
-
'https://rpc.
|
438
|
+
'https://rpc.au.cc/songbird',
|
439
439
|
'https://songbird.enosys.global/ext/C/rpc',
|
440
440
|
'https://songbird.solidifi.app/ext/C/rpc'
|
441
441
|
],
|
@@ -6881,14 +6881,17 @@ const chainArray = [
|
|
6881
6881
|
{
|
6882
6882
|
name: 'Firechain Mainnet',
|
6883
6883
|
chain: 'FIRE',
|
6884
|
-
|
6885
|
-
|
6884
|
+
rpc: [
|
6885
|
+
'https://rpc-mainnet.thefirechain.com',
|
6886
|
+
'https://rpc-mainnet.firestation.io'
|
6887
|
+
],
|
6886
6888
|
faucets: [],
|
6887
6889
|
nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 },
|
6888
6890
|
infoURL: 'https://thefirechain.com',
|
6889
6891
|
shortName: 'fire',
|
6890
6892
|
chainId: 529,
|
6891
6893
|
networkId: 529,
|
6894
|
+
icon: 'firechain',
|
6892
6895
|
explorers: [],
|
6893
6896
|
status: 'incubating'
|
6894
6897
|
},
|
@@ -7447,6 +7450,24 @@ const chainArray = [
|
|
7447
7450
|
}
|
7448
7451
|
]
|
7449
7452
|
},
|
7453
|
+
{
|
7454
|
+
name: 'NFB Chain',
|
7455
|
+
chain: 'NFB Chain',
|
7456
|
+
rpc: [ 'https://node.nfbchain.com' ],
|
7457
|
+
faucets: [],
|
7458
|
+
nativeCurrency: { name: 'NFBCoin', symbol: 'NFBC', decimals: 18 },
|
7459
|
+
infoURL: 'https://nfbchain.com/',
|
7460
|
+
shortName: 'nfbchain',
|
7461
|
+
chainId: 632,
|
7462
|
+
networkId: 632,
|
7463
|
+
explorers: [
|
7464
|
+
{
|
7465
|
+
name: 'NFB Chain Explorer',
|
7466
|
+
url: 'https://scan.nfbchain.com',
|
7467
|
+
standard: 'none'
|
7468
|
+
}
|
7469
|
+
]
|
7470
|
+
},
|
7450
7471
|
{
|
7451
7472
|
name: 'Avocado',
|
7452
7473
|
chain: 'Avocado',
|
@@ -8438,14 +8459,17 @@ const chainArray = [
|
|
8438
8459
|
name: 'Firechain zkEVM',
|
8439
8460
|
title: 'Firechain zkEVM',
|
8440
8461
|
chain: 'Firechain',
|
8441
|
-
rpc: [
|
8462
|
+
rpc: [
|
8463
|
+
'https://rpc-zkevm.thefirechain.com',
|
8464
|
+
'https://rpc-zkevm.firestation.io'
|
8465
|
+
],
|
8442
8466
|
faucets: [],
|
8443
8467
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
8444
8468
|
infoURL: 'https://docs.thefirechain.com/',
|
8445
8469
|
shortName: 'firechan-zkEVM',
|
8446
8470
|
chainId: 814,
|
8447
8471
|
networkId: 814,
|
8448
|
-
icon: '
|
8472
|
+
icon: 'ethereum',
|
8449
8473
|
explorers: [],
|
8450
8474
|
parent: {
|
8451
8475
|
type: 'L2',
|
@@ -8995,16 +9019,23 @@ const chainArray = [
|
|
8995
9019
|
]
|
8996
9020
|
},
|
8997
9021
|
{
|
8998
|
-
name: 'Rinia
|
9022
|
+
name: 'Rinia',
|
9023
|
+
title: 'Firechain Testnet Rinia',
|
8999
9024
|
chain: 'FIRE',
|
9000
|
-
|
9001
|
-
|
9002
|
-
|
9025
|
+
rpc: [
|
9026
|
+
'https://rinia-rpc1.thefirechain.com',
|
9027
|
+
'https://rpc-rinia.firestation.io'
|
9028
|
+
],
|
9029
|
+
faucets: [
|
9030
|
+
'https://faucet.thefirechain.com',
|
9031
|
+
'https://faucet.firestation.io'
|
9032
|
+
],
|
9003
9033
|
nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 },
|
9004
9034
|
infoURL: 'https://thefirechain.com',
|
9005
9035
|
shortName: 'tfire',
|
9006
9036
|
chainId: 917,
|
9007
9037
|
networkId: 917,
|
9038
|
+
icon: 'rinia',
|
9008
9039
|
slip44: 1,
|
9009
9040
|
explorers: [
|
9010
9041
|
{
|
@@ -17437,14 +17468,27 @@ const chainArray = [
|
|
17437
17468
|
name: 'Firechain zkEVM Ghostrider',
|
17438
17469
|
title: 'Firechain zkEVM Testnet',
|
17439
17470
|
chain: 'Firechain',
|
17440
|
-
rpc: [
|
17441
|
-
|
17471
|
+
rpc: [
|
17472
|
+
'https://rpc-zkevm-ghostrider.thefirechain.com',
|
17473
|
+
'https://rpc-zkevm-ghostrider.firestation.io'
|
17474
|
+
],
|
17475
|
+
faucets: [
|
17476
|
+
'zkevm-faucet.thefirechain.com',
|
17477
|
+
'https://zkevm-faucet.firestation.io'
|
17478
|
+
],
|
17442
17479
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
17443
17480
|
infoURL: 'https://docs.thefirechain.com/',
|
17444
17481
|
shortName: 'firechain-zkEVM-testnet',
|
17445
17482
|
chainId: 3885,
|
17446
17483
|
networkId: 3885,
|
17447
|
-
|
17484
|
+
icon: 'ethereum',
|
17485
|
+
explorers: [
|
17486
|
+
{
|
17487
|
+
name: 'FireScan',
|
17488
|
+
url: 'https://ghostrider-zkevm.firescan.io',
|
17489
|
+
standard: 'EIP3091'
|
17490
|
+
}
|
17491
|
+
]
|
17448
17492
|
},
|
17449
17493
|
{
|
17450
17494
|
name: 'KalyChain Mainnet',
|
@@ -19520,6 +19564,27 @@ const chainArray = [
|
|
19520
19564
|
}
|
19521
19565
|
]
|
19522
19566
|
},
|
19567
|
+
{
|
19568
|
+
name: 'Saga',
|
19569
|
+
chain: 'SAGA',
|
19570
|
+
rpc: [ 'http://sagaevm-5464-1.jsonrpc.sagarpc.io' ],
|
19571
|
+
faucets: [],
|
19572
|
+
nativeCurrency: { name: 'gas', symbol: 'GAS', decimals: 18 },
|
19573
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
19574
|
+
infoURL: 'https://www.saga.xyz',
|
19575
|
+
shortName: 'saga',
|
19576
|
+
chainId: 5464,
|
19577
|
+
networkId: 5464,
|
19578
|
+
icon: 'saga',
|
19579
|
+
explorers: [
|
19580
|
+
{
|
19581
|
+
name: 'blockscout',
|
19582
|
+
url: 'https://sagaevm-5464-1.sagaexplorer.io',
|
19583
|
+
icon: 'blockscout',
|
19584
|
+
standard: 'EIP3091'
|
19585
|
+
}
|
19586
|
+
]
|
19587
|
+
},
|
19523
19588
|
{
|
19524
19589
|
name: 'PointPay Mainnet',
|
19525
19590
|
chain: 'pointpay',
|
@@ -20151,6 +20216,24 @@ const chainArray = [
|
|
20151
20216
|
}
|
20152
20217
|
]
|
20153
20218
|
},
|
20219
|
+
{
|
20220
|
+
name: 'NFB Chain Testnet',
|
20221
|
+
chain: 'NFB Chain Testnet',
|
20222
|
+
rpc: [ 'https://testnet-node.nfbchain.com' ],
|
20223
|
+
faucets: [],
|
20224
|
+
nativeCurrency: { name: 'NFBCoinTest', symbol: 'NFBCT', decimals: 18 },
|
20225
|
+
infoURL: 'https://nfbchain.com/',
|
20226
|
+
shortName: 'nfbchaintest',
|
20227
|
+
chainId: 6320,
|
20228
|
+
networkId: 6320,
|
20229
|
+
explorers: [
|
20230
|
+
{
|
20231
|
+
name: 'NFB Chain Testnet Explorer',
|
20232
|
+
url: 'https://testnet-scan.nfbchain.com',
|
20233
|
+
standard: 'none'
|
20234
|
+
}
|
20235
|
+
]
|
20236
|
+
},
|
20154
20237
|
{
|
20155
20238
|
name: 'Aura Euphoria Testnet',
|
20156
20239
|
chain: 'Aura',
|
@@ -36889,6 +36972,24 @@ const chainArray = [
|
|
36889
36972
|
}
|
36890
36973
|
]
|
36891
36974
|
},
|
36975
|
+
{
|
36976
|
+
name: 'Infinaeon',
|
36977
|
+
chain: 'Infinaeon',
|
36978
|
+
rpc: [ 'https://rpc.infinaeon.com' ],
|
36979
|
+
faucets: [],
|
36980
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
36981
|
+
infoURL: 'hhttps://rpc.infinaeon.com',
|
36982
|
+
shortName: 'Infinaeon',
|
36983
|
+
chainId: 420000,
|
36984
|
+
networkId: 420000,
|
36985
|
+
explorers: [
|
36986
|
+
{
|
36987
|
+
name: 'tracehawk',
|
36988
|
+
url: 'https://explorer.infinaeon.com',
|
36989
|
+
standard: 'none'
|
36990
|
+
}
|
36991
|
+
]
|
36992
|
+
},
|
36892
36993
|
{
|
36893
36994
|
name: 'Vector Smart Chain',
|
36894
36995
|
chain: 'VSC',
|
@@ -37598,7 +37699,7 @@ const chainArray = [
|
|
37598
37699
|
rpc: [ 'https://rpc-testnet.pentagon.games' ],
|
37599
37700
|
faucets: [ 'https://bridge-testnet.pentagon.games' ],
|
37600
37701
|
nativeCurrency: { name: 'Pentagon', symbol: 'PEN', decimals: 18 },
|
37601
|
-
icon: 'pentagon',
|
37702
|
+
icon: 'pentagon-testnet',
|
37602
37703
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
37603
37704
|
infoURL: 'https://pentagon.games',
|
37604
37705
|
shortName: 'pentagon-testnet',
|
@@ -38088,6 +38189,24 @@ const chainArray = [
|
|
38088
38189
|
}
|
38089
38190
|
]
|
38090
38191
|
},
|
38192
|
+
{
|
38193
|
+
name: 'Ternoa',
|
38194
|
+
chain: 'Ternoa',
|
38195
|
+
rpc: [ 'https://rpc-mainnet.zkevm.ternoa.network' ],
|
38196
|
+
faucets: [],
|
38197
|
+
nativeCurrency: { name: 'Capsule Coin', symbol: 'CAPS', decimals: 18 },
|
38198
|
+
infoURL: '',
|
38199
|
+
shortName: 'ternoa-mainnet',
|
38200
|
+
chainId: 752025,
|
38201
|
+
networkId: 7502025,
|
38202
|
+
explorers: [
|
38203
|
+
{
|
38204
|
+
name: 'Tracehawk',
|
38205
|
+
url: 'https://explorer-mainnet.zkevm.ternoa.network',
|
38206
|
+
standard: 'none'
|
38207
|
+
}
|
38208
|
+
]
|
38209
|
+
},
|
38091
38210
|
{
|
38092
38211
|
name: 'PAYSCAN CHAIN',
|
38093
38212
|
chain: 'PAYSCAN CHAIN',
|