eth-chainlist 0.0.336 → 0.0.338
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 +292 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.338 (2024-02-13)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.337 ([09a7206](https://github.com/poowf/eth-chainlist/commit/09a720678e9ad676a0478c29e62e640603116b21))
|
9
|
+
* update chain data ([2185d29](https://github.com/poowf/eth-chainlist/commit/2185d2950b3fb80ae8a9b6a7419046cee7978e01))
|
10
|
+
|
11
|
+
### 0.0.337 (2024-02-10)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.336 ([3d40e63](https://github.com/poowf/eth-chainlist/commit/3d40e636fec2b95d1176b93c5819fed3422dafd8))
|
17
|
+
* update chain data ([7b34a69](https://github.com/poowf/eth-chainlist/commit/7b34a69ff304d45a0d6e8640635f912c2e58cf73))
|
18
|
+
|
3
19
|
### 0.0.336 (2024-02-07)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3611,6 +3611,25 @@ const chainArray = [
|
|
3611
3611
|
slip44: 2221,
|
3612
3612
|
status: 'deprecated'
|
3613
3613
|
},
|
3614
|
+
{
|
3615
|
+
name: 'Viridis Testnet',
|
3616
|
+
chain: 'VRD',
|
3617
|
+
icon: 'viridis',
|
3618
|
+
rpc: [ 'https://testnet-rpc.vrd.network' ],
|
3619
|
+
faucets: [ 'https://faucet.vrd.network' ],
|
3620
|
+
nativeCurrency: { name: 'Viridis Token', symbol: 'VRD', decimals: 18 },
|
3621
|
+
infoURL: 'https://viridis.network',
|
3622
|
+
shortName: 'VRD-Testnet',
|
3623
|
+
chainId: 224,
|
3624
|
+
networkId: 224,
|
3625
|
+
explorers: [
|
3626
|
+
{
|
3627
|
+
name: 'Viridis Testnet',
|
3628
|
+
url: 'https://testnet.vrd.network',
|
3629
|
+
standard: 'EIP3091'
|
3630
|
+
}
|
3631
|
+
]
|
3632
|
+
},
|
3614
3633
|
{
|
3615
3634
|
name: 'LACHAIN Mainnet',
|
3616
3635
|
chain: 'LA',
|
@@ -4256,6 +4275,27 @@ const chainArray = [
|
|
4256
4275
|
}
|
4257
4276
|
]
|
4258
4277
|
},
|
4278
|
+
{
|
4279
|
+
name: 'ZKSats Mainnet',
|
4280
|
+
title: 'ZKSats Mainnet',
|
4281
|
+
chain: 'ZKSats',
|
4282
|
+
rpc: [ 'https://mainnet.zksats.io' ],
|
4283
|
+
faucets: [],
|
4284
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
4285
|
+
infoURL: 'https://zksats.io',
|
4286
|
+
shortName: 'ZKSats-Mainnet',
|
4287
|
+
chainId: 305,
|
4288
|
+
networkId: 305,
|
4289
|
+
icon: 'zksats',
|
4290
|
+
explorers: [
|
4291
|
+
{
|
4292
|
+
name: 'blockscout',
|
4293
|
+
url: 'https://explorer.zksats.io',
|
4294
|
+
icon: 'zksats',
|
4295
|
+
standard: 'EIP3091'
|
4296
|
+
}
|
4297
|
+
]
|
4298
|
+
},
|
4259
4299
|
{
|
4260
4300
|
name: 'Lovely Network Testnet',
|
4261
4301
|
chain: 'Lovely',
|
@@ -4911,6 +4951,25 @@ const chainArray = [
|
|
4911
4951
|
}
|
4912
4952
|
]
|
4913
4953
|
},
|
4954
|
+
{
|
4955
|
+
name: 'Viridis Mainnet',
|
4956
|
+
chain: 'VRD',
|
4957
|
+
icon: 'viridis',
|
4958
|
+
rpc: [ 'https://mainnet-rpc.vrd.network' ],
|
4959
|
+
faucets: [],
|
4960
|
+
nativeCurrency: { name: 'Viridis Token', symbol: 'VRD', decimals: 18 },
|
4961
|
+
infoURL: 'https://viridis.network',
|
4962
|
+
shortName: 'vrd',
|
4963
|
+
chainId: 422,
|
4964
|
+
networkId: 422,
|
4965
|
+
explorers: [
|
4966
|
+
{
|
4967
|
+
name: 'Viridis Mainnet',
|
4968
|
+
url: 'https://explorer.vrd.network',
|
4969
|
+
standard: 'EIP3091'
|
4970
|
+
}
|
4971
|
+
]
|
4972
|
+
},
|
4914
4973
|
{
|
4915
4974
|
name: 'PGN (Public Goods Network)',
|
4916
4975
|
chain: 'ETH',
|
@@ -6377,6 +6436,24 @@ const chainArray = [
|
|
6377
6436
|
slip44: 1,
|
6378
6437
|
status: 'deprecated'
|
6379
6438
|
},
|
6439
|
+
{
|
6440
|
+
name: 'CheckDot Blockchain Devnet',
|
6441
|
+
chain: 'CDT Blockchain',
|
6442
|
+
rpc: [ 'https://devnet.checkdot.io' ],
|
6443
|
+
faucets: [],
|
6444
|
+
nativeCurrency: { name: 'CDT', symbol: 'CDT', decimals: 18 },
|
6445
|
+
infoURL: 'https://checkdot.io',
|
6446
|
+
shortName: 'cdt',
|
6447
|
+
chainId: 831,
|
6448
|
+
networkId: 831,
|
6449
|
+
explorers: [
|
6450
|
+
{
|
6451
|
+
name: 'CDT Explorer',
|
6452
|
+
url: 'https://explorer.checkdot.io',
|
6453
|
+
standard: 'none'
|
6454
|
+
}
|
6455
|
+
]
|
6456
|
+
},
|
6380
6457
|
{
|
6381
6458
|
name: 'Taraxa Mainnet',
|
6382
6459
|
chain: 'Tara',
|
@@ -9979,6 +10056,17 @@ const chainArray = [
|
|
9979
10056
|
}
|
9980
10057
|
]
|
9981
10058
|
},
|
10059
|
+
{
|
10060
|
+
name: 'Swan Saturn Testnet',
|
10061
|
+
chain: 'SWAN',
|
10062
|
+
rpc: [ 'https://saturn-rpc.swanchain.io' ],
|
10063
|
+
faucets: [],
|
10064
|
+
nativeCurrency: { name: 'SWANETH', symbol: 'SWAN', decimals: 18 },
|
10065
|
+
infoURL: 'https://swanchain.io/',
|
10066
|
+
shortName: 'swan',
|
10067
|
+
chainId: 2024,
|
10068
|
+
networkId: 2024
|
10069
|
+
},
|
9982
10070
|
{
|
9983
10071
|
name: 'Rangers Protocol Mainnet',
|
9984
10072
|
chain: 'Rangers',
|
@@ -12425,6 +12513,8 @@ const chainArray = [
|
|
12425
12513
|
name: 'Beam',
|
12426
12514
|
chain: 'BEAM',
|
12427
12515
|
rpc: [
|
12516
|
+
'https://build.onbeam.com/rpc',
|
12517
|
+
'wss://build.onbeam.com/ws',
|
12428
12518
|
'https://subnets.avax.network/beam/mainnet/rpc',
|
12429
12519
|
'wss://subnets.avax.network/beam/mainnet/ws'
|
12430
12520
|
],
|
@@ -12507,6 +12597,27 @@ const chainArray = [
|
|
12507
12597
|
}
|
12508
12598
|
]
|
12509
12599
|
},
|
12600
|
+
{
|
12601
|
+
name: 'Emoney Network Testnet',
|
12602
|
+
chain: 'Emoney',
|
12603
|
+
rpc: [ 'https://testnet.emoney.network/' ],
|
12604
|
+
faucets: [ 'https://faucet.emoney.network/faucet' ],
|
12605
|
+
nativeCurrency: { name: 'Emoney Network', symbol: 'EMYC', decimals: 18 },
|
12606
|
+
infoURL: 'https://emoney.network/',
|
12607
|
+
shortName: 'emoney',
|
12608
|
+
chainId: 4544,
|
12609
|
+
networkId: 4544,
|
12610
|
+
slip44: 118,
|
12611
|
+
icon: 'emoney',
|
12612
|
+
explorers: [
|
12613
|
+
{
|
12614
|
+
name: 'EMoney ethscan',
|
12615
|
+
url: 'https://ethscan.emoney.network',
|
12616
|
+
icon: 'emoney',
|
12617
|
+
standard: 'EIP3091'
|
12618
|
+
}
|
12619
|
+
]
|
12620
|
+
},
|
12510
12621
|
{
|
12511
12622
|
name: 'IoTeX Network Mainnet',
|
12512
12623
|
chain: 'iotex.io',
|
@@ -15067,19 +15178,39 @@ const chainArray = [
|
|
15067
15178
|
]
|
15068
15179
|
},
|
15069
15180
|
{
|
15070
|
-
name: 'Nexa Block',
|
15071
|
-
chain: 'Nexa',
|
15181
|
+
name: 'Nexa Testnet Block',
|
15182
|
+
chain: 'Nexa Testnet',
|
15072
15183
|
rpc: [ 'https://rpc-testnet-nodes.nexablockscan.io' ],
|
15073
|
-
faucets: [ 'https://nexablockscan.io/faucet' ],
|
15074
|
-
nativeCurrency: { name: 'Nexa Token', symbol: 'NEXB', decimals: 18 },
|
15075
|
-
infoURL: 'https://www.nexablock.io
|
15076
|
-
shortName: '
|
15184
|
+
faucets: [ 'https://testnet.nexablockscan.io/faucet' ],
|
15185
|
+
nativeCurrency: { name: 'Nexa Testnet Token', symbol: 'NEXB', decimals: 18 },
|
15186
|
+
infoURL: 'https://www.nexablock.io',
|
15187
|
+
shortName: 'NexaTestnet',
|
15077
15188
|
chainId: 9024,
|
15078
15189
|
networkId: 9024,
|
15079
15190
|
icon: 'nexaChain',
|
15080
15191
|
explorers: [
|
15081
15192
|
{
|
15082
|
-
name: 'Nexablock Explorer',
|
15193
|
+
name: 'Nexablock Testnet Explorer',
|
15194
|
+
url: 'https://testnet.nexablockscan.io',
|
15195
|
+
standard: 'none',
|
15196
|
+
icon: 'nexaChain'
|
15197
|
+
}
|
15198
|
+
]
|
15199
|
+
},
|
15200
|
+
{
|
15201
|
+
name: 'Nexa Mainnet Block',
|
15202
|
+
chain: 'Nexa Mainnet',
|
15203
|
+
rpc: [ 'https://rpc-nodes.nexablockscan.io' ],
|
15204
|
+
faucets: [],
|
15205
|
+
nativeCurrency: { name: 'Nexa Mainnet Token', symbol: 'NEXB', decimals: 18 },
|
15206
|
+
infoURL: 'https://www.nexablock.io',
|
15207
|
+
shortName: 'Nexa',
|
15208
|
+
chainId: 9025,
|
15209
|
+
networkId: 9025,
|
15210
|
+
icon: 'nexaChain',
|
15211
|
+
explorers: [
|
15212
|
+
{
|
15213
|
+
name: 'Nexablock Mainnet Explorer',
|
15083
15214
|
url: 'https://nexablockscan.io',
|
15084
15215
|
standard: 'none',
|
15085
15216
|
icon: 'nexaChain'
|
@@ -16126,6 +16257,26 @@ const chainArray = [
|
|
16126
16257
|
}
|
16127
16258
|
]
|
16128
16259
|
},
|
16260
|
+
{
|
16261
|
+
name: 'Aternos',
|
16262
|
+
chain: 'Aternos',
|
16263
|
+
icon: 'aternos',
|
16264
|
+
rpc: [ 'https://rpc.aternoschain.com' ],
|
16265
|
+
faucets: [ 'https://faucet.aternoschain.com' ],
|
16266
|
+
nativeCurrency: { name: 'Aternos', symbol: 'ATR', decimals: 18 },
|
16267
|
+
infoURL: 'https://aternoschain.com',
|
16268
|
+
shortName: 'ATR',
|
16269
|
+
chainId: 12020,
|
16270
|
+
networkId: 12020,
|
16271
|
+
explorers: [
|
16272
|
+
{
|
16273
|
+
name: 'blockscout',
|
16274
|
+
url: 'https://explorer.aternoschain.com',
|
16275
|
+
icon: 'blockscout',
|
16276
|
+
standard: 'EIP3091'
|
16277
|
+
}
|
16278
|
+
]
|
16279
|
+
},
|
16129
16280
|
{
|
16130
16281
|
name: 'Singularity ZERO Testnet',
|
16131
16282
|
chain: 'ZERO',
|
@@ -16357,6 +16508,8 @@ const chainArray = [
|
|
16357
16508
|
name: 'Beam Testnet',
|
16358
16509
|
chain: 'BEAM',
|
16359
16510
|
rpc: [
|
16511
|
+
'https://build.onbeam.com/rpc/testnet',
|
16512
|
+
'wss://build.onbeam.com/ws/testnet',
|
16360
16513
|
'https://subnets.avax.network/beam/testnet/rpc',
|
16361
16514
|
'wss://subnets.avax.network/beam/testnet/ws'
|
16362
16515
|
],
|
@@ -16912,6 +17065,36 @@ const chainArray = [
|
|
16912
17065
|
}
|
16913
17066
|
]
|
16914
17067
|
},
|
17068
|
+
{
|
17069
|
+
name: 'unreal',
|
17070
|
+
title: 'unreal testnet for re.al',
|
17071
|
+
chain: 'unreal',
|
17072
|
+
rpc: [
|
17073
|
+
'https://rpc.unreal.gelato.digital',
|
17074
|
+
'wss://ws.unreal.gelato.digital'
|
17075
|
+
],
|
17076
|
+
nativeCurrency: { name: 'unreal Ether', symbol: 'ETH', decimals: 18 },
|
17077
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/unreal',
|
17078
|
+
faucets: [],
|
17079
|
+
shortName: 'unreal',
|
17080
|
+
chainId: 18231,
|
17081
|
+
networkId: 18231,
|
17082
|
+
slip44: 60,
|
17083
|
+
icon: 'unreal',
|
17084
|
+
explorers: [
|
17085
|
+
{
|
17086
|
+
name: 'blockscout',
|
17087
|
+
url: 'https://unreal.blockscout.com',
|
17088
|
+
icon: 'unreal',
|
17089
|
+
standard: 'EIP3091'
|
17090
|
+
}
|
17091
|
+
],
|
17092
|
+
parent: {
|
17093
|
+
type: 'L2',
|
17094
|
+
chain: 'eip155-11155111',
|
17095
|
+
bridges: [ { url: 'https://bridge.unreal.gelato.digital' } ]
|
17096
|
+
}
|
17097
|
+
},
|
16915
17098
|
{
|
16916
17099
|
name: 'MXC zkEVM Mainnet',
|
16917
17100
|
chain: 'MXC zkEVM',
|
@@ -19791,6 +19974,31 @@ const chainArray = [
|
|
19791
19974
|
}
|
19792
19975
|
]
|
19793
19976
|
},
|
19977
|
+
{
|
19978
|
+
name: 'Vanguard',
|
19979
|
+
title: 'Vanar Testnet Vanguard',
|
19980
|
+
chain: 'VANAR',
|
19981
|
+
rpc: [
|
19982
|
+
'https://rpc-vanguard.vanarchain.com',
|
19983
|
+
'wss://ws-vanguard.vanarchain.com'
|
19984
|
+
],
|
19985
|
+
faucets: [ 'https://faucet.vanarchain.com' ],
|
19986
|
+
nativeCurrency: { name: 'Vanguard Vanry', symbol: 'VG', decimals: 18 },
|
19987
|
+
features: [ { name: 'EIP155' } ],
|
19988
|
+
infoURL: 'https://vanarchain.com',
|
19989
|
+
shortName: 'vanguard',
|
19990
|
+
chainId: 78600,
|
19991
|
+
networkId: 78600,
|
19992
|
+
icon: 'vanguard',
|
19993
|
+
explorers: [
|
19994
|
+
{
|
19995
|
+
name: 'Vanguard Explorer',
|
19996
|
+
url: 'https://explorer-vanguard.vanarchain.com',
|
19997
|
+
icon: 'vanguard',
|
19998
|
+
standard: 'EIP3091'
|
19999
|
+
}
|
20000
|
+
]
|
20001
|
+
},
|
19794
20002
|
{
|
19795
20003
|
name: 'Gold Smart Chain Testnet',
|
19796
20004
|
chain: 'STAND',
|
@@ -19861,6 +20069,25 @@ const chainArray = [
|
|
19861
20069
|
}
|
19862
20070
|
]
|
19863
20071
|
},
|
20072
|
+
{
|
20073
|
+
name: 'Hizoco mainnet',
|
20074
|
+
chain: 'HZC',
|
20075
|
+
icon: 'hizoco',
|
20076
|
+
rpc: [ 'https://hizoco.net/rpc' ],
|
20077
|
+
faucets: [],
|
20078
|
+
nativeCurrency: { name: 'Hizoco', symbol: 'HZC', decimals: 18 },
|
20079
|
+
infoURL: 'http://hizoco.net',
|
20080
|
+
shortName: 'hzc',
|
20081
|
+
chainId: 80096,
|
20082
|
+
networkId: 80096,
|
20083
|
+
explorers: [
|
20084
|
+
{
|
20085
|
+
name: 'blockscout',
|
20086
|
+
url: 'https://hizoco.net:38443',
|
20087
|
+
standard: 'none'
|
20088
|
+
}
|
20089
|
+
]
|
20090
|
+
},
|
19864
20091
|
{
|
19865
20092
|
name: 'Nordek Mainnet',
|
19866
20093
|
chain: 'Nordek',
|
@@ -21159,7 +21386,7 @@ const chainArray = [
|
|
21159
21386
|
chain: 'ETH',
|
21160
21387
|
status: 'active',
|
21161
21388
|
icon: 'taiko',
|
21162
|
-
rpc: [ 'https://rpc.katla.taiko.xyz' ],
|
21389
|
+
rpc: [ 'https://rpc.katla.taiko.xyz', 'wss://rpc.katla.taiko.xyz' ],
|
21163
21390
|
faucets: [],
|
21164
21391
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
21165
21392
|
infoURL: 'https://taiko.xyz',
|
@@ -24243,6 +24470,33 @@ const chainArray = [
|
|
24243
24470
|
networkId: 99415706,
|
24244
24471
|
slip44: 1
|
24245
24472
|
},
|
24473
|
+
{
|
24474
|
+
name: 'Plume Testnet',
|
24475
|
+
title: 'Plume Sepolia Rollup Testnet',
|
24476
|
+
chain: 'ETH',
|
24477
|
+
rpc: [ 'https://plume-testnet.rpc.caldera.xyz/http' ],
|
24478
|
+
faucets: [],
|
24479
|
+
nativeCurrency: { name: 'Plume Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
24480
|
+
infoURL: 'https://www.plumenetwork.xyz/',
|
24481
|
+
shortName: 'plume-testnet',
|
24482
|
+
chainId: 161221135,
|
24483
|
+
networkId: 161221135,
|
24484
|
+
slip44: 1,
|
24485
|
+
icon: 'plume',
|
24486
|
+
explorers: [
|
24487
|
+
{
|
24488
|
+
name: 'Blockscout',
|
24489
|
+
url: 'https://plume-testnet.explorer.caldera.xyz',
|
24490
|
+
icon: 'blockscout',
|
24491
|
+
standard: 'EIP3091'
|
24492
|
+
}
|
24493
|
+
],
|
24494
|
+
parent: {
|
24495
|
+
type: 'L2',
|
24496
|
+
chain: 'eip155-11155111',
|
24497
|
+
bridges: [ { url: 'https://plume-testnet.calderabridge.xyz' } ]
|
24498
|
+
}
|
24499
|
+
},
|
24246
24500
|
{
|
24247
24501
|
name: 'Blast Sepolia Testnet',
|
24248
24502
|
chain: 'ETH',
|
@@ -25145,6 +25399,36 @@ const chainArray = [
|
|
25145
25399
|
}
|
25146
25400
|
]
|
25147
25401
|
},
|
25402
|
+
{
|
25403
|
+
name: 'GitSwarm Test Network',
|
25404
|
+
title: 'GitSwarm Test Network',
|
25405
|
+
chain: 'ETH',
|
25406
|
+
icon: 'gitswarm',
|
25407
|
+
rpc: [ 'https://gitswarm.com:2096' ],
|
25408
|
+
faucets: [],
|
25409
|
+
nativeCurrency: { name: 'GitSwarm Ether', symbol: 'GS-ETH', decimals: 18 },
|
25410
|
+
infoURL: 'https://gitswarm.com/',
|
25411
|
+
shortName: 'GS-ETH',
|
25412
|
+
chainId: 28872323069,
|
25413
|
+
networkId: 28872323069,
|
25414
|
+
slip44: 1,
|
25415
|
+
explorers: [],
|
25416
|
+
status: 'incubating'
|
25417
|
+
},
|
25418
|
+
{
|
25419
|
+
name: 'Kakarot Sepolia',
|
25420
|
+
chain: 'ETH',
|
25421
|
+
icon: 'kakarot',
|
25422
|
+
rpc: [],
|
25423
|
+
faucets: [],
|
25424
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25425
|
+
infoURL: 'https://kakarot.org',
|
25426
|
+
shortName: 'kkrt-sepolia',
|
25427
|
+
chainId: 107107114116,
|
25428
|
+
networkId: 107107114116,
|
25429
|
+
explorers: [],
|
25430
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] }
|
25431
|
+
},
|
25148
25432
|
{
|
25149
25433
|
name: 'Alphabet Mainnet',
|
25150
25434
|
chain: 'Alphabet Network',
|