eth-chainlist 0.0.59 → 0.0.61
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 +184 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.61 (2023-01-21)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.60 ([e2bc76d](https://github.com/poowf/eth-chainlist/commit/e2bc76dfb95c99580ed74caa824ba388df5dd113))
|
9
|
+
* update chain data ([f390e4b](https://github.com/poowf/eth-chainlist/commit/f390e4b80c7eabe983904cbb3c4726881bc3a903))
|
10
|
+
|
11
|
+
### 0.0.60 (2023-01-19)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.59 ([2036dc9](https://github.com/poowf/eth-chainlist/commit/2036dc96f01b86da7e03cbd1b616b479e3895679))
|
17
|
+
* update chain data ([e462f0d](https://github.com/poowf/eth-chainlist/commit/e462f0d6a819222734eaa1abce3f91194590557e))
|
18
|
+
|
3
19
|
### 0.0.59 (2023-01-18)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2218,6 +2218,44 @@ const chainArray = [
|
|
2218
2218
|
}
|
2219
2219
|
]
|
2220
2220
|
},
|
2221
|
+
{
|
2222
|
+
name: 'Armonia Eva Chain Mainnet',
|
2223
|
+
chain: 'Eva',
|
2224
|
+
rpc: [ 'https://evascan.io/api/eth-rpc/' ],
|
2225
|
+
faucets: [],
|
2226
|
+
nativeCurrency: {
|
2227
|
+
name: 'Armonia Multichain Native Token',
|
2228
|
+
symbol: 'AMAX',
|
2229
|
+
decimals: 18
|
2230
|
+
},
|
2231
|
+
infoURL: 'https://amax.network',
|
2232
|
+
shortName: 'eva',
|
2233
|
+
chainId: 160,
|
2234
|
+
networkId: 160,
|
2235
|
+
status: 'incubating'
|
2236
|
+
},
|
2237
|
+
{
|
2238
|
+
name: 'Armonia Eva Chain Testnet',
|
2239
|
+
chain: 'Wall-e',
|
2240
|
+
rpc: [ 'https://testnet.evascan.io/api/eth-rpc/' ],
|
2241
|
+
faucets: [],
|
2242
|
+
nativeCurrency: {
|
2243
|
+
name: 'Armonia Multichain Native Token',
|
2244
|
+
symbol: 'AMAX',
|
2245
|
+
decimals: 18
|
2246
|
+
},
|
2247
|
+
infoURL: 'https://amax.network',
|
2248
|
+
shortName: 'wall-e',
|
2249
|
+
chainId: 161,
|
2250
|
+
networkId: 161,
|
2251
|
+
explorers: [
|
2252
|
+
{
|
2253
|
+
name: 'blockscout - evascan',
|
2254
|
+
url: 'https://testnet.evascan.io',
|
2255
|
+
standard: 'EIP3091'
|
2256
|
+
}
|
2257
|
+
]
|
2258
|
+
},
|
2221
2259
|
{
|
2222
2260
|
name: 'Lightstreams Testnet',
|
2223
2261
|
chain: 'PHT',
|
@@ -6313,8 +6351,11 @@ const chainArray = [
|
|
6313
6351
|
name: 'Filecoin - Hyperspace testnet',
|
6314
6352
|
chain: 'FIL',
|
6315
6353
|
icon: 'filecoin',
|
6316
|
-
rpc: [
|
6317
|
-
|
6354
|
+
rpc: [
|
6355
|
+
'https://api.hyperspace.node.glif.io/rpc/v1',
|
6356
|
+
'https://filecoin-hyperspace.chainstacklabs.com/rpc/v1'
|
6357
|
+
],
|
6358
|
+
faucets: [ 'https://hyperspace.yoga/#faucet' ],
|
6318
6359
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
6319
6360
|
infoURL: 'https://filecoin.io',
|
6320
6361
|
shortName: 'filecoin-hyperspace',
|
@@ -7651,6 +7692,103 @@ const chainArray = [
|
|
7651
7692
|
}
|
7652
7693
|
]
|
7653
7694
|
},
|
7695
|
+
{
|
7696
|
+
name: 'Unique',
|
7697
|
+
icon: 'unique',
|
7698
|
+
chain: 'UNQ',
|
7699
|
+
rpc: [
|
7700
|
+
'https://rpc.unique.network',
|
7701
|
+
'https://eu-rpc.unique.network',
|
7702
|
+
'https://asia-rpc.unique.network',
|
7703
|
+
'https://us-rpc.unique.network'
|
7704
|
+
],
|
7705
|
+
faucets: [],
|
7706
|
+
nativeCurrency: { name: 'Unique', symbol: 'UNQ', decimals: 18 },
|
7707
|
+
infoURL: 'https://unique.network',
|
7708
|
+
shortName: 'unq',
|
7709
|
+
chainId: 8880,
|
7710
|
+
networkId: 8880,
|
7711
|
+
explorers: [
|
7712
|
+
{
|
7713
|
+
name: 'Unique Scan',
|
7714
|
+
url: 'https://uniquescan.io/unique',
|
7715
|
+
standard: 'none'
|
7716
|
+
}
|
7717
|
+
]
|
7718
|
+
},
|
7719
|
+
{
|
7720
|
+
name: 'Quartz by Unique',
|
7721
|
+
icon: 'quartz',
|
7722
|
+
chain: 'UNQ',
|
7723
|
+
rpc: [
|
7724
|
+
'https://rpc-quartz.unique.network',
|
7725
|
+
'https://quartz.api.onfinality.io/public-ws',
|
7726
|
+
'https://eu-rpc-quartz.unique.network',
|
7727
|
+
'https://asia-rpc-quartz.unique.network',
|
7728
|
+
'https://us-rpc-quartz.unique.network'
|
7729
|
+
],
|
7730
|
+
faucets: [],
|
7731
|
+
nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 },
|
7732
|
+
infoURL: 'https://unique.network',
|
7733
|
+
shortName: 'qtz',
|
7734
|
+
chainId: 8881,
|
7735
|
+
networkId: 8881,
|
7736
|
+
explorers: [
|
7737
|
+
{
|
7738
|
+
name: 'Unique Scan / Quartz',
|
7739
|
+
url: 'https://uniquescan.io/quartz',
|
7740
|
+
standard: 'none'
|
7741
|
+
}
|
7742
|
+
]
|
7743
|
+
},
|
7744
|
+
{
|
7745
|
+
name: 'Opal testnet by Unique',
|
7746
|
+
icon: 'opal',
|
7747
|
+
chain: 'UNQ',
|
7748
|
+
rpc: [
|
7749
|
+
'https://rpc-opal.unique.network',
|
7750
|
+
'https://us-rpc-opal.unique.network',
|
7751
|
+
'https://eu-rpc-opal.unique.network',
|
7752
|
+
'https://asia-rpc-opal.unique.network'
|
7753
|
+
],
|
7754
|
+
faucets: [ 'https://t.me/unique2faucet_opal_bot' ],
|
7755
|
+
nativeCurrency: { name: 'Opal', symbol: 'UNQ', decimals: 18 },
|
7756
|
+
infoURL: 'https://unique.network',
|
7757
|
+
shortName: 'opl',
|
7758
|
+
chainId: 8882,
|
7759
|
+
networkId: 8882,
|
7760
|
+
explorers: [
|
7761
|
+
{
|
7762
|
+
name: 'Unique Scan / Opal',
|
7763
|
+
url: 'https://uniquescan.io/opal',
|
7764
|
+
standard: 'none'
|
7765
|
+
}
|
7766
|
+
]
|
7767
|
+
},
|
7768
|
+
{
|
7769
|
+
name: 'Sapphire by Unique',
|
7770
|
+
icon: 'sapphire',
|
7771
|
+
chain: 'UNQ',
|
7772
|
+
rpc: [
|
7773
|
+
'https://rpc-sapphire.unique.network',
|
7774
|
+
'https://us-rpc-sapphire.unique.network',
|
7775
|
+
'https://eu-rpc-sapphire.unique.network',
|
7776
|
+
'https://asia-rpc-sapphire.unique.network'
|
7777
|
+
],
|
7778
|
+
faucets: [],
|
7779
|
+
nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 },
|
7780
|
+
infoURL: 'https://unique.network',
|
7781
|
+
shortName: 'sph',
|
7782
|
+
chainId: 8883,
|
7783
|
+
networkId: 8883,
|
7784
|
+
explorers: [
|
7785
|
+
{
|
7786
|
+
name: 'Unique Scan / Sapphire',
|
7787
|
+
url: 'https://uniquescan.io/sapphire',
|
7788
|
+
standard: 'none'
|
7789
|
+
}
|
7790
|
+
]
|
7791
|
+
},
|
7654
7792
|
{
|
7655
7793
|
name: 'XANAChain',
|
7656
7794
|
chain: 'XANAChain',
|
@@ -8419,6 +8557,27 @@ const chainArray = [
|
|
8419
8557
|
}
|
8420
8558
|
]
|
8421
8559
|
},
|
8560
|
+
{
|
8561
|
+
name: 'Credit Smartchain Mainnet',
|
8562
|
+
chain: 'CREDIT',
|
8563
|
+
rpc: [ 'https://mainnet-rpc.cscscan.io' ],
|
8564
|
+
faucets: [],
|
8565
|
+
nativeCurrency: { name: 'Credit', symbol: 'CREDIT', decimals: 18 },
|
8566
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
8567
|
+
infoURL: 'https://creditsmartchain.com',
|
8568
|
+
shortName: 'Credit',
|
8569
|
+
chainId: 13308,
|
8570
|
+
networkId: 1,
|
8571
|
+
icon: 'credit',
|
8572
|
+
explorers: [
|
8573
|
+
{
|
8574
|
+
name: 'CSC Scan',
|
8575
|
+
url: 'https://explorer.cscscan.io',
|
8576
|
+
icon: 'credit',
|
8577
|
+
standard: 'EIP3091'
|
8578
|
+
}
|
8579
|
+
]
|
8580
|
+
},
|
8422
8581
|
{
|
8423
8582
|
name: 'Phoenix Mainnet',
|
8424
8583
|
chain: 'Phoenix',
|
@@ -8579,6 +8738,26 @@ const chainArray = [
|
|
8579
8738
|
}
|
8580
8739
|
]
|
8581
8740
|
},
|
8741
|
+
{
|
8742
|
+
name: 'HOME Verse Mainnet',
|
8743
|
+
chain: 'HOME Verse',
|
8744
|
+
icon: 'home_verse',
|
8745
|
+
rpc: [ 'https://rpc.mainnet.oasys.homeverse.games/' ],
|
8746
|
+
faucets: [],
|
8747
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
8748
|
+
infoURL: 'https://www.homeverse.games/',
|
8749
|
+
shortName: 'HMV',
|
8750
|
+
chainId: 19011,
|
8751
|
+
networkId: 19011,
|
8752
|
+
explorers: [
|
8753
|
+
{
|
8754
|
+
name: 'HOME Verse Explorer',
|
8755
|
+
url: 'https://explorer.oasys.homeverse.games',
|
8756
|
+
standard: 'EIP3091'
|
8757
|
+
}
|
8758
|
+
],
|
8759
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
8760
|
+
},
|
8582
8761
|
{
|
8583
8762
|
name: 'BTCIX Network',
|
8584
8763
|
chain: 'BTCIX',
|
@@ -8994,8 +9173,8 @@ const chainArray = [
|
|
8994
9173
|
name: 'Filecoin - Wallaby testnet',
|
8995
9174
|
chain: 'FIL',
|
8996
9175
|
icon: 'filecoin',
|
8997
|
-
rpc: [ 'https://wallaby.node.glif.io/rpc/
|
8998
|
-
faucets: [ 'https://wallaby.
|
9176
|
+
rpc: [ 'https://wallaby.node.glif.io/rpc/v1' ],
|
9177
|
+
faucets: [ 'https://wallaby.yoga/#faucet' ],
|
8999
9178
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
9000
9179
|
infoURL: 'https://filecoin.io',
|
9001
9180
|
shortName: 'filecoin-wallaby',
|
@@ -11045,7 +11224,7 @@ const chainArray = [
|
|
11045
11224
|
name: 'Filecoin - Calibration testnet',
|
11046
11225
|
chain: 'FIL',
|
11047
11226
|
icon: 'filecoin',
|
11048
|
-
rpc: [ 'https://api.calibration.node.glif.io/rpc/
|
11227
|
+
rpc: [ 'https://api.calibration.node.glif.io/rpc/v1' ],
|
11049
11228
|
faucets: [ 'https://faucet.calibration.fildev.network/' ],
|
11050
11229
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
11051
11230
|
infoURL: 'https://filecoin.io',
|