eth-chainlist 0.0.697 → 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 +8 -0
- package/data/chain.js +42 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
### 0.0.697 (2025-10-22)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -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',
|