eth-chainlist 0.0.26 → 0.0.28
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 +78 -23
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.28 (2022-12-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.27 ([fd99a31](https://github.com/poowf/eth-chainlist/commit/fd99a316da3d5f4ddb4ba3aebc21f0d4a6aaf9da))
|
|
9
|
+
* update chain data ([04d50e8](https://github.com/poowf/eth-chainlist/commit/04d50e8e9191309fe1b7ad660ef224368cfde318))
|
|
10
|
+
|
|
11
|
+
### 0.0.27 (2022-12-06)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.26 ([62b072c](https://github.com/poowf/eth-chainlist/commit/62b072c3b4d0640f02d7f6b611178321a43a8b1c))
|
|
17
|
+
* update chain data ([547cf54](https://github.com/poowf/eth-chainlist/commit/547cf540a4a45f84c9c6f6152095ad8073ce63e5))
|
|
18
|
+
|
|
3
19
|
### 0.0.26 (2022-12-05)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2993,6 +2993,44 @@ const chainArray = [
|
|
|
2993
2993
|
networkId: 499,
|
|
2994
2994
|
slip44: 499
|
|
2995
2995
|
},
|
|
2996
|
+
{
|
|
2997
|
+
name: 'Camino C-Chain',
|
|
2998
|
+
chain: 'CAM',
|
|
2999
|
+
rpc: [ 'https://mainnet.camino.foundation/ext/bc/C/rpc' ],
|
|
3000
|
+
faucets: [],
|
|
3001
|
+
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
|
3002
|
+
infoURL: 'https://camino.foundation/',
|
|
3003
|
+
shortName: 'Camino',
|
|
3004
|
+
chainId: 500,
|
|
3005
|
+
networkId: 1000,
|
|
3006
|
+
icon: 'camino',
|
|
3007
|
+
explorers: [
|
|
3008
|
+
{
|
|
3009
|
+
name: 'blockexplorer',
|
|
3010
|
+
url: 'https://explorer.camino.foundation/mainnet',
|
|
3011
|
+
standard: 'none'
|
|
3012
|
+
}
|
|
3013
|
+
]
|
|
3014
|
+
},
|
|
3015
|
+
{
|
|
3016
|
+
name: 'Columbus Test Network',
|
|
3017
|
+
chain: 'CAM',
|
|
3018
|
+
rpc: [ 'https://columbus.camino.foundation/ext/bc/C/rpc' ],
|
|
3019
|
+
faucets: [],
|
|
3020
|
+
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
|
3021
|
+
infoURL: 'https://camino.foundation/',
|
|
3022
|
+
shortName: 'Columbus',
|
|
3023
|
+
chainId: 501,
|
|
3024
|
+
networkId: 1001,
|
|
3025
|
+
icon: 'camino',
|
|
3026
|
+
explorers: [
|
|
3027
|
+
{
|
|
3028
|
+
name: 'blockexplorer',
|
|
3029
|
+
url: 'https://explorer.camino.foundation',
|
|
3030
|
+
standard: 'none'
|
|
3031
|
+
}
|
|
3032
|
+
]
|
|
3033
|
+
},
|
|
2996
3034
|
{
|
|
2997
3035
|
name: 'Double-A Chain Mainnet',
|
|
2998
3036
|
chain: 'AAC',
|
|
@@ -3412,7 +3450,7 @@ const chainArray = [
|
|
|
3412
3450
|
name: 'QL1',
|
|
3413
3451
|
chain: 'QOM',
|
|
3414
3452
|
status: 'incubating',
|
|
3415
|
-
rpc: [ 'https://
|
|
3453
|
+
rpc: [ 'https://rpc.qom.one:8545' ],
|
|
3416
3454
|
faucets: [],
|
|
3417
3455
|
nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 },
|
|
3418
3456
|
infoURL: 'https://qom.one',
|
|
@@ -6276,23 +6314,18 @@ const chainArray = [
|
|
|
6276
6314
|
]
|
|
6277
6315
|
},
|
|
6278
6316
|
{
|
|
6279
|
-
name: '
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6317
|
+
name: 'Ganache',
|
|
6318
|
+
title: 'Ganache GUI Ethereum Testnet',
|
|
6319
|
+
chain: 'ETH',
|
|
6320
|
+
icon: 'ganache',
|
|
6321
|
+
rpc: [ 'https://127.0.0.1:7545' ],
|
|
6283
6322
|
faucets: [],
|
|
6284
|
-
nativeCurrency: { name: '
|
|
6285
|
-
infoURL: 'https://
|
|
6286
|
-
shortName: '
|
|
6323
|
+
nativeCurrency: { name: 'Ganache Test Ether', symbol: 'ETH', decimals: 18 },
|
|
6324
|
+
infoURL: 'https://trufflesuite.com/ganache/',
|
|
6325
|
+
shortName: 'ggui',
|
|
6287
6326
|
chainId: 5777,
|
|
6288
6327
|
networkId: 5777,
|
|
6289
|
-
explorers: [
|
|
6290
|
-
{
|
|
6291
|
-
name: 'swarmexplorer',
|
|
6292
|
-
url: 'https://explorer.digestgroup.ltd',
|
|
6293
|
-
standard: 'EIP3091'
|
|
6294
|
-
}
|
|
6295
|
-
]
|
|
6328
|
+
explorers: []
|
|
6296
6329
|
},
|
|
6297
6330
|
{
|
|
6298
6331
|
name: 'Ontology Testnet',
|
|
@@ -7902,7 +7935,7 @@ const chainArray = [
|
|
|
7902
7935
|
name: 'CloudTx Mainnet',
|
|
7903
7936
|
chain: 'CLD',
|
|
7904
7937
|
icon: 'cloudtx',
|
|
7905
|
-
rpc: [ 'https://
|
|
7938
|
+
rpc: [ 'https://mainnet-rpc.cloudtx.finance' ],
|
|
7906
7939
|
faucets: [],
|
|
7907
7940
|
nativeCurrency: { name: 'CloudTx', symbol: 'CLD', decimals: 18 },
|
|
7908
7941
|
infoURL: 'https://cloudtx.finance',
|
|
@@ -7920,19 +7953,18 @@ const chainArray = [
|
|
|
7920
7953
|
{
|
|
7921
7954
|
name: 'CloudTx Testnet',
|
|
7922
7955
|
chain: 'CloudTx',
|
|
7956
|
+
icon: 'cloudtx',
|
|
7923
7957
|
rpc: [ 'https://testnet-rpc.cloudtx.finance' ],
|
|
7924
7958
|
faucets: [ 'https://faucet.cloudtx.finance' ],
|
|
7925
|
-
nativeCurrency: { name: 'CloudTx', symbol: '
|
|
7959
|
+
nativeCurrency: { name: 'CloudTx', symbol: 'CLD', decimals: 18 },
|
|
7926
7960
|
infoURL: 'https://cloudtx.finance/',
|
|
7927
7961
|
shortName: 'CLD',
|
|
7928
7962
|
chainId: 31224,
|
|
7929
7963
|
networkId: 31224,
|
|
7930
|
-
icon: 'cloudtx',
|
|
7931
7964
|
explorers: [
|
|
7932
7965
|
{
|
|
7933
7966
|
name: 'cloudtxexplorer',
|
|
7934
|
-
url: 'https://explorer.cloudtx.finance
|
|
7935
|
-
icon: 'cloudtx',
|
|
7967
|
+
url: 'https://explorer.cloudtx.finance',
|
|
7936
7968
|
standard: 'EIP3091'
|
|
7937
7969
|
}
|
|
7938
7970
|
]
|
|
@@ -8091,6 +8123,26 @@ const chainArray = [
|
|
|
8091
8123
|
networkId: 39797,
|
|
8092
8124
|
slip44: 39797
|
|
8093
8125
|
},
|
|
8126
|
+
{
|
|
8127
|
+
name: 'OHO Mainnet',
|
|
8128
|
+
chain: 'OHO',
|
|
8129
|
+
rpc: [ 'https://mainnet.oho.ai' ],
|
|
8130
|
+
faucets: [],
|
|
8131
|
+
nativeCurrency: { name: 'OHO', symbol: 'OHO', decimals: 18 },
|
|
8132
|
+
infoURL: 'https://oho.ai',
|
|
8133
|
+
shortName: 'oho',
|
|
8134
|
+
chainId: 39815,
|
|
8135
|
+
networkId: 39815,
|
|
8136
|
+
icon: 'oho',
|
|
8137
|
+
explorers: [
|
|
8138
|
+
{
|
|
8139
|
+
name: 'ohoscan',
|
|
8140
|
+
url: 'https://ohoscan.com',
|
|
8141
|
+
icon: 'ohoscan',
|
|
8142
|
+
standard: 'EIP3091'
|
|
8143
|
+
}
|
|
8144
|
+
]
|
|
8145
|
+
},
|
|
8094
8146
|
{
|
|
8095
8147
|
name: 'Opulent-X BETA',
|
|
8096
8148
|
chainId: 41500,
|
|
@@ -8783,9 +8835,12 @@ const chainArray = [
|
|
|
8783
8835
|
networkId: 1
|
|
8784
8836
|
},
|
|
8785
8837
|
{
|
|
8786
|
-
name: 'Godwoken Testnet
|
|
8838
|
+
name: 'Godwoken Testnet v1',
|
|
8787
8839
|
chain: 'GWT',
|
|
8788
|
-
rpc: [
|
|
8840
|
+
rpc: [
|
|
8841
|
+
'https://godwoken-testnet-v1.ckbapp.dev',
|
|
8842
|
+
'https://v1.testnet.godwoken.io/rpc'
|
|
8843
|
+
],
|
|
8789
8844
|
faucets: [ 'https://testnet.bridge.godwoken.io' ],
|
|
8790
8845
|
nativeCurrency: { name: 'pCKB', symbol: 'pCKB', decimals: 18 },
|
|
8791
8846
|
infoURL: 'https://www.nervos.org',
|
|
@@ -10452,7 +10507,7 @@ const chainArray = [
|
|
|
10452
10507
|
name: 'QL1 Testnet',
|
|
10453
10508
|
chain: 'QOM',
|
|
10454
10509
|
status: 'incubating',
|
|
10455
|
-
rpc: [ 'https://
|
|
10510
|
+
rpc: [ 'https://rpct.qom.one:8545' ],
|
|
10456
10511
|
faucets: [ 'https://faucet.qom.one' ],
|
|
10457
10512
|
nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 },
|
|
10458
10513
|
infoURL: 'https://qom.one',
|