eth-chainlist 0.0.476 → 0.0.478
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +153 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.478 (2024-08-29)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.477 ([9654c82](https://github.com/poowf/eth-chainlist/commit/9654c82741c785b3fa4b2cf640adac00ce372f0a))
|
9
|
+
* update chain data ([db8115f](https://github.com/poowf/eth-chainlist/commit/db8115fa5e71ddf002e1d5b2edd4b61db9a4fee2))
|
10
|
+
|
11
|
+
### 0.0.477 (2024-08-28)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.476 ([aefafab](https://github.com/poowf/eth-chainlist/commit/aefafab402855f42fd96e7873a6805ce6457684d))
|
17
|
+
* update chain data ([500aacf](https://github.com/poowf/eth-chainlist/commit/500aacff5daf50122dd75ef92ba893552df15630))
|
18
|
+
|
3
19
|
### 0.0.476 (2024-08-27)
|
4
20
|
|
5
21
|
|
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',
|
@@ -11838,6 +11856,31 @@ const chainArray = [
|
|
11838
11856
|
}
|
11839
11857
|
]
|
11840
11858
|
},
|
11859
|
+
{
|
11860
|
+
name: 'Minato',
|
11861
|
+
shortName: 'minato',
|
11862
|
+
title: 'Soneium testnet Minato',
|
11863
|
+
chain: 'ETH',
|
11864
|
+
icon: 'minato',
|
11865
|
+
rpc: [ 'https://rpc.minato.soneium.org' ],
|
11866
|
+
faucets: [],
|
11867
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
11868
|
+
infoURL: 'https://soneium.org',
|
11869
|
+
chainId: 1946,
|
11870
|
+
networkId: 1946,
|
11871
|
+
explorers: [
|
11872
|
+
{
|
11873
|
+
name: 'Blockscout Minato explorer',
|
11874
|
+
url: 'https://explorer-testnet.soneium.org',
|
11875
|
+
standard: 'EIP3091'
|
11876
|
+
}
|
11877
|
+
],
|
11878
|
+
parent: {
|
11879
|
+
type: 'L2',
|
11880
|
+
chain: 'eip155-1',
|
11881
|
+
bridges: [ { url: 'https://bridge.soneium.org/testnet' } ]
|
11882
|
+
}
|
11883
|
+
},
|
11841
11884
|
{
|
11842
11885
|
name: 'D-Chain Mainnet',
|
11843
11886
|
chain: 'D-Chain',
|
@@ -16101,6 +16144,25 @@ const chainArray = [
|
|
16101
16144
|
}
|
16102
16145
|
]
|
16103
16146
|
},
|
16147
|
+
{
|
16148
|
+
name: 'Laika Testnet',
|
16149
|
+
chain: 'LAIKA',
|
16150
|
+
rpc: [ 'https://testnetrpc1.laikachain.dog' ],
|
16151
|
+
faucets: [ 'https://laikachain.dog/faucets' ],
|
16152
|
+
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
16153
|
+
infoURL: 'https://laikachain.dog',
|
16154
|
+
shortName: 'laika-testnet',
|
16155
|
+
chainId: 4269,
|
16156
|
+
networkId: 4269,
|
16157
|
+
icon: 'laika',
|
16158
|
+
explorers: [
|
16159
|
+
{
|
16160
|
+
name: 'Laika Testnet Explorer',
|
16161
|
+
url: 'https://testnet.laikachain.dog',
|
16162
|
+
standard: 'EIP3091'
|
16163
|
+
}
|
16164
|
+
]
|
16165
|
+
},
|
16104
16166
|
{
|
16105
16167
|
name: 'Bobafuji Testnet',
|
16106
16168
|
chain: 'Bobafuji Testnet',
|
@@ -18044,6 +18106,25 @@ const chainArray = [
|
|
18044
18106
|
}
|
18045
18107
|
]
|
18046
18108
|
},
|
18109
|
+
{
|
18110
|
+
name: 'Laika Mainnet',
|
18111
|
+
chain: 'LAIKA',
|
18112
|
+
rpc: [ 'https://mainnetrpc.laikachain.dog' ],
|
18113
|
+
faucets: [ 'https://laikachain.dog/faucets' ],
|
18114
|
+
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
18115
|
+
infoURL: 'https://laikachain.dog',
|
18116
|
+
shortName: 'laika',
|
18117
|
+
chainId: 6942,
|
18118
|
+
networkId: 6942,
|
18119
|
+
icon: 'laika',
|
18120
|
+
explorers: [
|
18121
|
+
{
|
18122
|
+
name: 'Laika Mainnet Explorer',
|
18123
|
+
url: 'https://explorer.laikachain.dog',
|
18124
|
+
standard: 'EIP3091'
|
18125
|
+
}
|
18126
|
+
]
|
18127
|
+
},
|
18047
18128
|
{
|
18048
18129
|
name: 'Tomb Chain Mainnet',
|
18049
18130
|
chain: 'Tomb Chain',
|
@@ -29275,6 +29356,27 @@ const chainArray = [
|
|
29275
29356
|
}
|
29276
29357
|
]
|
29277
29358
|
},
|
29359
|
+
{
|
29360
|
+
name: 'Creditcoin Devnet',
|
29361
|
+
chain: 'CTC',
|
29362
|
+
icon: 'creditcoin',
|
29363
|
+
rpc: [ 'https://rpc.cc3-devnet.creditcoin.network' ],
|
29364
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29365
|
+
nativeCurrency: { name: 'Devnet CTC', symbol: 'devCTC', decimals: 18 },
|
29366
|
+
infoURL: 'https://creditcoin.org',
|
29367
|
+
shortName: 'ctcdev',
|
29368
|
+
chainId: 102032,
|
29369
|
+
networkId: 102032,
|
29370
|
+
faucets: [],
|
29371
|
+
explorers: [
|
29372
|
+
{
|
29373
|
+
name: 'blockscout',
|
29374
|
+
url: 'https://creditcoin-devnet.blockscout.com',
|
29375
|
+
icon: 'blockscout',
|
29376
|
+
standard: 'EIP3091'
|
29377
|
+
}
|
29378
|
+
]
|
29379
|
+
},
|
29278
29380
|
{
|
29279
29381
|
name: 'Crystaleum',
|
29280
29382
|
chain: 'crystal',
|
@@ -35967,8 +36069,11 @@ const chainArray = [
|
|
35967
36069
|
{
|
35968
36070
|
name: 'Sophon Testnet',
|
35969
36071
|
chain: 'Sophon Testnet',
|
35970
|
-
rpc: [
|
35971
|
-
|
36072
|
+
rpc: [
|
36073
|
+
'https://rpc.testnet.sophon.xyz',
|
36074
|
+
'wss://rpc.testnet.sophon.xyz/ws'
|
36075
|
+
],
|
36076
|
+
nativeCurrency: { name: 'Sophon', symbol: 'SOPH', decimals: 18 },
|
35972
36077
|
faucets: [],
|
35973
36078
|
infoURL: '',
|
35974
36079
|
shortName: 'sophon-testnet',
|
@@ -35976,7 +36081,7 @@ const chainArray = [
|
|
35976
36081
|
networkId: 531050104,
|
35977
36082
|
explorers: [
|
35978
36083
|
{
|
35979
|
-
name: 'Sophon
|
36084
|
+
name: 'Sophon Block Explorer',
|
35980
36085
|
url: 'https://explorer.testnet.sophon.xyz',
|
35981
36086
|
icon: 'sophon-testnet',
|
35982
36087
|
standard: 'none'
|
@@ -35985,7 +36090,7 @@ const chainArray = [
|
|
35985
36090
|
parent: {
|
35986
36091
|
type: 'L2',
|
35987
36092
|
chain: 'eip155-1',
|
35988
|
-
bridges: [ { url: 'https://
|
36093
|
+
bridges: [ { url: 'https://portal.testnet.sophon.xyz/bridge' } ]
|
35989
36094
|
}
|
35990
36095
|
},
|
35991
36096
|
{
|
@@ -36002,6 +36107,29 @@ const chainArray = [
|
|
36002
36107
|
status: 'incubating',
|
36003
36108
|
icon: 'degen'
|
36004
36109
|
},
|
36110
|
+
{
|
36111
|
+
name: 'Tron Mainnet',
|
36112
|
+
chain: 'TRON',
|
36113
|
+
rpc: [
|
36114
|
+
'https://rpc.ankr.com/tron_jsonrpc',
|
36115
|
+
'https://api.trongrid.io/jsonrpc'
|
36116
|
+
],
|
36117
|
+
faucets: [],
|
36118
|
+
nativeCurrency: { name: 'Tron', symbol: 'TRX', decimals: 6 },
|
36119
|
+
infoURL: 'https://tron.network',
|
36120
|
+
shortName: 'tron',
|
36121
|
+
chainId: 728126428,
|
36122
|
+
networkId: 728126428,
|
36123
|
+
icon: 'tron',
|
36124
|
+
explorers: [
|
36125
|
+
{
|
36126
|
+
name: 'tronscan',
|
36127
|
+
url: 'https://tronscan.org',
|
36128
|
+
icon: 'tron',
|
36129
|
+
standard: 'none'
|
36130
|
+
}
|
36131
|
+
]
|
36132
|
+
},
|
36005
36133
|
{
|
36006
36134
|
name: 'Ancient8',
|
36007
36135
|
chain: 'Ancient8',
|
@@ -36915,6 +37043,27 @@ const chainArray = [
|
|
36915
37043
|
}
|
36916
37044
|
]
|
36917
37045
|
},
|
37046
|
+
{
|
37047
|
+
name: 'Thanos Sepolia',
|
37048
|
+
chain: 'ETH',
|
37049
|
+
rpc: [
|
37050
|
+
'https://rpc.thanos-sepolia.tokamak.network',
|
37051
|
+
'wss://rpc.thanos-sepolia.tokamak.network'
|
37052
|
+
],
|
37053
|
+
faucets: [],
|
37054
|
+
nativeCurrency: { name: 'Tokamak Network', symbol: 'TON', decimals: 18 },
|
37055
|
+
infoURL: 'https://tokamak.network',
|
37056
|
+
shortName: 'thanos-sepolia',
|
37057
|
+
chainId: 111551119090,
|
37058
|
+
networkId: 111551119090,
|
37059
|
+
explorers: [
|
37060
|
+
{
|
37061
|
+
name: 'blockscout',
|
37062
|
+
url: 'https://explorer.thanos-sepolia.tokamak.network',
|
37063
|
+
standard: 'EIP3091'
|
37064
|
+
}
|
37065
|
+
]
|
37066
|
+
},
|
36918
37067
|
{
|
36919
37068
|
name: 'Fluence Stage',
|
36920
37069
|
chain: 'Fluence Stage (Testnet)',
|