eth-chainlist 0.0.321 → 0.0.323
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 +89 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.323 (2024-01-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.322 ([0793f95](https://github.com/poowf/eth-chainlist/commit/0793f95fa9886013c0528fb5296af9d0c1632f70))
|
9
|
+
* update chain data ([247e063](https://github.com/poowf/eth-chainlist/commit/247e06384d90d1cc986f8fb5cb4f67af9705ad99))
|
10
|
+
|
11
|
+
### 0.0.322 (2024-01-16)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.321 ([fc329e6](https://github.com/poowf/eth-chainlist/commit/fc329e6720bd1677c2421fb24bab5bc49b81cd05))
|
17
|
+
* update chain data ([2660701](https://github.com/poowf/eth-chainlist/commit/26607012bcc9a8c916b4f6429d6b40a25cda9ca9))
|
18
|
+
|
3
19
|
### 0.0.321 (2024-01-15)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8463,19 +8463,23 @@ const chainArray = [
|
|
8463
8463
|
]
|
8464
8464
|
},
|
8465
8465
|
{
|
8466
|
-
name: 'BEVM',
|
8466
|
+
name: 'BEVM Canary',
|
8467
8467
|
chain: 'ChainX',
|
8468
|
-
rpc: [
|
8468
|
+
rpc: [
|
8469
|
+
'https://rpc-canary-1.bevm.io/',
|
8470
|
+
'https://rpc-canary-2.bevm.io/'
|
8471
|
+
],
|
8469
8472
|
faucets: [],
|
8470
8473
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
8471
8474
|
infoURL: 'https://chainx.org',
|
8472
8475
|
shortName: 'chainx',
|
8473
8476
|
chainId: 1501,
|
8474
8477
|
networkId: 1501,
|
8478
|
+
icon: 'bevmcanary',
|
8475
8479
|
explorers: [
|
8476
8480
|
{
|
8477
|
-
name: 'bevm scan',
|
8478
|
-
url: 'https://scan.bevm.io',
|
8481
|
+
name: 'bevm canary scan',
|
8482
|
+
url: 'https://scan-canary.bevm.io',
|
8479
8483
|
standard: 'none'
|
8480
8484
|
}
|
8481
8485
|
]
|
@@ -13162,6 +13166,26 @@ const chainArray = [
|
|
13162
13166
|
}
|
13163
13167
|
]
|
13164
13168
|
},
|
13169
|
+
{
|
13170
|
+
name: 'PAXB Mainnet',
|
13171
|
+
chain: 'PAXB',
|
13172
|
+
rpc: [ 'https://chain.paxb.io' ],
|
13173
|
+
faucets: [],
|
13174
|
+
nativeCurrency: { name: 'PAXB', symbol: 'PAXB', decimals: 18 },
|
13175
|
+
infoURL: 'https://paxb.io/',
|
13176
|
+
shortName: 'PAXB',
|
13177
|
+
chainId: 6701,
|
13178
|
+
networkId: 6701,
|
13179
|
+
icon: 'paxb',
|
13180
|
+
explorers: [
|
13181
|
+
{
|
13182
|
+
name: 'PAXB Explorer',
|
13183
|
+
url: 'https://scan.paxb.io',
|
13184
|
+
icon: 'paxb',
|
13185
|
+
standard: 'EIP3091'
|
13186
|
+
}
|
13187
|
+
]
|
13188
|
+
},
|
13165
13189
|
{
|
13166
13190
|
name: 'Compverse Mainnet',
|
13167
13191
|
chain: 'CPV',
|
@@ -14694,6 +14718,25 @@ const chainArray = [
|
|
14694
14718
|
}
|
14695
14719
|
]
|
14696
14720
|
},
|
14721
|
+
{
|
14722
|
+
name: 'Evoke Mainnet',
|
14723
|
+
chain: 'MTHN',
|
14724
|
+
icon: 'mthn',
|
14725
|
+
rpc: [ 'https://mainnet-rpc.evokescan.org' ],
|
14726
|
+
faucets: [],
|
14727
|
+
nativeCurrency: { name: 'MTHN', symbol: 'MTHN', decimals: 18 },
|
14728
|
+
infoURL: 'https://explorer.evokescan.org',
|
14729
|
+
shortName: 'MTHN',
|
14730
|
+
chainId: 9395,
|
14731
|
+
networkId: 9395,
|
14732
|
+
explorers: [
|
14733
|
+
{
|
14734
|
+
name: 'Evoke SmartChain Explorer',
|
14735
|
+
url: 'https://explorer.evokescan.org',
|
14736
|
+
standard: 'EIP3091'
|
14737
|
+
}
|
14738
|
+
]
|
14739
|
+
},
|
14697
14740
|
{
|
14698
14741
|
name: 'Rangers Protocol Testnet Robin',
|
14699
14742
|
chain: 'Rangers',
|
@@ -17052,6 +17095,25 @@ const chainArray = [
|
|
17052
17095
|
}
|
17053
17096
|
]
|
17054
17097
|
},
|
17098
|
+
{
|
17099
|
+
name: 'Evoke Testnet',
|
17100
|
+
chain: 'Evoke',
|
17101
|
+
icon: 'mthn',
|
17102
|
+
rpc: [ 'https://testnet-rpc.evokescan.org' ],
|
17103
|
+
faucets: [ 'https://faucet.evokescan.org' ],
|
17104
|
+
nativeCurrency: { name: 'MTHN Testnet', symbol: 'MTHN', decimals: 18 },
|
17105
|
+
infoURL: 'https://testnet-explorer.evokescan.org',
|
17106
|
+
shortName: 'tmthn',
|
17107
|
+
chainId: 31414,
|
17108
|
+
networkId: 31414,
|
17109
|
+
explorers: [
|
17110
|
+
{
|
17111
|
+
name: 'Evoke SmartChain Testnet Explorer',
|
17112
|
+
url: 'https://testnet-explorer.evokescan.org',
|
17113
|
+
standard: 'EIP3091'
|
17114
|
+
}
|
17115
|
+
]
|
17116
|
+
},
|
17055
17117
|
{
|
17056
17118
|
name: 'Filecoin - Wallaby testnet',
|
17057
17119
|
status: 'deprecated',
|
@@ -23129,6 +23191,26 @@ const chainArray = [
|
|
23129
23191
|
}
|
23130
23192
|
]
|
23131
23193
|
},
|
23194
|
+
{
|
23195
|
+
name: 'Ancient8 Testnet',
|
23196
|
+
chain: 'Ancient8',
|
23197
|
+
icon: 'ancient8',
|
23198
|
+
rpc: [ 'https://rpcv2-testnet.ancient8.gg' ],
|
23199
|
+
faucets: [],
|
23200
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
23201
|
+
infoURL: 'https://ancient8.gg/',
|
23202
|
+
shortName: 'a8',
|
23203
|
+
chainId: 28122024,
|
23204
|
+
networkId: 28122024,
|
23205
|
+
slip44: 1,
|
23206
|
+
explorers: [
|
23207
|
+
{
|
23208
|
+
name: 'scan-testnet',
|
23209
|
+
url: 'https://scanv2-testnet.ancient8.gg',
|
23210
|
+
standard: 'EIP3091'
|
23211
|
+
}
|
23212
|
+
]
|
23213
|
+
},
|
23132
23214
|
{
|
23133
23215
|
name: 'Auxilium Network Mainnet',
|
23134
23216
|
chain: 'AUX',
|
@@ -24084,14 +24166,15 @@ const chainArray = [
|
|
24084
24166
|
}
|
24085
24167
|
},
|
24086
24168
|
{
|
24087
|
-
name: 'Ancient8 Testnet',
|
24169
|
+
name: 'Ancient8 Testnet (deprecated)',
|
24170
|
+
status: 'deprecated',
|
24088
24171
|
chain: 'Ancient8',
|
24089
24172
|
icon: 'ancient8',
|
24090
24173
|
rpc: [ 'https://rpc-testnet.ancient8.gg' ],
|
24091
24174
|
faucets: [],
|
24092
24175
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
24093
24176
|
infoURL: 'https://ancient8.gg/',
|
24094
|
-
shortName: '
|
24177
|
+
shortName: 'a8old',
|
24095
24178
|
chainId: 2863311531,
|
24096
24179
|
networkId: 2863311531,
|
24097
24180
|
slip44: 1,
|