eth-chainlist 0.0.429 → 0.0.431
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 +156 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.431 (2024-06-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.430 ([09a56b6](https://github.com/poowf/eth-chainlist/commit/09a56b6537a3bbfc050e4489a52b1e408bd559b2))
|
9
|
+
* update chain data ([9cf0112](https://github.com/poowf/eth-chainlist/commit/9cf01129a31f1fbafddea8bab6408752730c4a0b))
|
10
|
+
|
11
|
+
### 0.0.430 (2024-06-14)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.429 ([1530a0a](https://github.com/poowf/eth-chainlist/commit/1530a0adbaedfc429874a9ae3b9f5575bff2b982))
|
17
|
+
* update chain data ([1ccdec3](https://github.com/poowf/eth-chainlist/commit/1ccdec3e52f6c8264a2d0196b16c5b8b4c61002c))
|
18
|
+
|
3
19
|
### 0.0.429 (2024-06-12)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -6761,6 +6761,25 @@ const chainArray = [
|
|
6761
6761
|
}
|
6762
6762
|
]
|
6763
6763
|
},
|
6764
|
+
{
|
6765
|
+
name: 'Darwinia Koi Testnet',
|
6766
|
+
chain: 'Darwinia Koi',
|
6767
|
+
rpc: [ 'https://koi-rpc.darwinia.network' ],
|
6768
|
+
faucets: [],
|
6769
|
+
nativeCurrency: { name: 'Koi Network Native Token', symbol: 'KRING', decimals: 18 },
|
6770
|
+
infoURL: 'https://darwinia.network/',
|
6771
|
+
shortName: 'darwinia-koi',
|
6772
|
+
chainId: 701,
|
6773
|
+
networkId: 701,
|
6774
|
+
slip44: 1,
|
6775
|
+
explorers: [
|
6776
|
+
{
|
6777
|
+
name: 'blockscout',
|
6778
|
+
url: 'https://koi-scan.darwinia.network',
|
6779
|
+
standard: 'EIP3091'
|
6780
|
+
}
|
6781
|
+
]
|
6782
|
+
},
|
6764
6783
|
{
|
6765
6784
|
name: 'BlockChain Station Mainnet',
|
6766
6785
|
chain: 'BCS',
|
@@ -9797,6 +9816,28 @@ const chainArray = [
|
|
9797
9816
|
}
|
9798
9817
|
]
|
9799
9818
|
},
|
9819
|
+
{
|
9820
|
+
name: 'Sei Testnet',
|
9821
|
+
chain: 'Sei',
|
9822
|
+
rpc: [
|
9823
|
+
'https://evm-rpc-testnet.sei-apis.com',
|
9824
|
+
'wss://evm-ws-testnet.sei-apis.com'
|
9825
|
+
],
|
9826
|
+
faucets: [ 'https://atlantic-2.app.sei.io/faucet' ],
|
9827
|
+
nativeCurrency: { name: 'Sei', symbol: 'SEI', decimals: 18 },
|
9828
|
+
infoURL: 'https://www.sei.io',
|
9829
|
+
shortName: 'sei-testnet',
|
9830
|
+
chainId: 1328,
|
9831
|
+
networkId: 1328,
|
9832
|
+
icon: 'sei',
|
9833
|
+
explorers: [
|
9834
|
+
{
|
9835
|
+
name: 'Seitrace',
|
9836
|
+
url: 'https://seitrace.com',
|
9837
|
+
standard: 'EIP3091'
|
9838
|
+
}
|
9839
|
+
]
|
9840
|
+
},
|
9800
9841
|
{
|
9801
9842
|
name: 'Sei Network',
|
9802
9843
|
chain: 'Sei',
|
@@ -14796,6 +14837,27 @@ const chainArray = [
|
|
14796
14837
|
}
|
14797
14838
|
]
|
14798
14839
|
},
|
14840
|
+
{
|
14841
|
+
name: 'Bahamut ocean',
|
14842
|
+
title: 'Bahamut ocean',
|
14843
|
+
chain: 'Bahamut',
|
14844
|
+
icon: 'bahamut',
|
14845
|
+
rpc: [ 'https://rpc1.ocean.bahamutchain.com' ],
|
14846
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
14847
|
+
faucets: [],
|
14848
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
14849
|
+
shortName: 'ocean',
|
14850
|
+
infoURL: 'https://bahamut.io',
|
14851
|
+
chainId: 4058,
|
14852
|
+
networkId: 4058,
|
14853
|
+
explorers: [
|
14854
|
+
{
|
14855
|
+
name: 'blockscout',
|
14856
|
+
url: 'https://ocean.ftnscan.com',
|
14857
|
+
standard: 'none'
|
14858
|
+
}
|
14859
|
+
]
|
14860
|
+
},
|
14799
14861
|
{
|
14800
14862
|
name: 'Nahmii 3 Mainnet',
|
14801
14863
|
chain: 'Nahmii',
|
@@ -16798,6 +16860,19 @@ const chainArray = [
|
|
16798
16860
|
}
|
16799
16861
|
]
|
16800
16862
|
},
|
16863
|
+
{
|
16864
|
+
name: 'OX Chain',
|
16865
|
+
title: 'OX Chain',
|
16866
|
+
chain: 'OX',
|
16867
|
+
rpc: [ 'https://rpc.oxscan.io' ],
|
16868
|
+
faucets: [],
|
16869
|
+
nativeCurrency: { name: 'OX', symbol: 'OX', decimals: 18 },
|
16870
|
+
infoURL: 'https://ox.fun/chain',
|
16871
|
+
shortName: 'ox-chain',
|
16872
|
+
chainId: 6699,
|
16873
|
+
networkId: 6699,
|
16874
|
+
status: 'incubating'
|
16875
|
+
},
|
16801
16876
|
{
|
16802
16877
|
name: 'PAXB Mainnet',
|
16803
16878
|
chain: 'PAXB',
|
@@ -20784,6 +20859,24 @@ const chainArray = [
|
|
20784
20859
|
}
|
20785
20860
|
]
|
20786
20861
|
},
|
20862
|
+
{
|
20863
|
+
name: 'Vana Satori Testnet',
|
20864
|
+
chain: 'Satori',
|
20865
|
+
rpc: [ 'http://rpc.satori.vana.org' ],
|
20866
|
+
faucets: [ 'https://faucet.vana.org' ],
|
20867
|
+
nativeCurrency: { name: 'DAT', symbol: 'DAT', decimals: 18 },
|
20868
|
+
infoURL: 'https://satori.vana.org',
|
20869
|
+
shortName: 'satori',
|
20870
|
+
chainId: 14801,
|
20871
|
+
networkId: 14801,
|
20872
|
+
explorers: [
|
20873
|
+
{
|
20874
|
+
name: 'satoriscan',
|
20875
|
+
url: 'https://satori.vanascan.io',
|
20876
|
+
standard: 'EIP3091'
|
20877
|
+
}
|
20878
|
+
]
|
20879
|
+
},
|
20787
20880
|
{
|
20788
20881
|
name: 'Humanode Testnet 5 Israfel',
|
20789
20882
|
chain: 'Humanode Testnet 5',
|
@@ -24355,7 +24448,7 @@ const chainArray = [
|
|
24355
24448
|
]
|
24356
24449
|
},
|
24357
24450
|
{
|
24358
|
-
name: 'COINSEC',
|
24451
|
+
name: 'COINSEC Network',
|
24359
24452
|
title: 'COINSEC Network',
|
24360
24453
|
chain: 'coinsecnetwork',
|
24361
24454
|
icon: 'coinsec',
|
@@ -25385,7 +25478,7 @@ const chainArray = [
|
|
25385
25478
|
icon: 'bora',
|
25386
25479
|
rpc: [ 'https://public-node.api.boraportal.com/bora/mainnet' ],
|
25387
25480
|
faucets: [],
|
25388
|
-
nativeCurrency: { name: '
|
25481
|
+
nativeCurrency: { name: 'BORA', symbol: 'BORA', decimals: 18 },
|
25389
25482
|
infoURL: 'https://www.boraportal.com',
|
25390
25483
|
shortName: 'BORAchain',
|
25391
25484
|
chainId: 77001,
|
@@ -29373,6 +29466,27 @@ const chainArray = [
|
|
29373
29466
|
}
|
29374
29467
|
]
|
29375
29468
|
},
|
29469
|
+
{
|
29470
|
+
name: 'Pentagon Testnet',
|
29471
|
+
chain: 'Pentagon',
|
29472
|
+
rpc: [ 'https://rpc-testnet.pentagon.games' ],
|
29473
|
+
faucets: [ 'https://bridge-testnet.pentagon.games' ],
|
29474
|
+
nativeCurrency: { name: 'Pentagon', symbol: 'PEN', decimals: 18 },
|
29475
|
+
icon: 'pentagon',
|
29476
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29477
|
+
infoURL: 'https://pentagon.games',
|
29478
|
+
shortName: 'pentagon-testnet',
|
29479
|
+
chainId: 555555,
|
29480
|
+
networkId: 555555,
|
29481
|
+
explorers: [
|
29482
|
+
{
|
29483
|
+
name: 'Pentagon Testnet Explorer',
|
29484
|
+
url: 'https://explorer-testnet.pentagon.games',
|
29485
|
+
icon: 'pentagon',
|
29486
|
+
standard: 'EIP3091'
|
29487
|
+
}
|
29488
|
+
]
|
29489
|
+
},
|
29376
29490
|
{
|
29377
29491
|
name: 'Eclipse Testnet',
|
29378
29492
|
chain: 'ECLIPSE',
|
@@ -29485,6 +29599,26 @@ const chainArray = [
|
|
29485
29599
|
}
|
29486
29600
|
]
|
29487
29601
|
},
|
29602
|
+
{
|
29603
|
+
name: 'Open Campus Codex',
|
29604
|
+
chain: 'Open Campus Codex',
|
29605
|
+
icon: 'open-campus-codex',
|
29606
|
+
rpc: [ 'https://rpc.open-campus-codex.gelato.digital' ],
|
29607
|
+
faucets: [],
|
29608
|
+
nativeCurrency: { name: 'EDU', symbol: 'EDU', decimals: 18 },
|
29609
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/open-campus-codex',
|
29610
|
+
shortName: 'open-campus-codex',
|
29611
|
+
chainId: 656476,
|
29612
|
+
networkId: 656476,
|
29613
|
+
explorers: [
|
29614
|
+
{
|
29615
|
+
name: 'Open Campus Codex',
|
29616
|
+
url: 'https://opencampus-codex.blockscout.com',
|
29617
|
+
icon: 'open-campus-codex',
|
29618
|
+
standard: 'none'
|
29619
|
+
}
|
29620
|
+
]
|
29621
|
+
},
|
29488
29622
|
{
|
29489
29623
|
name: 'Xai Mainnet',
|
29490
29624
|
chainId: 660279,
|
@@ -30285,6 +30419,26 @@ const chainArray = [
|
|
30285
30419
|
}
|
30286
30420
|
]
|
30287
30421
|
},
|
30422
|
+
{
|
30423
|
+
name: 'Supernet Testnet',
|
30424
|
+
title: 'Supernet Testnet',
|
30425
|
+
chain: 'Supernet Testnet',
|
30426
|
+
rpc: [ 'https://testnet-rpc.supernet.chaingames.io/' ],
|
30427
|
+
faucets: [ 'https://faucet.chaingames.io' ],
|
30428
|
+
nativeCurrency: { name: 'CHAIN', symbol: 'CHAIN', decimals: 18 },
|
30429
|
+
infoURL: '',
|
30430
|
+
shortName: 'supernetchain',
|
30431
|
+
chainId: 998899,
|
30432
|
+
networkId: 998899,
|
30433
|
+
slip44: 1,
|
30434
|
+
explorers: [
|
30435
|
+
{
|
30436
|
+
name: 'supernet-testnet-explorer',
|
30437
|
+
url: 'https://testnet-explorer.supernet.chaingames.io',
|
30438
|
+
standard: 'EIP3091'
|
30439
|
+
}
|
30440
|
+
]
|
30441
|
+
},
|
30288
30442
|
{
|
30289
30443
|
name: 'AmChain',
|
30290
30444
|
title: 'AMC',
|