eth-chainlist 0.0.388 → 0.0.390
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 +123 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.390 (2024-04-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.389 ([4a4154c](https://github.com/poowf/eth-chainlist/commit/4a4154cde98d462ecfae18b7507cb5f22d7d4260))
|
9
|
+
* update chain data ([2a71b98](https://github.com/poowf/eth-chainlist/commit/2a71b986602bf9f413cf21d83e1968756dc21252))
|
10
|
+
|
11
|
+
### 0.0.389 (2024-04-29)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.388 ([de18142](https://github.com/poowf/eth-chainlist/commit/de18142ee41f9d8568af8f8e8cfb6d0af695e561))
|
17
|
+
* update chain data ([2bae157](https://github.com/poowf/eth-chainlist/commit/2bae15736d150fd327c3ca1c6fa603b28ba7f981))
|
18
|
+
|
3
19
|
### 0.0.388 (2024-04-27)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3199,6 +3199,32 @@ const chainArray = [
|
|
3199
3199
|
chainId: 163,
|
3200
3200
|
networkId: 163
|
3201
3201
|
},
|
3202
|
+
{
|
3203
|
+
name: 'Omni Testnet (incubating)',
|
3204
|
+
chain: 'Omni',
|
3205
|
+
status: 'incubating',
|
3206
|
+
rpc: [],
|
3207
|
+
features: [ { name: 'EIP155' } ],
|
3208
|
+
faucets: [],
|
3209
|
+
nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
|
3210
|
+
infoURL: 'https://docs.omni.network',
|
3211
|
+
shortName: 'omni_testnet_164',
|
3212
|
+
chainId: 164,
|
3213
|
+
networkId: 164,
|
3214
|
+
slip44: 1,
|
3215
|
+
explorers: [
|
3216
|
+
{
|
3217
|
+
name: 'Omni X-Explorer',
|
3218
|
+
url: 'https://explorer.testnet.omni.network',
|
3219
|
+
standard: 'none'
|
3220
|
+
},
|
3221
|
+
{
|
3222
|
+
name: 'Omni EVM Explorer on Blockscout',
|
3223
|
+
url: 'https://omni-testnet.blockscout.com',
|
3224
|
+
standard: 'EIP3091'
|
3225
|
+
}
|
3226
|
+
]
|
3227
|
+
},
|
3202
3228
|
{
|
3203
3229
|
name: 'Omni Testnet',
|
3204
3230
|
chain: 'Omni',
|
@@ -16069,7 +16095,9 @@ const chainArray = [
|
|
16069
16095
|
chain: 'Cyber',
|
16070
16096
|
rpc: [
|
16071
16097
|
'https://cyber.alt.technology/',
|
16072
|
-
'wss://cyber-ws.alt.technology/'
|
16098
|
+
'wss://cyber-ws.alt.technology/',
|
16099
|
+
'https://rpc.cyber.co/',
|
16100
|
+
'wss://rpc.cyber.co/'
|
16073
16101
|
],
|
16074
16102
|
faucets: [],
|
16075
16103
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -16253,6 +16281,25 @@ const chainArray = [
|
|
16253
16281
|
}
|
16254
16282
|
]
|
16255
16283
|
},
|
16284
|
+
{
|
16285
|
+
name: 'GDCC TESTNET',
|
16286
|
+
chain: 'GDCC',
|
16287
|
+
icon: 'gdcc',
|
16288
|
+
rpc: [ 'https://testnet-rpc1.gdccscan.io' ],
|
16289
|
+
faucets: [],
|
16290
|
+
nativeCurrency: { name: 'GDCC', symbol: 'GDCC', decimals: 18 },
|
16291
|
+
infoURL: 'https://gdcchain.com',
|
16292
|
+
shortName: 'GDCC',
|
16293
|
+
chainId: 7775,
|
16294
|
+
networkId: 7775,
|
16295
|
+
explorers: [
|
16296
|
+
{
|
16297
|
+
name: 'GDCC',
|
16298
|
+
url: 'https://testnet.gdccscan.io',
|
16299
|
+
standard: 'none'
|
16300
|
+
}
|
16301
|
+
]
|
16302
|
+
},
|
16256
16303
|
{
|
16257
16304
|
name: 'Rise of the Warbots Testnet',
|
16258
16305
|
chain: 'nmactest',
|
@@ -23808,6 +23855,33 @@ const chainArray = [
|
|
23808
23855
|
}
|
23809
23856
|
]
|
23810
23857
|
},
|
23858
|
+
{
|
23859
|
+
name: 'Camp Testnet',
|
23860
|
+
chain: 'ETH',
|
23861
|
+
icon: 'camp',
|
23862
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23863
|
+
rpc: [ 'https://rpc-camp-network-4xje7wy105.t.conduit.xyz' ],
|
23864
|
+
faucets: [ 'https://www.campnetwork.xyz/faucet' ],
|
23865
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
23866
|
+
infoURL: 'https://campaign-1.gitbook.io/camp-technical-docså',
|
23867
|
+
shortName: 'camp',
|
23868
|
+
chainId: 90354,
|
23869
|
+
networkId: 90354,
|
23870
|
+
slip44: 1,
|
23871
|
+
explorers: [
|
23872
|
+
{
|
23873
|
+
name: 'blockscout',
|
23874
|
+
url: 'https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz',
|
23875
|
+
icon: 'blockscout',
|
23876
|
+
standard: 'EIP3091'
|
23877
|
+
}
|
23878
|
+
],
|
23879
|
+
parent: {
|
23880
|
+
type: 'L2',
|
23881
|
+
chain: 'eip155-1',
|
23882
|
+
bridges: [ { url: 'https://camp-testnet-bridge.vercel.app/' } ]
|
23883
|
+
}
|
23884
|
+
},
|
23811
23885
|
{
|
23812
23886
|
name: 'Nautilus Trition Chain',
|
23813
23887
|
title: 'Nautilus Trition Testnet',
|
@@ -27292,6 +27366,27 @@ const chainArray = [
|
|
27292
27366
|
}
|
27293
27367
|
]
|
27294
27368
|
},
|
27369
|
+
{
|
27370
|
+
name: 'AmChain',
|
27371
|
+
title: 'AMC',
|
27372
|
+
chain: 'AmChain',
|
27373
|
+
icon: 'amc',
|
27374
|
+
rpc: [ 'https://node1.amchain.net' ],
|
27375
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
27376
|
+
faucets: [],
|
27377
|
+
nativeCurrency: { name: 'AMC', symbol: 'AMC', decimals: 18 },
|
27378
|
+
infoURL: 'https://hewe.io/',
|
27379
|
+
shortName: 'AMC',
|
27380
|
+
chainId: 999999,
|
27381
|
+
networkId: 999999,
|
27382
|
+
explorers: [
|
27383
|
+
{
|
27384
|
+
name: 'AMCAmChain explorer',
|
27385
|
+
url: 'https://explorer.amchain.net',
|
27386
|
+
standard: 'none'
|
27387
|
+
}
|
27388
|
+
]
|
27389
|
+
},
|
27295
27390
|
{
|
27296
27391
|
name: 'Netmind Chain Testnet',
|
27297
27392
|
title: 'NetMind Chain Testnet',
|
@@ -28920,7 +29015,9 @@ const chainArray = [
|
|
28920
29015
|
chain: 'Cyber',
|
28921
29016
|
rpc: [
|
28922
29017
|
'https://cyber-testnet.alt.technology/',
|
28923
|
-
'wss://cyber-testnet.alt.technology/ws'
|
29018
|
+
'wss://cyber-testnet.alt.technology/ws',
|
29019
|
+
'https://rpc.testnet.cyber.co/',
|
29020
|
+
'wss://rpc.testnet.cyber.co/'
|
28924
29021
|
],
|
28925
29022
|
faucets: [],
|
28926
29023
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
@@ -28941,9 +29038,7 @@ const chainArray = [
|
|
28941
29038
|
type: 'L2',
|
28942
29039
|
chain: 'eip155-11155111',
|
28943
29040
|
bridges: [
|
28944
|
-
{
|
28945
|
-
url: 'https://op-bridge.alt.technology/deposit?id=111557560'
|
28946
|
-
}
|
29041
|
+
{ url: 'https://cyber-testnet-bridge.alt.technology/deposit' }
|
28947
29042
|
]
|
28948
29043
|
}
|
28949
29044
|
},
|
@@ -30288,6 +30383,29 @@ const chainArray = [
|
|
30288
30383
|
standard: 'none'
|
30289
30384
|
}
|
30290
30385
|
]
|
30386
|
+
},
|
30387
|
+
{
|
30388
|
+
name: 'DCHAIN Testnet',
|
30389
|
+
title: 'DCHAIN Testnet',
|
30390
|
+
chain: 'dchaint',
|
30391
|
+
icon: 'dchaint',
|
30392
|
+
rpc: [
|
30393
|
+
'https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io'
|
30394
|
+
],
|
30395
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
30396
|
+
faucets: [],
|
30397
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
30398
|
+
infoURL: 'https://www.dchain.foundation/',
|
30399
|
+
shortName: 'dchaint',
|
30400
|
+
chainId: 2713017997578000,
|
30401
|
+
networkId: 2713017997578000,
|
30402
|
+
explorers: [
|
30403
|
+
{
|
30404
|
+
name: 'dchaint scan',
|
30405
|
+
url: 'https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io',
|
30406
|
+
standard: 'EIP3091'
|
30407
|
+
}
|
30408
|
+
]
|
30291
30409
|
}
|
30292
30410
|
];
|
30293
30411
|
module.exports = chainArray;
|