eth-chainlist 0.0.162 → 0.0.164
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 +87 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.164 (2023-06-07)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.163 ([a8c53a1](https://github.com/poowf/eth-chainlist/commit/a8c53a127a7b87b7f74f0229b036eb4c4ac2726a))
|
9
|
+
* update chain data ([0a7db65](https://github.com/poowf/eth-chainlist/commit/0a7db657caea5889b8224166054ce58a0d85ea9c))
|
10
|
+
|
11
|
+
### 0.0.163 (2023-06-03)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.162 ([49ccf48](https://github.com/poowf/eth-chainlist/commit/49ccf48cfc740acd5d8057a7c6eb87de6df53a77))
|
17
|
+
* update chain data ([08f8f79](https://github.com/poowf/eth-chainlist/commit/08f8f796a4bb161c382394ad401e02fddd186a81))
|
18
|
+
|
3
19
|
### 0.0.162 (2023-06-02)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8270,6 +8270,25 @@ const chainArray = [
|
|
8270
8270
|
}
|
8271
8271
|
]
|
8272
8272
|
},
|
8273
|
+
{
|
8274
|
+
name: 'WhiteBIT Network Testnet',
|
8275
|
+
chain: 'WBT',
|
8276
|
+
rpc: [ 'https://rpc-testnet.whitebit.network' ],
|
8277
|
+
faucets: [ 'https://explorer.whitebit.network/testnet/faucet' ],
|
8278
|
+
nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
|
8279
|
+
infoURL: 'https://whitebit.com/wbt',
|
8280
|
+
shortName: 'twbt',
|
8281
|
+
chainId: 2625,
|
8282
|
+
networkId: 2625,
|
8283
|
+
icon: 'whitebit-testnet',
|
8284
|
+
explorers: [
|
8285
|
+
{
|
8286
|
+
name: 'wb-explorer-testnet',
|
8287
|
+
url: 'https://explorer.whitebit.network/testnet',
|
8288
|
+
standard: 'EIP3091'
|
8289
|
+
}
|
8290
|
+
]
|
8291
|
+
},
|
8273
8292
|
{
|
8274
8293
|
name: 'Boba Network Goerli Testnet',
|
8275
8294
|
chain: 'ETH',
|
@@ -8427,47 +8446,18 @@ const chainArray = [
|
|
8427
8446
|
},
|
8428
8447
|
{
|
8429
8448
|
name: 'Filecoin - Hyperspace testnet',
|
8449
|
+
status: 'deprecated',
|
8430
8450
|
chain: 'FIL',
|
8431
8451
|
icon: 'filecoin',
|
8432
|
-
rpc: [
|
8433
|
-
|
8434
|
-
'https://rpc.ankr.com/filecoin_testnet',
|
8435
|
-
'https://filecoin-hyperspace.chainstacklabs.com/rpc/v1'
|
8436
|
-
],
|
8437
|
-
faucets: [ 'https://hyperspace.yoga/#faucet' ],
|
8452
|
+
rpc: [],
|
8453
|
+
faucets: [],
|
8438
8454
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
8439
8455
|
infoURL: 'https://filecoin.io',
|
8440
8456
|
shortName: 'filecoin-hyperspace',
|
8441
8457
|
chainId: 3141,
|
8442
8458
|
networkId: 3141,
|
8443
8459
|
slip44: 1,
|
8444
|
-
explorers: [
|
8445
|
-
{
|
8446
|
-
name: 'Filfox - Hyperspace',
|
8447
|
-
url: 'https://hyperspace.filfox.info/en',
|
8448
|
-
standard: 'none'
|
8449
|
-
},
|
8450
|
-
{
|
8451
|
-
name: 'Glif Explorer - Hyperspace',
|
8452
|
-
url: 'https://explorer.glif.io/?network=hyperspace',
|
8453
|
-
standard: 'none'
|
8454
|
-
},
|
8455
|
-
{
|
8456
|
-
name: 'Beryx',
|
8457
|
-
url: 'https://beryx.zondax.ch',
|
8458
|
-
standard: 'none'
|
8459
|
-
},
|
8460
|
-
{
|
8461
|
-
name: 'Dev.storage',
|
8462
|
-
url: 'https://dev.storage',
|
8463
|
-
standard: 'none'
|
8464
|
-
},
|
8465
|
-
{
|
8466
|
-
name: 'Filscan - Hyperspace',
|
8467
|
-
url: 'https://hyperspace.filscan.io',
|
8468
|
-
standard: 'none'
|
8469
|
-
}
|
8470
|
-
]
|
8460
|
+
explorers: []
|
8471
8461
|
},
|
8472
8462
|
{
|
8473
8463
|
name: 'Debounce Subnet Testnet',
|
@@ -12456,10 +12446,11 @@ const chainArray = [
|
|
12456
12446
|
},
|
12457
12447
|
{
|
12458
12448
|
name: 'Filecoin - Wallaby testnet',
|
12449
|
+
status: 'deprecated',
|
12459
12450
|
chain: 'FIL',
|
12460
12451
|
icon: 'filecoin',
|
12461
|
-
rpc: [
|
12462
|
-
faucets: [
|
12452
|
+
rpc: [],
|
12453
|
+
faucets: [],
|
12463
12454
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
12464
12455
|
infoURL: 'https://filecoin.io',
|
12465
12456
|
shortName: 'filecoin-wallaby',
|
@@ -14093,6 +14084,30 @@ const chainArray = [
|
|
14093
14084
|
}
|
14094
14085
|
]
|
14095
14086
|
},
|
14087
|
+
{
|
14088
|
+
name: 'Nautilus Chain',
|
14089
|
+
title: 'Nautilus Trition Testnet',
|
14090
|
+
chain: 'ETH',
|
14091
|
+
icon: 'nautilus',
|
14092
|
+
rpc: [ 'https://triton.api.nautchain.xyz' ],
|
14093
|
+
faucets: [ 'https://faucet.eclipse.builders' ],
|
14094
|
+
nativeCurrency: {
|
14095
|
+
name: 'Nautilus Zebec Testnet Tokens',
|
14096
|
+
symbol: 'tZBC',
|
14097
|
+
decimals: 18
|
14098
|
+
},
|
14099
|
+
infoURL: 'https://docs.nautchain.xyz',
|
14100
|
+
shortName: 'NAUT',
|
14101
|
+
chainId: 91002,
|
14102
|
+
networkId: 91002,
|
14103
|
+
explorers: [
|
14104
|
+
{
|
14105
|
+
name: 'Nautscan',
|
14106
|
+
url: 'https://triton.nautscan.com',
|
14107
|
+
standard: 'EIP3091'
|
14108
|
+
}
|
14109
|
+
]
|
14110
|
+
},
|
14096
14111
|
{
|
14097
14112
|
name: 'Lambda Testnet',
|
14098
14113
|
chain: 'Lambda',
|
@@ -14767,6 +14782,7 @@ const chainArray = [
|
|
14767
14782
|
{
|
14768
14783
|
name: 'Taiko (Alpha-2 Testnet)',
|
14769
14784
|
chain: 'ETH',
|
14785
|
+
status: 'deprecated',
|
14770
14786
|
icon: 'taiko',
|
14771
14787
|
rpc: [ 'https://rpc.a2.taiko.xyz' ],
|
14772
14788
|
faucets: [],
|
@@ -14783,6 +14799,26 @@ const chainArray = [
|
|
14783
14799
|
}
|
14784
14800
|
]
|
14785
14801
|
},
|
14802
|
+
{
|
14803
|
+
name: 'Taiko (Alpha-3 Testnet)',
|
14804
|
+
chain: 'ETH',
|
14805
|
+
status: 'active',
|
14806
|
+
icon: 'taiko',
|
14807
|
+
rpc: [ 'https://rpc.test.taiko.xyz' ],
|
14808
|
+
faucets: [],
|
14809
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14810
|
+
infoURL: 'https://taiko.xyz',
|
14811
|
+
shortName: 'taiko-a3',
|
14812
|
+
chainId: 167005,
|
14813
|
+
networkId: 167005,
|
14814
|
+
explorers: [
|
14815
|
+
{
|
14816
|
+
name: 'blockscout',
|
14817
|
+
url: 'https://explorer.test.taiko.xyz',
|
14818
|
+
standard: 'EIP3091'
|
14819
|
+
}
|
14820
|
+
]
|
14821
|
+
},
|
14786
14822
|
{
|
14787
14823
|
name: 'Condor Test Network',
|
14788
14824
|
chain: 'CONDOR',
|
@@ -15154,7 +15190,12 @@ const chainArray = [
|
|
15154
15190
|
name: 'Filecoin - Calibration testnet',
|
15155
15191
|
chain: 'FIL',
|
15156
15192
|
icon: 'filecoin',
|
15157
|
-
rpc: [
|
15193
|
+
rpc: [
|
15194
|
+
'https://api.calibration.node.glif.io/rpc/v1',
|
15195
|
+
'https://rpc.ankr.com/filecoin_testnet',
|
15196
|
+
'https://filecoin-calibration.chainstacklabs.com/rpc/v1',
|
15197
|
+
'https://filecoin-calibration.chainup.net/rpc/v1'
|
15198
|
+
],
|
15158
15199
|
faucets: [ 'https://faucet.calibration.fildev.network/' ],
|
15159
15200
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
15160
15201
|
infoURL: 'https://filecoin.io',
|
@@ -15177,6 +15218,16 @@ const chainArray = [
|
|
15177
15218
|
name: 'Filfox - Calibration',
|
15178
15219
|
url: 'https://calibration.filfox.info',
|
15179
15220
|
standard: 'none'
|
15221
|
+
},
|
15222
|
+
{
|
15223
|
+
name: 'Glif Explorer - Calibration',
|
15224
|
+
url: 'https://explorer.glif.io/?network=calibration',
|
15225
|
+
standard: 'none'
|
15226
|
+
},
|
15227
|
+
{
|
15228
|
+
name: 'Beryx',
|
15229
|
+
url: 'https://beryx.zondax.ch',
|
15230
|
+
standard: 'none'
|
15180
15231
|
}
|
15181
15232
|
]
|
15182
15233
|
},
|