eth-chainlist 0.0.25 → 0.0.27
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 +158 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.27 (2022-12-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.26 ([62b072c](https://github.com/poowf/eth-chainlist/commit/62b072c3b4d0640f02d7f6b611178321a43a8b1c))
|
|
9
|
+
* update chain data ([547cf54](https://github.com/poowf/eth-chainlist/commit/547cf540a4a45f84c9c6f6152095ad8073ce63e5))
|
|
10
|
+
|
|
11
|
+
### 0.0.26 (2022-12-05)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.25 ([7cfecde](https://github.com/poowf/eth-chainlist/commit/7cfecdefee8aa98cbe94073710430fa123617c3d))
|
|
17
|
+
* update chain data ([c8ccc8d](https://github.com/poowf/eth-chainlist/commit/c8ccc8d59088a84d1ab9c45ed099bad589a69b72))
|
|
18
|
+
|
|
3
19
|
### 0.0.25 (2022-12-03)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2395,6 +2395,27 @@ const chainArray = [
|
|
|
2395
2395
|
}
|
|
2396
2396
|
]
|
|
2397
2397
|
},
|
|
2398
|
+
{
|
|
2399
|
+
name: 'SiriusNet V2',
|
|
2400
|
+
chain: 'SIN2',
|
|
2401
|
+
faucets: [],
|
|
2402
|
+
rpc: [
|
|
2403
|
+
'https://u0zpw2zdzz:uf4y-ZGiQP_CJJgY6Vea2mSaeXOa1vFvfQ1PZhaDQ9M@u0iclv2dgh-u0jlczjhef-rpc.us0-aws.kaleido.io/'
|
|
2404
|
+
],
|
|
2405
|
+
icon: 'siriusnet',
|
|
2406
|
+
nativeCurrency: { name: 'MCD', symbol: 'MCD', decimals: 18 },
|
|
2407
|
+
infoURL: 'https://siriusnet.io',
|
|
2408
|
+
shortName: 'SIN2',
|
|
2409
|
+
chainId: 217,
|
|
2410
|
+
networkId: 217,
|
|
2411
|
+
explorers: [
|
|
2412
|
+
{
|
|
2413
|
+
name: 'siriusnet explorer',
|
|
2414
|
+
url: 'http://rpc.siriusnet.io',
|
|
2415
|
+
standard: 'none'
|
|
2416
|
+
}
|
|
2417
|
+
]
|
|
2418
|
+
},
|
|
2398
2419
|
{
|
|
2399
2420
|
name: 'SoterOne Mainnet old',
|
|
2400
2421
|
chain: 'SOTER',
|
|
@@ -3711,6 +3732,17 @@ const chainArray = [
|
|
|
3711
3732
|
faucets: [ 'https://faucet.v3.testnet.pulsechain.com/' ],
|
|
3712
3733
|
nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 }
|
|
3713
3734
|
},
|
|
3735
|
+
{
|
|
3736
|
+
name: 'muNode Testnet',
|
|
3737
|
+
chain: 'munode',
|
|
3738
|
+
rpc: [],
|
|
3739
|
+
faucets: [],
|
|
3740
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
3741
|
+
infoURL: 'https://munode.dev/',
|
|
3742
|
+
shortName: 'munode',
|
|
3743
|
+
chainId: 956,
|
|
3744
|
+
networkId: 956
|
|
3745
|
+
},
|
|
3714
3746
|
{
|
|
3715
3747
|
name: 'CCN',
|
|
3716
3748
|
title: 'ComputeCoin Main Network',
|
|
@@ -4351,6 +4383,24 @@ const chainArray = [
|
|
|
4351
4383
|
}
|
|
4352
4384
|
]
|
|
4353
4385
|
},
|
|
4386
|
+
{
|
|
4387
|
+
name: 'CIC Chain Testnet',
|
|
4388
|
+
chain: 'CICT',
|
|
4389
|
+
rpc: [ 'https://testapi.cicscan.com' ],
|
|
4390
|
+
faucets: [ 'https://cicfaucet.com' ],
|
|
4391
|
+
nativeCurrency: { name: 'Crazy Internet Coin', symbol: 'CICT', decimals: 18 },
|
|
4392
|
+
infoURL: 'https://www.cicchain.net',
|
|
4393
|
+
shortName: 'CICT',
|
|
4394
|
+
chainId: 1252,
|
|
4395
|
+
networkId: 1252,
|
|
4396
|
+
explorers: [
|
|
4397
|
+
{
|
|
4398
|
+
name: 'CICscan',
|
|
4399
|
+
url: 'https://testnet.cicscan.com',
|
|
4400
|
+
standard: 'EIP3091'
|
|
4401
|
+
}
|
|
4402
|
+
]
|
|
4403
|
+
},
|
|
4354
4404
|
{
|
|
4355
4405
|
name: 'HALO Mainnet',
|
|
4356
4406
|
chain: 'HALO',
|
|
@@ -4590,6 +4640,24 @@ const chainArray = [
|
|
|
4590
4640
|
chainId: 1337,
|
|
4591
4641
|
networkId: 1337
|
|
4592
4642
|
},
|
|
4643
|
+
{
|
|
4644
|
+
name: 'CIC Chain Mainnet',
|
|
4645
|
+
chain: 'CIC',
|
|
4646
|
+
rpc: [ 'https://xapi.cicscan.com' ],
|
|
4647
|
+
faucets: [],
|
|
4648
|
+
nativeCurrency: { name: 'Crazy Internet Coin', symbol: 'CIC', decimals: 18 },
|
|
4649
|
+
infoURL: 'https://www.cicchain.net',
|
|
4650
|
+
shortName: 'CIC',
|
|
4651
|
+
chainId: 1353,
|
|
4652
|
+
networkId: 1353,
|
|
4653
|
+
explorers: [
|
|
4654
|
+
{
|
|
4655
|
+
name: 'CICscan',
|
|
4656
|
+
url: 'https://cicscan.com',
|
|
4657
|
+
standard: 'EIP3091'
|
|
4658
|
+
}
|
|
4659
|
+
]
|
|
4660
|
+
},
|
|
4593
4661
|
{
|
|
4594
4662
|
name: 'Polygon zkEVM Testnet',
|
|
4595
4663
|
title: 'Polygon zkEVM Testnet',
|
|
@@ -6208,23 +6276,18 @@ const chainArray = [
|
|
|
6208
6276
|
]
|
|
6209
6277
|
},
|
|
6210
6278
|
{
|
|
6211
|
-
name: '
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6279
|
+
name: 'Ganache',
|
|
6280
|
+
title: 'Ganache GUI Ethereum Testnet',
|
|
6281
|
+
chain: 'ETH',
|
|
6282
|
+
icon: 'ganache',
|
|
6283
|
+
rpc: [ 'https://127.0.0.1:7545' ],
|
|
6215
6284
|
faucets: [],
|
|
6216
|
-
nativeCurrency: { name: '
|
|
6217
|
-
infoURL: 'https://
|
|
6218
|
-
shortName: '
|
|
6285
|
+
nativeCurrency: { name: 'Ganache Test Ether', symbol: 'ETH', decimals: 18 },
|
|
6286
|
+
infoURL: 'https://trufflesuite.com/ganache/',
|
|
6287
|
+
shortName: 'ggui',
|
|
6219
6288
|
chainId: 5777,
|
|
6220
6289
|
networkId: 5777,
|
|
6221
|
-
explorers: [
|
|
6222
|
-
{
|
|
6223
|
-
name: 'swarmexplorer',
|
|
6224
|
-
url: 'https://explorer.digestgroup.ltd',
|
|
6225
|
-
standard: 'EIP3091'
|
|
6226
|
-
}
|
|
6227
|
-
]
|
|
6290
|
+
explorers: []
|
|
6228
6291
|
},
|
|
6229
6292
|
{
|
|
6230
6293
|
name: 'Ontology Testnet',
|
|
@@ -7696,6 +7759,41 @@ const chainArray = [
|
|
|
7696
7759
|
}
|
|
7697
7760
|
]
|
|
7698
7761
|
},
|
|
7762
|
+
{
|
|
7763
|
+
name: 'Oasis Sapphire',
|
|
7764
|
+
chain: 'Sapphire',
|
|
7765
|
+
icon: 'oasis',
|
|
7766
|
+
rpc: [ 'https://sapphire.oasis.dev', 'wss://sapphire.oasis.dev/ws' ],
|
|
7767
|
+
faucets: [],
|
|
7768
|
+
nativeCurrency: { name: 'Sapphire Rose', symbol: 'ROSE', decimals: 18 },
|
|
7769
|
+
infoURL: 'https://docs.oasis.io/dapp/sapphire',
|
|
7770
|
+
shortName: 'sapphire',
|
|
7771
|
+
chainId: 23294,
|
|
7772
|
+
networkId: 23294,
|
|
7773
|
+
status: 'incubating'
|
|
7774
|
+
},
|
|
7775
|
+
{
|
|
7776
|
+
name: 'Oasis Sapphire Testnet',
|
|
7777
|
+
chain: 'Sapphire',
|
|
7778
|
+
icon: 'oasis',
|
|
7779
|
+
rpc: [
|
|
7780
|
+
'https://testnet.sapphire.oasis.dev',
|
|
7781
|
+
'wss://testnet.sapphire.oasis.dev/ws'
|
|
7782
|
+
],
|
|
7783
|
+
faucets: [],
|
|
7784
|
+
nativeCurrency: { name: 'Sapphire Test Rose', symbol: 'TEST', decimals: 18 },
|
|
7785
|
+
infoURL: 'https://docs.oasis.io/dapp/sapphire',
|
|
7786
|
+
shortName: 'sapphire-testnet',
|
|
7787
|
+
chainId: 23295,
|
|
7788
|
+
networkId: 23295,
|
|
7789
|
+
explorers: [
|
|
7790
|
+
{
|
|
7791
|
+
name: 'Oasis Sapphire Testnet Explorer',
|
|
7792
|
+
url: 'https://testnet.explorer.sapphire.oasis.dev',
|
|
7793
|
+
standard: 'EIP3091'
|
|
7794
|
+
}
|
|
7795
|
+
]
|
|
7796
|
+
},
|
|
7699
7797
|
{
|
|
7700
7798
|
name: 'Webchain',
|
|
7701
7799
|
chain: 'WEB',
|
|
@@ -7795,6 +7893,45 @@ const chainArray = [
|
|
|
7795
7893
|
networkId: 1,
|
|
7796
7894
|
slip44: 31102
|
|
7797
7895
|
},
|
|
7896
|
+
{
|
|
7897
|
+
name: 'CloudTx Mainnet',
|
|
7898
|
+
chain: 'CLD',
|
|
7899
|
+
icon: 'cloudtx',
|
|
7900
|
+
rpc: [ 'https://mainnet-rpc.cloudtx.finance' ],
|
|
7901
|
+
faucets: [],
|
|
7902
|
+
nativeCurrency: { name: 'CloudTx', symbol: 'CLD', decimals: 9 },
|
|
7903
|
+
infoURL: 'https://cloudtx.finance',
|
|
7904
|
+
shortName: 'CLDTX',
|
|
7905
|
+
chainId: 31223,
|
|
7906
|
+
networkId: 31223,
|
|
7907
|
+
explorers: [
|
|
7908
|
+
{
|
|
7909
|
+
name: 'cloudtxscan',
|
|
7910
|
+
url: 'https://scan.cloudtx.finance',
|
|
7911
|
+
standard: 'EIP3091'
|
|
7912
|
+
}
|
|
7913
|
+
]
|
|
7914
|
+
},
|
|
7915
|
+
{
|
|
7916
|
+
name: 'CloudTx Testnet',
|
|
7917
|
+
chain: 'CloudTx',
|
|
7918
|
+
rpc: [ 'https://testnet-rpc.cloudtx.finance' ],
|
|
7919
|
+
faucets: [ 'https://faucet.cloudtx.finance' ],
|
|
7920
|
+
nativeCurrency: { name: 'CloudTx', symbol: 'CLOUD', decimals: 9 },
|
|
7921
|
+
infoURL: 'https://cloudtx.finance/',
|
|
7922
|
+
shortName: 'CLD',
|
|
7923
|
+
chainId: 31224,
|
|
7924
|
+
networkId: 31224,
|
|
7925
|
+
icon: 'cloudtx',
|
|
7926
|
+
explorers: [
|
|
7927
|
+
{
|
|
7928
|
+
name: 'cloudtxexplorer',
|
|
7929
|
+
url: 'https://explorer.cloudtx.finance ',
|
|
7930
|
+
icon: 'cloudtx',
|
|
7931
|
+
standard: 'EIP3091'
|
|
7932
|
+
}
|
|
7933
|
+
]
|
|
7934
|
+
},
|
|
7798
7935
|
{
|
|
7799
7936
|
name: 'GoChain Testnet',
|
|
7800
7937
|
chain: 'GO',
|
|
@@ -9855,7 +9992,13 @@ const chainArray = [
|
|
|
9855
9992
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
9856
9993
|
rpc: [ 'https://rpc.etherfair.org' ],
|
|
9857
9994
|
faucets: [],
|
|
9858
|
-
explorers: [
|
|
9995
|
+
explorers: [
|
|
9996
|
+
{
|
|
9997
|
+
name: 'etherfair',
|
|
9998
|
+
url: 'https://explorer.etherfair.org',
|
|
9999
|
+
standard: 'EIP3091'
|
|
10000
|
+
}
|
|
10001
|
+
],
|
|
9859
10002
|
infoURL: 'https://etherfair.org'
|
|
9860
10003
|
},
|
|
9861
10004
|
{
|