eth-chainlist 0.0.441 → 0.0.443
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 +268 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.443 (2024-07-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.442 ([9a03f54](https://github.com/poowf/eth-chainlist/commit/9a03f543118d1b634d95992c9c5fa414bafca85f))
|
9
|
+
* update chain data ([62d8065](https://github.com/poowf/eth-chainlist/commit/62d8065bd7908b56c16d82af51f31dbc7caf327f))
|
10
|
+
|
11
|
+
### 0.0.442 (2024-07-13)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.441 ([c35e051](https://github.com/poowf/eth-chainlist/commit/c35e051d67956d6ebf73aa01625cf8265cbaa601))
|
17
|
+
* update chain data ([335964f](https://github.com/poowf/eth-chainlist/commit/335964f02cbaee7a8e6dd8630637085fdbce9bbc))
|
18
|
+
|
3
19
|
### 0.0.441 (2024-07-12)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3437,6 +3437,44 @@ const chainArray = [
|
|
3437
3437
|
}
|
3438
3438
|
]
|
3439
3439
|
},
|
3440
|
+
{
|
3441
|
+
name: 'ABEY Testnet',
|
3442
|
+
chain: 'ABEY',
|
3443
|
+
rpc: [ 'https://testrpc.abeychain.com' ],
|
3444
|
+
features: [ { name: 'EIP155' } ],
|
3445
|
+
faucets: [ 'https://testnet-faucet.abeychain.com' ],
|
3446
|
+
nativeCurrency: { name: 'ABEY', symbol: 'tABEY', decimals: 18 },
|
3447
|
+
infoURL: 'https://abey.com',
|
3448
|
+
shortName: 'abeyt',
|
3449
|
+
chainId: 178,
|
3450
|
+
networkId: 178,
|
3451
|
+
explorers: [
|
3452
|
+
{
|
3453
|
+
name: 'abeyscan-testnet',
|
3454
|
+
url: 'https://testnet.abeyscan.com',
|
3455
|
+
standard: 'EIP3091'
|
3456
|
+
}
|
3457
|
+
]
|
3458
|
+
},
|
3459
|
+
{
|
3460
|
+
name: 'ABEY Mainnet',
|
3461
|
+
chain: 'ABEY',
|
3462
|
+
rpc: [ 'https://rpc.abeychain.com' ],
|
3463
|
+
features: [ { name: 'EIP155' } ],
|
3464
|
+
faucets: [],
|
3465
|
+
nativeCurrency: { name: 'ABEY', symbol: 'ABEY', decimals: 18 },
|
3466
|
+
infoURL: 'https://abey.com',
|
3467
|
+
shortName: 'abey',
|
3468
|
+
chainId: 179,
|
3469
|
+
networkId: 179,
|
3470
|
+
explorers: [
|
3471
|
+
{
|
3472
|
+
name: 'abeyscan',
|
3473
|
+
url: 'https://abeyscan.com',
|
3474
|
+
standard: 'EIP3091'
|
3475
|
+
}
|
3476
|
+
]
|
3477
|
+
},
|
3440
3478
|
{
|
3441
3479
|
name: 'AME Chain Mainnet',
|
3442
3480
|
chain: 'AME',
|
@@ -4370,6 +4408,26 @@ const chainArray = [
|
|
4370
4408
|
}
|
4371
4409
|
]
|
4372
4410
|
},
|
4411
|
+
{
|
4412
|
+
name: 'Guru Network Testnet',
|
4413
|
+
chain: 'tGURU',
|
4414
|
+
icon: 'GuruNetwork',
|
4415
|
+
rpc: [ 'https://rpc.gurunetwork.ai/archive/261' ],
|
4416
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4417
|
+
faucets: [ 'https://v2.dex.guru/season-pass/faucet' ],
|
4418
|
+
nativeCurrency: { name: 'testGURU', symbol: 'tGURU', decimals: 18 },
|
4419
|
+
infoURL: 'https://gurunetwork.ai',
|
4420
|
+
shortName: 'tguru',
|
4421
|
+
chainId: 261,
|
4422
|
+
networkId: 261,
|
4423
|
+
explorers: [
|
4424
|
+
{
|
4425
|
+
name: 'guruscan',
|
4426
|
+
url: 'https://scan.gurunetwork.ai',
|
4427
|
+
standard: 'EIP3091'
|
4428
|
+
}
|
4429
|
+
]
|
4430
|
+
},
|
4373
4431
|
{
|
4374
4432
|
name: 'SUR Blockchain Network',
|
4375
4433
|
chain: 'SUR',
|
@@ -10569,6 +10627,44 @@ const chainArray = [
|
|
10569
10627
|
}
|
10570
10628
|
]
|
10571
10629
|
},
|
10630
|
+
{
|
10631
|
+
name: 'StarCHAIN Testnet',
|
10632
|
+
chain: 'StarCHAIN',
|
10633
|
+
rpc: [ 'https://testnet-rpc1.starworksglobal.com' ],
|
10634
|
+
features: [ { name: 'EIP155' } ],
|
10635
|
+
faucets: [],
|
10636
|
+
nativeCurrency: { name: 'STARX', symbol: 'STARX', decimals: 18 },
|
10637
|
+
infoURL: 'https://www.starworksglobal.com',
|
10638
|
+
shortName: 'starchain-testnet',
|
10639
|
+
chainId: 1570,
|
10640
|
+
networkId: 1570,
|
10641
|
+
explorers: [
|
10642
|
+
{
|
10643
|
+
name: 'StarCHAIN Explorer',
|
10644
|
+
url: 'https://testnet.starchainscan.io',
|
10645
|
+
standard: 'EIP3091'
|
10646
|
+
}
|
10647
|
+
]
|
10648
|
+
},
|
10649
|
+
{
|
10650
|
+
name: 'StarCHAIN',
|
10651
|
+
chain: 'StarCHAIN',
|
10652
|
+
rpc: [ 'https://rpc.starworksglobal.com' ],
|
10653
|
+
features: [ { name: 'EIP155' } ],
|
10654
|
+
faucets: [],
|
10655
|
+
nativeCurrency: { name: 'STARX', symbol: 'STARX', decimals: 18 },
|
10656
|
+
infoURL: 'https://www.starworksglobal.com',
|
10657
|
+
shortName: 'starchain',
|
10658
|
+
chainId: 1578,
|
10659
|
+
networkId: 1578,
|
10660
|
+
explorers: [
|
10661
|
+
{
|
10662
|
+
name: 'StarCHAIN Explorer',
|
10663
|
+
url: 'https://starchainscan.io',
|
10664
|
+
standard: 'EIP3091'
|
10665
|
+
}
|
10666
|
+
]
|
10667
|
+
},
|
10572
10668
|
{
|
10573
10669
|
name: 'Ethereum Inscription Mainnet',
|
10574
10670
|
chain: 'ETINS',
|
@@ -17306,6 +17402,32 @@ const chainArray = [
|
|
17306
17402
|
}
|
17307
17403
|
]
|
17308
17404
|
},
|
17405
|
+
{
|
17406
|
+
name: 'RACE Testnet',
|
17407
|
+
chain: 'ETH',
|
17408
|
+
rpc: [ 'https://racetestnet.io/' ],
|
17409
|
+
faucets: [ 'https://faucet.racetestnet.io/' ],
|
17410
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
17411
|
+
infoURL: 'https://race.foundation/',
|
17412
|
+
shortName: 'racesep',
|
17413
|
+
chainId: 6806,
|
17414
|
+
networkId: 6806,
|
17415
|
+
slip44: 1,
|
17416
|
+
icon: 'race',
|
17417
|
+
explorers: [
|
17418
|
+
{
|
17419
|
+
name: 'blockscout',
|
17420
|
+
url: 'https://testnet.racescan.io',
|
17421
|
+
icon: 'blockscout',
|
17422
|
+
standard: 'EIP3091'
|
17423
|
+
}
|
17424
|
+
],
|
17425
|
+
parent: {
|
17426
|
+
type: 'L2',
|
17427
|
+
chain: 'eip155-11155111',
|
17428
|
+
bridges: [ { url: 'https://testnet-bridge.raceconomy.com/' } ]
|
17429
|
+
}
|
17430
|
+
},
|
17309
17431
|
{
|
17310
17432
|
name: 'Pools Mainnet',
|
17311
17433
|
chain: 'Pools',
|
@@ -19480,6 +19602,25 @@ const chainArray = [
|
|
19480
19602
|
}
|
19481
19603
|
]
|
19482
19604
|
},
|
19605
|
+
{
|
19606
|
+
name: 'WeaveVM Testnet',
|
19607
|
+
chain: 'WVM',
|
19608
|
+
rpc: [ 'https://testnet.wvm.dev' ],
|
19609
|
+
faucets: [],
|
19610
|
+
nativeCurrency: { name: 'Testnet WeaveVM Token', symbol: 'tWVM', decimals: 18 },
|
19611
|
+
infoURL: 'https://wvm.dev',
|
19612
|
+
shortName: 'twvm',
|
19613
|
+
chainId: 9496,
|
19614
|
+
networkId: 9496,
|
19615
|
+
icon: 'weavevm',
|
19616
|
+
explorers: [
|
19617
|
+
{
|
19618
|
+
name: 'WeaveVM Explorer',
|
19619
|
+
url: 'https://explorer.wvm.dev',
|
19620
|
+
standard: 'EIP3091'
|
19621
|
+
}
|
19622
|
+
]
|
19623
|
+
},
|
19483
19624
|
{
|
19484
19625
|
name: 'Rangers Protocol Testnet Robin',
|
19485
19626
|
chain: 'Rangers',
|
@@ -21420,6 +21561,26 @@ const chainArray = [
|
|
21420
21561
|
}
|
21421
21562
|
]
|
21422
21563
|
},
|
21564
|
+
{
|
21565
|
+
name: 'KYMTC Mainnet',
|
21566
|
+
chain: 'KYMTC',
|
21567
|
+
icon: 'kymtc',
|
21568
|
+
rpc: [ 'https://mainnet-rpc.kymaticscan.online' ],
|
21569
|
+
faucets: [],
|
21570
|
+
nativeCurrency: { name: 'KYMTC', symbol: 'KYMTC', decimals: 18 },
|
21571
|
+
infoURL: 'https://kymaticscan.online',
|
21572
|
+
shortName: 'KYMTC',
|
21573
|
+
chainId: 15430,
|
21574
|
+
networkId: 15430,
|
21575
|
+
explorers: [
|
21576
|
+
{
|
21577
|
+
name: 'KYMTC Mainnet Explorer',
|
21578
|
+
url: 'https://kymaticscan.online',
|
21579
|
+
icon: 'kymtc',
|
21580
|
+
standard: 'EIP3091'
|
21581
|
+
}
|
21582
|
+
]
|
21583
|
+
},
|
21423
21584
|
{
|
21424
21585
|
name: 'LoopNetwork Mainnet',
|
21425
21586
|
chain: 'LoopNetwork',
|
@@ -22129,6 +22290,54 @@ const chainArray = [
|
|
22129
22290
|
],
|
22130
22291
|
parent: { type: 'L2', chain: 'eip155-248' }
|
22131
22292
|
},
|
22293
|
+
{
|
22294
|
+
name: 'BlockX Atlantis Testnet',
|
22295
|
+
chain: 'blockx',
|
22296
|
+
rpc: [ 'https://atlantis-web3.blockxnet.com' ],
|
22297
|
+
faucets: [ 'https://ping.blockxnet.com/blockx-atlantis-testnet/faucet' ],
|
22298
|
+
nativeCurrency: { name: 'BCX', symbol: 'BCX', decimals: 18 },
|
22299
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22300
|
+
infoURL: 'https://www.blockxnet.com/',
|
22301
|
+
shortName: 'tbcx',
|
22302
|
+
chainId: 19077,
|
22303
|
+
networkId: 19077,
|
22304
|
+
explorers: [
|
22305
|
+
{
|
22306
|
+
name: 'BlockX EVM Explorer (Blockscout)',
|
22307
|
+
url: 'https://testnet-explorer.blockxnet.com',
|
22308
|
+
standard: 'EIP3091'
|
22309
|
+
},
|
22310
|
+
{
|
22311
|
+
name: 'BlockX Cosmos Explorer (Ping)',
|
22312
|
+
url: 'https://ping.blockxnet.com/blockx-atlantis-testnet',
|
22313
|
+
standard: 'none'
|
22314
|
+
}
|
22315
|
+
]
|
22316
|
+
},
|
22317
|
+
{
|
22318
|
+
name: 'BlockX Mainnet',
|
22319
|
+
chain: 'blockx',
|
22320
|
+
rpc: [],
|
22321
|
+
faucets: [ 'https://ping.blockxnet.com/blockx/faucet' ],
|
22322
|
+
nativeCurrency: { name: 'BCXT', symbol: 'BCXT', decimals: 18 },
|
22323
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22324
|
+
infoURL: 'https://www.blockxnet.com/',
|
22325
|
+
shortName: 'bcxt',
|
22326
|
+
chainId: 19191,
|
22327
|
+
networkId: 19191,
|
22328
|
+
explorers: [
|
22329
|
+
{
|
22330
|
+
name: 'BlockX EVM Explorer (Blockscout)',
|
22331
|
+
url: 'https://explorer.blockxnet.com',
|
22332
|
+
standard: 'EIP3091'
|
22333
|
+
},
|
22334
|
+
{
|
22335
|
+
name: 'BlockX Cosmos Explorer (Ping)',
|
22336
|
+
url: 'https://ping.blockxnet.com/blockx',
|
22337
|
+
standard: 'none'
|
22338
|
+
}
|
22339
|
+
]
|
22340
|
+
},
|
22132
22341
|
{
|
22133
22342
|
name: 'Decentraconnect Social',
|
22134
22343
|
chain: 'DCSM',
|
@@ -22689,6 +22898,26 @@ const chainArray = [
|
|
22689
22898
|
}
|
22690
22899
|
]
|
22691
22900
|
},
|
22901
|
+
{
|
22902
|
+
name: 'KYMTC Testnet',
|
22903
|
+
chain: 'KYMTC',
|
22904
|
+
icon: 'kymtc',
|
22905
|
+
rpc: [ 'https://testnet-rpc.kymaticscan.online' ],
|
22906
|
+
faucets: [ 'https://faucet.kymaticscan.online' ],
|
22907
|
+
nativeCurrency: { name: 'KYMTC', symbol: 'KYMTC', decimals: 18 },
|
22908
|
+
infoURL: 'https://testnet-explorer.kymaticscan.online',
|
22909
|
+
shortName: 'tKYMTC',
|
22910
|
+
chainId: 24076,
|
22911
|
+
networkId: 24076,
|
22912
|
+
explorers: [
|
22913
|
+
{
|
22914
|
+
name: 'KYMTC Testnet Explorer',
|
22915
|
+
url: 'https://testnet-explorer.kymaticscan.online',
|
22916
|
+
icon: 'kymtc',
|
22917
|
+
standard: 'EIP3091'
|
22918
|
+
}
|
22919
|
+
]
|
22920
|
+
},
|
22692
22921
|
{
|
22693
22922
|
name: 'Webchain',
|
22694
22923
|
chain: 'WEB',
|
@@ -27447,7 +27676,7 @@ const chainArray = [
|
|
27447
27676
|
{
|
27448
27677
|
name: 'VeChain Testnet',
|
27449
27678
|
chain: 'VeChain',
|
27450
|
-
rpc: [],
|
27679
|
+
rpc: [ 'https://rpc-testnet.vechain.energy' ],
|
27451
27680
|
faucets: [ 'https://faucet.vecha.in' ],
|
27452
27681
|
nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 },
|
27453
27682
|
infoURL: 'https://vechain.org',
|
@@ -30008,6 +30237,25 @@ const chainArray = [
|
|
30008
30237
|
slip44: 1,
|
30009
30238
|
explorers: []
|
30010
30239
|
},
|
30240
|
+
{
|
30241
|
+
name: 'Gobbl Testnet',
|
30242
|
+
chain: 'Gobbl Testnet',
|
30243
|
+
rpc: [ 'https://rpc.gobbl.io' ],
|
30244
|
+
faucets: [ 'https://faucet.gobbl.io' ],
|
30245
|
+
nativeCurrency: { name: 'Gobbl Token', symbol: 'GOBBL', decimals: 18 },
|
30246
|
+
infoURL: 'https://www.gobbl.io/',
|
30247
|
+
shortName: 'gbl-testnet',
|
30248
|
+
chainId: 486487,
|
30249
|
+
networkId: 486487,
|
30250
|
+
icon: 'gobbl',
|
30251
|
+
explorers: [
|
30252
|
+
{
|
30253
|
+
name: 'Gobbl Testnet Explorer',
|
30254
|
+
url: 'https://explorer.gobbl.io',
|
30255
|
+
standard: 'EIP3091'
|
30256
|
+
}
|
30257
|
+
]
|
30258
|
+
},
|
30011
30259
|
{
|
30012
30260
|
name: 'Autonomys Testnet Nova Domain',
|
30013
30261
|
chain: 'TATC',
|
@@ -32634,6 +32882,25 @@ const chainArray = [
|
|
32634
32882
|
}
|
32635
32883
|
]
|
32636
32884
|
},
|
32885
|
+
{
|
32886
|
+
name: 'DBK Chain',
|
32887
|
+
chain: 'DBK Chain',
|
32888
|
+
rpc: [ 'https://rpc.mainnet.dbkchain.io' ],
|
32889
|
+
icon: 'dbkchain',
|
32890
|
+
faucets: [],
|
32891
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
32892
|
+
infoURL: 'https://docs.dbkchain.io',
|
32893
|
+
shortName: 'dbkchain',
|
32894
|
+
chainId: 20240603,
|
32895
|
+
networkId: 20240603,
|
32896
|
+
explorers: [
|
32897
|
+
{
|
32898
|
+
name: 'DBK Chain Explorer',
|
32899
|
+
url: 'https://scan.dbkchain.io',
|
32900
|
+
standard: 'EIP3091'
|
32901
|
+
}
|
32902
|
+
]
|
32903
|
+
},
|
32637
32904
|
{
|
32638
32905
|
name: 'Swan Proxima Testnet',
|
32639
32906
|
chain: 'SWAN',
|