eth-chainlist 0.0.476 → 0.0.477
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 +105 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.477 (2024-08-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.476 ([aefafab](https://github.com/poowf/eth-chainlist/commit/aefafab402855f42fd96e7873a6805ce6457684d))
|
|
9
|
+
* update chain data ([500aacf](https://github.com/poowf/eth-chainlist/commit/500aacff5daf50122dd75ef92ba893552df15630))
|
|
10
|
+
|
|
3
11
|
### 0.0.476 (2024-08-27)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -10882,6 +10882,24 @@ const chainArray = [
|
|
|
10882
10882
|
}
|
|
10883
10883
|
]
|
|
10884
10884
|
},
|
|
10885
|
+
{
|
|
10886
|
+
name: 'Story Testnet',
|
|
10887
|
+
chain: 'Story Testnet',
|
|
10888
|
+
rpc: [ 'https://testnet.storyrpc.io' ],
|
|
10889
|
+
faucets: [ 'https://faucet.story.foundation' ],
|
|
10890
|
+
chainId: 1513,
|
|
10891
|
+
networkId: 1513,
|
|
10892
|
+
nativeCurrency: { name: 'IP', symbol: 'IP', decimals: 18 },
|
|
10893
|
+
infoURL: 'https://www.story.foundation',
|
|
10894
|
+
shortName: 'Story',
|
|
10895
|
+
explorers: [
|
|
10896
|
+
{
|
|
10897
|
+
name: 'Story Iliad Network explorer',
|
|
10898
|
+
url: 'https://testnet.storyscan.xyz',
|
|
10899
|
+
standard: 'EIP3091'
|
|
10900
|
+
}
|
|
10901
|
+
]
|
|
10902
|
+
},
|
|
10885
10903
|
{
|
|
10886
10904
|
name: 'Beagle Messaging Chain',
|
|
10887
10905
|
chain: 'BMC',
|
|
@@ -16101,6 +16119,25 @@ const chainArray = [
|
|
|
16101
16119
|
}
|
|
16102
16120
|
]
|
|
16103
16121
|
},
|
|
16122
|
+
{
|
|
16123
|
+
name: 'Laika Testnet',
|
|
16124
|
+
chain: 'LAIKA',
|
|
16125
|
+
rpc: [ 'https://testnetrpc1.laikachain.dog' ],
|
|
16126
|
+
faucets: [ 'https://laikachain.dog/faucets' ],
|
|
16127
|
+
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
|
16128
|
+
infoURL: 'https://laikachain.dog',
|
|
16129
|
+
shortName: 'laika-testnet',
|
|
16130
|
+
chainId: 4269,
|
|
16131
|
+
networkId: 4269,
|
|
16132
|
+
icon: 'laika',
|
|
16133
|
+
explorers: [
|
|
16134
|
+
{
|
|
16135
|
+
name: 'Laika Testnet Explorer',
|
|
16136
|
+
url: 'https://testnet.laikachain.dog',
|
|
16137
|
+
standard: 'EIP3091'
|
|
16138
|
+
}
|
|
16139
|
+
]
|
|
16140
|
+
},
|
|
16104
16141
|
{
|
|
16105
16142
|
name: 'Bobafuji Testnet',
|
|
16106
16143
|
chain: 'Bobafuji Testnet',
|
|
@@ -18044,6 +18081,25 @@ const chainArray = [
|
|
|
18044
18081
|
}
|
|
18045
18082
|
]
|
|
18046
18083
|
},
|
|
18084
|
+
{
|
|
18085
|
+
name: 'Laika Mainnet',
|
|
18086
|
+
chain: 'LAIKA',
|
|
18087
|
+
rpc: [ 'https://mainnetrpc.laikachain.dog' ],
|
|
18088
|
+
faucets: [ 'https://laikachain.dog/faucets' ],
|
|
18089
|
+
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
|
18090
|
+
infoURL: 'https://laikachain.dog',
|
|
18091
|
+
shortName: 'laika',
|
|
18092
|
+
chainId: 6942,
|
|
18093
|
+
networkId: 6942,
|
|
18094
|
+
icon: 'laika',
|
|
18095
|
+
explorers: [
|
|
18096
|
+
{
|
|
18097
|
+
name: 'Laika Mainnet Explorer',
|
|
18098
|
+
url: 'https://explorer.laikachain.dog',
|
|
18099
|
+
standard: 'EIP3091'
|
|
18100
|
+
}
|
|
18101
|
+
]
|
|
18102
|
+
},
|
|
18047
18103
|
{
|
|
18048
18104
|
name: 'Tomb Chain Mainnet',
|
|
18049
18105
|
chain: 'Tomb Chain',
|
|
@@ -29275,6 +29331,27 @@ const chainArray = [
|
|
|
29275
29331
|
}
|
|
29276
29332
|
]
|
|
29277
29333
|
},
|
|
29334
|
+
{
|
|
29335
|
+
name: 'Creditcoin Devnet',
|
|
29336
|
+
chain: 'CTC',
|
|
29337
|
+
icon: 'creditcoin',
|
|
29338
|
+
rpc: [ 'https://rpc.cc3-devnet.creditcoin.network' ],
|
|
29339
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
29340
|
+
nativeCurrency: { name: 'Devnet CTC', symbol: 'devCTC', decimals: 18 },
|
|
29341
|
+
infoURL: 'https://creditcoin.org',
|
|
29342
|
+
shortName: 'ctcdev',
|
|
29343
|
+
chainId: 102032,
|
|
29344
|
+
networkId: 102032,
|
|
29345
|
+
faucets: [],
|
|
29346
|
+
explorers: [
|
|
29347
|
+
{
|
|
29348
|
+
name: 'blockscout',
|
|
29349
|
+
url: 'https://creditcoin-devnet.blockscout.com',
|
|
29350
|
+
icon: 'blockscout',
|
|
29351
|
+
standard: 'EIP3091'
|
|
29352
|
+
}
|
|
29353
|
+
]
|
|
29354
|
+
},
|
|
29278
29355
|
{
|
|
29279
29356
|
name: 'Crystaleum',
|
|
29280
29357
|
chain: 'crystal',
|
|
@@ -35967,8 +36044,11 @@ const chainArray = [
|
|
|
35967
36044
|
{
|
|
35968
36045
|
name: 'Sophon Testnet',
|
|
35969
36046
|
chain: 'Sophon Testnet',
|
|
35970
|
-
rpc: [
|
|
35971
|
-
|
|
36047
|
+
rpc: [
|
|
36048
|
+
'https://rpc.testnet.sophon.xyz',
|
|
36049
|
+
'wss://rpc.testnet.sophon.xyz/ws'
|
|
36050
|
+
],
|
|
36051
|
+
nativeCurrency: { name: 'Sophon', symbol: 'SOPH', decimals: 18 },
|
|
35972
36052
|
faucets: [],
|
|
35973
36053
|
infoURL: '',
|
|
35974
36054
|
shortName: 'sophon-testnet',
|
|
@@ -35976,7 +36056,7 @@ const chainArray = [
|
|
|
35976
36056
|
networkId: 531050104,
|
|
35977
36057
|
explorers: [
|
|
35978
36058
|
{
|
|
35979
|
-
name: 'Sophon
|
|
36059
|
+
name: 'Sophon Block Explorer',
|
|
35980
36060
|
url: 'https://explorer.testnet.sophon.xyz',
|
|
35981
36061
|
icon: 'sophon-testnet',
|
|
35982
36062
|
standard: 'none'
|
|
@@ -35985,7 +36065,7 @@ const chainArray = [
|
|
|
35985
36065
|
parent: {
|
|
35986
36066
|
type: 'L2',
|
|
35987
36067
|
chain: 'eip155-1',
|
|
35988
|
-
bridges: [ { url: 'https://
|
|
36068
|
+
bridges: [ { url: 'https://portal.testnet.sophon.xyz/bridge' } ]
|
|
35989
36069
|
}
|
|
35990
36070
|
},
|
|
35991
36071
|
{
|
|
@@ -36915,6 +36995,27 @@ const chainArray = [
|
|
|
36915
36995
|
}
|
|
36916
36996
|
]
|
|
36917
36997
|
},
|
|
36998
|
+
{
|
|
36999
|
+
name: 'Thanos Sepolia',
|
|
37000
|
+
chain: 'ETH',
|
|
37001
|
+
rpc: [
|
|
37002
|
+
'https://rpc.thanos-sepolia.tokamak.network',
|
|
37003
|
+
'wss://rpc.thanos-sepolia.tokamak.network'
|
|
37004
|
+
],
|
|
37005
|
+
faucets: [],
|
|
37006
|
+
nativeCurrency: { name: 'Tokamak Network', symbol: 'TON', decimals: 18 },
|
|
37007
|
+
infoURL: 'https://tokamak.network',
|
|
37008
|
+
shortName: 'thanos-sepolia',
|
|
37009
|
+
chainId: 111551119090,
|
|
37010
|
+
networkId: 111551119090,
|
|
37011
|
+
explorers: [
|
|
37012
|
+
{
|
|
37013
|
+
name: 'blockscout',
|
|
37014
|
+
url: 'https://explorer.thanos-sepolia.tokamak.network',
|
|
37015
|
+
standard: 'EIP3091'
|
|
37016
|
+
}
|
|
37017
|
+
]
|
|
37018
|
+
},
|
|
36918
37019
|
{
|
|
36919
37020
|
name: 'Fluence Stage',
|
|
36920
37021
|
chain: 'Fluence Stage (Testnet)',
|