eth-chainlist 0.0.70 → 0.0.72
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 +249 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.72 (2023-02-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.71 ([9cb5977](https://github.com/poowf/eth-chainlist/commit/9cb5977fc7951ea01dbb778f62133616bdd3de6c))
|
9
|
+
* update chain data ([fa2401d](https://github.com/poowf/eth-chainlist/commit/fa2401d2a41814e2ec93415cbd0b2cedc2acb0c8))
|
10
|
+
|
11
|
+
### 0.0.71 (2023-02-05)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.70 ([858008d](https://github.com/poowf/eth-chainlist/commit/858008da0a331779d6db10a335c969b6dff97d51))
|
17
|
+
* update chain data ([5f789fb](https://github.com/poowf/eth-chainlist/commit/5f789fbf32158e713be0a1ac5611afe950cec12a))
|
18
|
+
|
3
19
|
### 0.0.70 (2023-02-04)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2011,6 +2011,46 @@ const chainArray = [
|
|
2011
2011
|
networkId: 116,
|
2012
2012
|
explorers: []
|
2013
2013
|
},
|
2014
|
+
{
|
2015
|
+
name: 'ENULS Mainnet',
|
2016
|
+
chain: 'ENULS',
|
2017
|
+
rpc: [ 'https://evmapi.nuls.io', 'https://evmapi2.nuls.io' ],
|
2018
|
+
faucets: [],
|
2019
|
+
nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 },
|
2020
|
+
infoURL: 'https://nuls.io',
|
2021
|
+
shortName: 'enuls',
|
2022
|
+
chainId: 119,
|
2023
|
+
networkId: 119,
|
2024
|
+
icon: 'enuls',
|
2025
|
+
explorers: [
|
2026
|
+
{
|
2027
|
+
name: 'enulsscan',
|
2028
|
+
url: 'https://evmscan.nuls.io',
|
2029
|
+
icon: 'enuls',
|
2030
|
+
standard: 'EIP3091'
|
2031
|
+
}
|
2032
|
+
]
|
2033
|
+
},
|
2034
|
+
{
|
2035
|
+
name: 'ENULS Testnet',
|
2036
|
+
chain: 'ENULS',
|
2037
|
+
rpc: [ 'https://beta.evmapi.nuls.io', 'https://beta.evmapi2.nuls.io' ],
|
2038
|
+
faucets: [ 'http://faucet.nuls.io' ],
|
2039
|
+
nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 },
|
2040
|
+
infoURL: 'https://nuls.io',
|
2041
|
+
shortName: 'enulst',
|
2042
|
+
chainId: 120,
|
2043
|
+
networkId: 120,
|
2044
|
+
icon: 'enuls',
|
2045
|
+
explorers: [
|
2046
|
+
{
|
2047
|
+
name: 'enulsscan',
|
2048
|
+
url: 'https://beta.evmscan.nuls.io',
|
2049
|
+
icon: 'enuls',
|
2050
|
+
standard: 'EIP3091'
|
2051
|
+
}
|
2052
|
+
]
|
2053
|
+
},
|
2014
2054
|
{
|
2015
2055
|
name: 'Fuse Mainnet',
|
2016
2056
|
chain: 'FUSE',
|
@@ -3110,6 +3150,25 @@ const chainArray = [
|
|
3110
3150
|
faucets: [],
|
3111
3151
|
nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 }
|
3112
3152
|
},
|
3153
|
+
{
|
3154
|
+
name: 'Consta Testnet',
|
3155
|
+
chain: 'tCNT',
|
3156
|
+
rpc: [ 'https://rpc-testnet.theconsta.com' ],
|
3157
|
+
faucets: [],
|
3158
|
+
nativeCurrency: { name: 'tCNT', symbol: 'tCNT', decimals: 18 },
|
3159
|
+
infoURL: 'http://theconsta.com',
|
3160
|
+
shortName: 'tCNT',
|
3161
|
+
chainId: 371,
|
3162
|
+
networkId: 371,
|
3163
|
+
icon: 'constachain',
|
3164
|
+
explorers: [
|
3165
|
+
{
|
3166
|
+
name: 'blockscout',
|
3167
|
+
url: 'https://explorer-testnet.theconsta.com',
|
3168
|
+
standard: 'EIP3091'
|
3169
|
+
}
|
3170
|
+
]
|
3171
|
+
},
|
3113
3172
|
{
|
3114
3173
|
name: 'Lisinski',
|
3115
3174
|
chain: 'CRO',
|
@@ -3559,6 +3618,28 @@ const chainArray = [
|
|
3559
3618
|
}
|
3560
3619
|
]
|
3561
3620
|
},
|
3621
|
+
{
|
3622
|
+
name: 'Endurance Smart Chain Mainnet',
|
3623
|
+
chain: 'ACE',
|
3624
|
+
rpc: [ 'https://rpc-endurance.fusionist.io/' ],
|
3625
|
+
faucets: [],
|
3626
|
+
nativeCurrency: {
|
3627
|
+
name: 'Endurance Chain Native Token',
|
3628
|
+
symbol: 'ACE',
|
3629
|
+
decimals: 18
|
3630
|
+
},
|
3631
|
+
infoURL: 'https://ace.fusionist.io/',
|
3632
|
+
shortName: 'ace',
|
3633
|
+
chainId: 648,
|
3634
|
+
networkId: 648,
|
3635
|
+
explorers: [
|
3636
|
+
{
|
3637
|
+
name: 'Endurance Scan',
|
3638
|
+
url: 'https://explorer.endurance.fusionist.io',
|
3639
|
+
standard: 'EIP3091'
|
3640
|
+
}
|
3641
|
+
]
|
3642
|
+
},
|
3562
3643
|
{
|
3563
3644
|
name: 'Pixie Chain Testnet',
|
3564
3645
|
chain: 'PixieChain',
|
@@ -4665,6 +4746,25 @@ const chainArray = [
|
|
4665
4746
|
}
|
4666
4747
|
]
|
4667
4748
|
},
|
4749
|
+
{
|
4750
|
+
name: 'Dogcoin Mainnet',
|
4751
|
+
chain: 'DOGS',
|
4752
|
+
icon: 'dogs',
|
4753
|
+
rpc: [ 'https://mainnet-rpc.dogcoin.network' ],
|
4754
|
+
faucets: [ 'https://faucet.dogcoin.network' ],
|
4755
|
+
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
4756
|
+
infoURL: 'https://dogcoin.network',
|
4757
|
+
shortName: 'DOGSm',
|
4758
|
+
chainId: 1117,
|
4759
|
+
networkId: 1117,
|
4760
|
+
explorers: [
|
4761
|
+
{
|
4762
|
+
name: 'Dogcoin',
|
4763
|
+
url: 'https://explorer.dogcoin.network',
|
4764
|
+
standard: 'EIP3091'
|
4765
|
+
}
|
4766
|
+
]
|
4767
|
+
},
|
4668
4768
|
{
|
4669
4769
|
name: 'DeFiChain EVM Network Mainnet',
|
4670
4770
|
chain: 'defichain-evm',
|
@@ -5213,6 +5313,25 @@ const chainArray = [
|
|
5213
5313
|
}
|
5214
5314
|
]
|
5215
5315
|
},
|
5316
|
+
{
|
5317
|
+
name: 'AmStar Mainnet',
|
5318
|
+
chain: 'AmStar',
|
5319
|
+
icon: 'amstar',
|
5320
|
+
rpc: [ 'https://mainnet-rpc.amstarscan.com' ],
|
5321
|
+
faucets: [],
|
5322
|
+
nativeCurrency: { name: 'SINSO', symbol: 'SINSO', decimals: 18 },
|
5323
|
+
infoURL: 'https://sinso.io',
|
5324
|
+
shortName: 'ASAR',
|
5325
|
+
chainId: 1388,
|
5326
|
+
networkId: 1388,
|
5327
|
+
explorers: [
|
5328
|
+
{
|
5329
|
+
name: 'amstarscan',
|
5330
|
+
url: 'https://mainnet.amstarscan.com',
|
5331
|
+
standard: 'EIP3091'
|
5332
|
+
}
|
5333
|
+
]
|
5334
|
+
},
|
5216
5335
|
{
|
5217
5336
|
name: 'Polygon zkEVM Testnet',
|
5218
5337
|
title: 'Polygon zkEVM Testnet',
|
@@ -5958,6 +6077,41 @@ const chainArray = [
|
|
5958
6077
|
chainId: 2043,
|
5959
6078
|
networkId: 2043
|
5960
6079
|
},
|
6080
|
+
{
|
6081
|
+
name: 'Stratos Testnet',
|
6082
|
+
chain: 'STOS',
|
6083
|
+
rpc: [ 'https://web3-testnet-rpc.thestratos.org' ],
|
6084
|
+
faucets: [],
|
6085
|
+
nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 },
|
6086
|
+
infoURL: 'https://www.thestratos.org',
|
6087
|
+
shortName: 'stos-testnet',
|
6088
|
+
chainId: 2047,
|
6089
|
+
networkId: 2047,
|
6090
|
+
explorers: [
|
6091
|
+
{
|
6092
|
+
name: 'Stratos EVM Explorer (Blockscout)',
|
6093
|
+
url: 'https://web3-testnet-explorer.thestratos.org',
|
6094
|
+
standard: 'none'
|
6095
|
+
},
|
6096
|
+
{
|
6097
|
+
name: 'Stratos Cosmos Explorer (BigDipper)',
|
6098
|
+
url: 'https://big-dipper-dev.thestratos.org',
|
6099
|
+
standard: 'none'
|
6100
|
+
}
|
6101
|
+
]
|
6102
|
+
},
|
6103
|
+
{
|
6104
|
+
name: 'Stratos Mainnet',
|
6105
|
+
chain: 'STOS',
|
6106
|
+
rpc: [],
|
6107
|
+
faucets: [],
|
6108
|
+
nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 },
|
6109
|
+
infoURL: 'https://www.thestratos.org',
|
6110
|
+
shortName: 'stos-mainnet',
|
6111
|
+
chainId: 2048,
|
6112
|
+
networkId: 2048,
|
6113
|
+
status: 'incubating'
|
6114
|
+
},
|
5961
6115
|
{
|
5962
6116
|
name: 'Quokkacoin Mainnet',
|
5963
6117
|
chain: 'Qkacoin',
|
@@ -6933,6 +7087,44 @@ const chainArray = [
|
|
6933
7087
|
}
|
6934
7088
|
]
|
6935
7089
|
},
|
7090
|
+
{
|
7091
|
+
name: 'Bitindi Testnet',
|
7092
|
+
chain: 'BNI',
|
7093
|
+
icon: 'bitindiTestnet',
|
7094
|
+
rpc: [ 'https://testnet-rpc.bitindi.org' ],
|
7095
|
+
faucets: [ 'https://faucet.bitindi.org' ],
|
7096
|
+
nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 },
|
7097
|
+
infoURL: 'https://bitindi.org',
|
7098
|
+
shortName: 'BNIt',
|
7099
|
+
chainId: 4096,
|
7100
|
+
networkId: 4096,
|
7101
|
+
explorers: [
|
7102
|
+
{
|
7103
|
+
name: 'Bitindi',
|
7104
|
+
url: 'https://testnet.bitindiscan.com',
|
7105
|
+
standard: 'EIP3091'
|
7106
|
+
}
|
7107
|
+
]
|
7108
|
+
},
|
7109
|
+
{
|
7110
|
+
name: 'Bitindi Mainnet',
|
7111
|
+
chain: 'BNI',
|
7112
|
+
icon: 'bitindi',
|
7113
|
+
rpc: [ 'https://mainnet-rpc.bitindi.org' ],
|
7114
|
+
faucets: [ 'https://faucet.bitindi.org' ],
|
7115
|
+
nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 },
|
7116
|
+
infoURL: 'https://bitindi.org',
|
7117
|
+
shortName: 'BNIm',
|
7118
|
+
chainId: 4099,
|
7119
|
+
networkId: 4099,
|
7120
|
+
explorers: [
|
7121
|
+
{
|
7122
|
+
name: 'Bitindi',
|
7123
|
+
url: 'https://bitindiscan.com',
|
7124
|
+
standard: 'EIP3091'
|
7125
|
+
}
|
7126
|
+
]
|
7127
|
+
},
|
6936
7128
|
{
|
6937
7129
|
name: 'AIOZ Network Testnet',
|
6938
7130
|
chain: 'AIOZ',
|
@@ -8256,6 +8448,25 @@ const chainArray = [
|
|
8256
8448
|
explorers: [],
|
8257
8449
|
status: 'deprecated'
|
8258
8450
|
},
|
8451
|
+
{
|
8452
|
+
name: 'Dogcoin Testnet',
|
8453
|
+
chain: 'DOGS',
|
8454
|
+
icon: 'dogs',
|
8455
|
+
rpc: [ 'https://testnet-rpc.dogcoin.network' ],
|
8456
|
+
faucets: [ 'https://faucet.dogcoin.network' ],
|
8457
|
+
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
8458
|
+
infoURL: 'https://dogcoin.network',
|
8459
|
+
shortName: 'DOGSt',
|
8460
|
+
chainId: 9339,
|
8461
|
+
networkId: 9339,
|
8462
|
+
explorers: [
|
8463
|
+
{
|
8464
|
+
name: 'Dogcoin',
|
8465
|
+
url: 'https://testnet.dogcoin.network',
|
8466
|
+
standard: 'EIP3091'
|
8467
|
+
}
|
8468
|
+
]
|
8469
|
+
},
|
8259
8470
|
{
|
8260
8471
|
name: 'Rangers Protocol Testnet Robin',
|
8261
8472
|
chain: 'Rangers',
|
@@ -11477,6 +11688,25 @@ const chainArray = [
|
|
11477
11688
|
chainId: 246785,
|
11478
11689
|
networkId: 246785
|
11479
11690
|
},
|
11691
|
+
{
|
11692
|
+
name: 'Saakuru Testnet',
|
11693
|
+
chain: 'Saakuru',
|
11694
|
+
icon: 'saakuru',
|
11695
|
+
rpc: [ 'https://rpc-testnet.saakuru.network' ],
|
11696
|
+
faucets: [],
|
11697
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
11698
|
+
infoURL: 'https://saakuru.network',
|
11699
|
+
shortName: 'saakuru-testnet',
|
11700
|
+
chainId: 247253,
|
11701
|
+
networkId: 247253,
|
11702
|
+
explorers: [
|
11703
|
+
{
|
11704
|
+
name: 'saakuru-explorer-testnet',
|
11705
|
+
url: 'https://explorer-testnet.saakuru.network',
|
11706
|
+
standard: 'EIP3091'
|
11707
|
+
}
|
11708
|
+
]
|
11709
|
+
},
|
11480
11710
|
{
|
11481
11711
|
name: 'CMP-Mainnet',
|
11482
11712
|
chain: 'CMP',
|
@@ -12313,6 +12543,25 @@ const chainArray = [
|
|
12313
12543
|
}
|
12314
12544
|
]
|
12315
12545
|
},
|
12546
|
+
{
|
12547
|
+
name: 'Saakuru Mainnet',
|
12548
|
+
chain: 'Saakuru',
|
12549
|
+
icon: 'saakuru',
|
12550
|
+
rpc: [ 'https://rpc.saakuru.network' ],
|
12551
|
+
faucets: [],
|
12552
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
12553
|
+
infoURL: 'https://saakuru.network',
|
12554
|
+
shortName: 'saakuru',
|
12555
|
+
chainId: 7225878,
|
12556
|
+
networkId: 7225878,
|
12557
|
+
explorers: [
|
12558
|
+
{
|
12559
|
+
name: 'saakuru-explorer',
|
12560
|
+
url: 'https://explorer.saakuru.network',
|
12561
|
+
standard: 'EIP3091'
|
12562
|
+
}
|
12563
|
+
]
|
12564
|
+
},
|
12316
12565
|
{
|
12317
12566
|
name: 'OpenVessel',
|
12318
12567
|
chain: 'VSL',
|