eth-chainlist 0.0.696 → 0.0.698
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 +45 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.698 (2025-10-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.697 ([b2b9986](https://github.com/poowf/eth-chainlist/commit/b2b9986101efb7652cd05c68154836c3f617b769))
|
|
9
|
+
* update chain data ([3bef7ef](https://github.com/poowf/eth-chainlist/commit/3bef7efacd3ab8948c2672fc2dcf634a8fe8d81b))
|
|
10
|
+
|
|
11
|
+
### 0.0.697 (2025-10-22)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.696 ([f16e407](https://github.com/poowf/eth-chainlist/commit/f16e40705656117bd5eede15d1977ba5c588bcc3))
|
|
17
|
+
* update chain data ([430de18](https://github.com/poowf/eth-chainlist/commit/430de187205560b8f1c87588f01938f2ba6406bf))
|
|
18
|
+
|
|
3
19
|
### 0.0.696 (2025-10-09)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -3448,7 +3448,7 @@ const chainArray = [
|
|
|
3448
3448
|
explorers: [
|
|
3449
3449
|
{
|
|
3450
3450
|
name: 'Nomina EVM and cross-chain Explorer',
|
|
3451
|
-
url: 'https://
|
|
3451
|
+
url: 'https://nomscan.io',
|
|
3452
3452
|
standard: 'EIP3091'
|
|
3453
3453
|
}
|
|
3454
3454
|
]
|
|
@@ -30838,8 +30838,8 @@ const chainArray = [
|
|
|
30838
30838
|
rpc: [
|
|
30839
30839
|
'https://rpc_evm-mezo.imperator.co',
|
|
30840
30840
|
'wss://ws_evm-mezo.imperator.co',
|
|
30841
|
-
'https://
|
|
30842
|
-
'wss://
|
|
30841
|
+
'https://rpc-http.mezo.boar.network',
|
|
30842
|
+
'wss://rpc-ws.mezo.boar.network',
|
|
30843
30843
|
'https://mainnet.mezo.public.validationcloud.io',
|
|
30844
30844
|
'wss://mainnet.mezo.public.validationcloud.io',
|
|
30845
30845
|
'https://rpc-internal.mezo.org',
|
|
@@ -34074,6 +34074,48 @@ const chainArray = [
|
|
|
34074
34074
|
}
|
|
34075
34075
|
]
|
|
34076
34076
|
},
|
|
34077
|
+
{
|
|
34078
|
+
name: 'POTOS Testnet',
|
|
34079
|
+
chain: 'POTOS',
|
|
34080
|
+
icon: 'potos',
|
|
34081
|
+
rpc: [ 'https://rpc-testnet.potos.hk' ],
|
|
34082
|
+
faucets: [ 'https://faucet-testnet.potos.hk' ],
|
|
34083
|
+
nativeCurrency: { name: 'POTOS Token', symbol: 'POT', decimals: 18 },
|
|
34084
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
34085
|
+
infoURL: 'https://potos.hk',
|
|
34086
|
+
shortName: 'potos-testnet',
|
|
34087
|
+
chainId: 60600,
|
|
34088
|
+
networkId: 60600,
|
|
34089
|
+
explorers: [
|
|
34090
|
+
{
|
|
34091
|
+
name: 'POTOS Testnet explorer',
|
|
34092
|
+
url: 'https://scan-testnet.potos.hk',
|
|
34093
|
+
icon: 'blockscout',
|
|
34094
|
+
standard: 'EIP3091'
|
|
34095
|
+
}
|
|
34096
|
+
]
|
|
34097
|
+
},
|
|
34098
|
+
{
|
|
34099
|
+
name: 'POTOS Mainnet',
|
|
34100
|
+
chain: 'POTOS',
|
|
34101
|
+
icon: 'potos',
|
|
34102
|
+
rpc: [ 'https://rpc.potos.hk' ],
|
|
34103
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
34104
|
+
nativeCurrency: { name: 'POTOS Token', symbol: 'POT', decimals: 18 },
|
|
34105
|
+
faucets: [],
|
|
34106
|
+
infoURL: 'https://potos.hk',
|
|
34107
|
+
shortName: 'potos',
|
|
34108
|
+
chainId: 60603,
|
|
34109
|
+
networkId: 60603,
|
|
34110
|
+
explorers: [
|
|
34111
|
+
{
|
|
34112
|
+
name: 'POTOS Mainnet explorer',
|
|
34113
|
+
url: 'https://scan.potos.hk',
|
|
34114
|
+
icon: 'blockscout',
|
|
34115
|
+
standard: 'EIP3091'
|
|
34116
|
+
}
|
|
34117
|
+
]
|
|
34118
|
+
},
|
|
34077
34119
|
{
|
|
34078
34120
|
name: 'BOB',
|
|
34079
34121
|
chain: 'ETH',
|