eth-chainlist 0.0.161 → 0.0.163
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 +170 -27
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.163 (2023-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.162 ([49ccf48](https://github.com/poowf/eth-chainlist/commit/49ccf48cfc740acd5d8057a7c6eb87de6df53a77))
|
9
|
+
* update chain data ([08f8f79](https://github.com/poowf/eth-chainlist/commit/08f8f796a4bb161c382394ad401e02fddd186a81))
|
10
|
+
|
11
|
+
### 0.0.162 (2023-06-02)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.161 ([258390a](https://github.com/poowf/eth-chainlist/commit/258390a7bac44b53cfa456c230bf0b9f4f5c3376))
|
17
|
+
* update chain data ([e14021a](https://github.com/poowf/eth-chainlist/commit/e14021a8f96388eb7ca2f02e738331641480f040))
|
18
|
+
|
3
19
|
### 0.0.161 (2023-06-01)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -691,33 +691,28 @@ const chainArray = [
|
|
691
691
|
]
|
692
692
|
},
|
693
693
|
{
|
694
|
-
name: '
|
695
|
-
|
696
|
-
|
694
|
+
name: 'LUKSO Mainnet',
|
695
|
+
chain: 'LUKSO',
|
696
|
+
icon: 'lukso',
|
697
697
|
rpc: [
|
698
|
-
'https://
|
699
|
-
'
|
700
|
-
'https://kovan.infura.io/v3/${INFURA_API_KEY}',
|
701
|
-
'wss://kovan.infura.io/ws/v3/${INFURA_API_KEY}',
|
702
|
-
'ws://kovan.poa.network:8546'
|
703
|
-
],
|
704
|
-
faucets: [
|
705
|
-
'http://fauceth.komputing.org?chain=42&address=${ADDRESS}',
|
706
|
-
'https://faucet.kovan.network',
|
707
|
-
'https://gitter.im/kovan-testnet/faucet'
|
698
|
+
'https://rpc.mainnet.lukso.network',
|
699
|
+
'wss://ws-rpc.mainnet.lukso.network'
|
708
700
|
],
|
709
|
-
|
701
|
+
faucets: [],
|
702
|
+
nativeCurrency: { name: 'LUKSO', symbol: 'LYX', decimals: 18 },
|
710
703
|
explorers: [
|
711
704
|
{
|
712
|
-
name: '
|
713
|
-
url: 'https://
|
705
|
+
name: 'Blockscout',
|
706
|
+
url: 'https://explorer.execution.mainnet.lukso.network',
|
714
707
|
standard: 'EIP3091'
|
715
708
|
}
|
716
709
|
],
|
717
|
-
infoURL: 'https://
|
718
|
-
shortName: '
|
710
|
+
infoURL: 'https://lukso.network',
|
711
|
+
shortName: 'lukso',
|
719
712
|
chainId: 42,
|
720
|
-
networkId: 42
|
713
|
+
networkId: 42,
|
714
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
715
|
+
redFlags: [ 'reusedChainId' ]
|
721
716
|
},
|
722
717
|
{
|
723
718
|
name: 'Darwinia Pangolin Testnet',
|
@@ -1037,7 +1032,12 @@ const chainArray = [
|
|
1037
1032
|
{
|
1038
1033
|
name: 'Syscoin Mainnet',
|
1039
1034
|
chain: 'SYS',
|
1040
|
-
rpc: [
|
1035
|
+
rpc: [
|
1036
|
+
'https://rpc.syscoin.org',
|
1037
|
+
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
1038
|
+
'https://syscoin.public-rpc.com',
|
1039
|
+
'wss://rpc.syscoin.org/wss'
|
1040
|
+
],
|
1041
1041
|
faucets: [ 'https://faucet.syscoin.org' ],
|
1042
1042
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
1043
1043
|
infoURL: 'https://www.syscoin.org',
|
@@ -4190,6 +4190,24 @@ const chainArray = [
|
|
4190
4190
|
}
|
4191
4191
|
]
|
4192
4192
|
},
|
4193
|
+
{
|
4194
|
+
name: 'Rollux Mainnet',
|
4195
|
+
chain: 'SYS',
|
4196
|
+
rpc: [ 'https://rpc.rollux.com', 'wss://rpc.rollux.com/wss' ],
|
4197
|
+
faucets: [ 'https://rollux.id/faucetapp' ],
|
4198
|
+
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
4199
|
+
infoURL: 'https://rollux.com',
|
4200
|
+
shortName: 'sys-rollux',
|
4201
|
+
chainId: 570,
|
4202
|
+
networkId: 570,
|
4203
|
+
explorers: [
|
4204
|
+
{
|
4205
|
+
name: 'Rollux Explorer',
|
4206
|
+
url: 'https://explorer.rollux.com',
|
4207
|
+
standard: 'EIP3091'
|
4208
|
+
}
|
4209
|
+
]
|
4210
|
+
},
|
4193
4211
|
{
|
4194
4212
|
name: 'Metis Stardust Testnet',
|
4195
4213
|
chain: 'ETH',
|
@@ -6539,6 +6557,27 @@ const chainArray = [
|
|
6539
6557
|
}
|
6540
6558
|
]
|
6541
6559
|
},
|
6560
|
+
{
|
6561
|
+
name: 'ChainX-EVM',
|
6562
|
+
chain: 'ChainX',
|
6563
|
+
rpc: [
|
6564
|
+
'https://mainnet.chainx.org/rpc',
|
6565
|
+
'https://mainnet2.chainx.org/rpc'
|
6566
|
+
],
|
6567
|
+
faucets: [],
|
6568
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
6569
|
+
infoURL: 'https://chainx.org',
|
6570
|
+
shortName: 'chainx',
|
6571
|
+
chainId: 1501,
|
6572
|
+
networkId: 1501,
|
6573
|
+
explorers: [
|
6574
|
+
{
|
6575
|
+
name: 'chainx-evm scan',
|
6576
|
+
url: 'https://evm.chainx.org',
|
6577
|
+
standard: 'none'
|
6578
|
+
}
|
6579
|
+
]
|
6580
|
+
},
|
6542
6581
|
{
|
6543
6582
|
name: 'Sherpax Mainnet',
|
6544
6583
|
chain: 'Sherpax Mainnet',
|
@@ -8231,6 +8270,25 @@ const chainArray = [
|
|
8231
8270
|
}
|
8232
8271
|
]
|
8233
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
|
+
},
|
8234
8292
|
{
|
8235
8293
|
name: 'Boba Network Goerli Testnet',
|
8236
8294
|
chain: 'ETH',
|
@@ -9004,6 +9062,29 @@ const chainArray = [
|
|
9004
9062
|
}
|
9005
9063
|
]
|
9006
9064
|
},
|
9065
|
+
{
|
9066
|
+
name: 'LUKSO Testnet',
|
9067
|
+
chain: 'LUKSO Testnet',
|
9068
|
+
icon: 'lukso',
|
9069
|
+
rpc: [
|
9070
|
+
'https://rpc.testnet.lukso.network',
|
9071
|
+
'wss://ws-rpc.testnet.lukso.network'
|
9072
|
+
],
|
9073
|
+
faucets: [ 'https://faucet.testnet.lukso.network' ],
|
9074
|
+
nativeCurrency: { name: 'TestLYX', symbol: 'LYXt', decimals: 18 },
|
9075
|
+
explorers: [
|
9076
|
+
{
|
9077
|
+
name: 'Blockscout',
|
9078
|
+
url: 'https://explorer.execution.testnet.lukso.network',
|
9079
|
+
standard: 'none'
|
9080
|
+
}
|
9081
|
+
],
|
9082
|
+
infoURL: 'https://lukso.network',
|
9083
|
+
shortName: 'lukso-testnet',
|
9084
|
+
chainId: 4201,
|
9085
|
+
networkId: 4201,
|
9086
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
9087
|
+
},
|
9007
9088
|
{
|
9008
9089
|
name: 'Nexi Mainnet',
|
9009
9090
|
chain: 'Nexi',
|
@@ -9197,7 +9278,7 @@ const chainArray = [
|
|
9197
9278
|
chain: 'ETH',
|
9198
9279
|
rpc: [ 'https://rpc.mantle.xyz' ],
|
9199
9280
|
faucets: [],
|
9200
|
-
nativeCurrency: { name: '
|
9281
|
+
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
9201
9282
|
infoURL: 'https://mantle.xyz',
|
9202
9283
|
shortName: 'mantle',
|
9203
9284
|
chainId: 5000,
|
@@ -9215,7 +9296,7 @@ const chainArray = [
|
|
9215
9296
|
chain: 'ETH',
|
9216
9297
|
rpc: [ 'https://rpc.testnet.mantle.xyz' ],
|
9217
9298
|
faucets: [ 'https://faucet.testnet.mantle.xyz' ],
|
9218
|
-
nativeCurrency: { name: 'Testnet
|
9299
|
+
nativeCurrency: { name: 'Testnet Mantle', symbol: 'MNT', decimals: 18 },
|
9219
9300
|
infoURL: 'https://mantle.xyz',
|
9220
9301
|
shortName: 'mantle-testnet',
|
9221
9302
|
chainId: 5001,
|
@@ -9549,6 +9630,46 @@ const chainArray = [
|
|
9549
9630
|
}
|
9550
9631
|
]
|
9551
9632
|
},
|
9633
|
+
{
|
9634
|
+
name: 'UPTN Testnet',
|
9635
|
+
chain: 'UPTN',
|
9636
|
+
icon: 'uptn',
|
9637
|
+
rpc: [ 'https://node-api.alp.uptn.io/v1/ext/rpc' ],
|
9638
|
+
features: [ { name: 'EIP1559' } ],
|
9639
|
+
faucets: [],
|
9640
|
+
nativeCurrency: { name: 'UPTN', symbol: 'UPTN', decimals: 18 },
|
9641
|
+
infoURL: 'https://uptn.io',
|
9642
|
+
shortName: 'UPTN-TEST',
|
9643
|
+
chainId: 6118,
|
9644
|
+
networkId: 6118,
|
9645
|
+
explorers: [
|
9646
|
+
{
|
9647
|
+
name: 'UPTN Testnet Explorer',
|
9648
|
+
url: 'https://testnet.explorer.uptn.io',
|
9649
|
+
standard: 'EIP3091'
|
9650
|
+
}
|
9651
|
+
]
|
9652
|
+
},
|
9653
|
+
{
|
9654
|
+
name: 'UPTN',
|
9655
|
+
chain: 'UPTN',
|
9656
|
+
icon: 'uptn',
|
9657
|
+
rpc: [ 'https://node-api.uptn.io/v1/ext/rpc' ],
|
9658
|
+
features: [ { name: 'EIP1559' } ],
|
9659
|
+
faucets: [],
|
9660
|
+
nativeCurrency: { name: 'UPTN', symbol: 'UPTN', decimals: 18 },
|
9661
|
+
infoURL: 'https://uptn.io',
|
9662
|
+
shortName: 'UPTN',
|
9663
|
+
chainId: 6119,
|
9664
|
+
networkId: 6119,
|
9665
|
+
explorers: [
|
9666
|
+
{
|
9667
|
+
name: 'UPTN Explorer',
|
9668
|
+
url: 'https://explorer.uptn.io',
|
9669
|
+
standard: 'EIP3091'
|
9670
|
+
}
|
9671
|
+
]
|
9672
|
+
},
|
9552
9673
|
{
|
9553
9674
|
name: 'Peerpay',
|
9554
9675
|
chain: 'P2P',
|
@@ -13134,21 +13255,22 @@ const chainArray = [
|
|
13134
13255
|
]
|
13135
13256
|
},
|
13136
13257
|
{
|
13137
|
-
name: '
|
13258
|
+
name: 'Rollux Testnet',
|
13138
13259
|
chain: 'SYS',
|
13139
13260
|
rpc: [
|
13140
13261
|
'https://rpc-tanenbaum.rollux.com',
|
13262
|
+
'https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}',
|
13141
13263
|
'wss://rpc-tanenbaum.rollux.com/wss'
|
13142
13264
|
],
|
13143
|
-
faucets: [],
|
13144
|
-
nativeCurrency: { name: '
|
13145
|
-
infoURL: 'https://
|
13265
|
+
faucets: [ 'https://rollux.id/faucetapp' ],
|
13266
|
+
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'TSYS', decimals: 18 },
|
13267
|
+
infoURL: 'https://rollux.com',
|
13146
13268
|
shortName: 'tsys-rollux',
|
13147
13269
|
chainId: 57000,
|
13148
13270
|
networkId: 57000,
|
13149
13271
|
explorers: [
|
13150
13272
|
{
|
13151
|
-
name: '
|
13273
|
+
name: 'Rollux Testnet Explorer',
|
13152
13274
|
url: 'https://rollux.tanenbaum.io',
|
13153
13275
|
standard: 'EIP3091'
|
13154
13276
|
}
|
@@ -14664,6 +14786,7 @@ const chainArray = [
|
|
14664
14786
|
{
|
14665
14787
|
name: 'Taiko (Alpha-2 Testnet)',
|
14666
14788
|
chain: 'ETH',
|
14789
|
+
status: 'deprecated',
|
14667
14790
|
icon: 'taiko',
|
14668
14791
|
rpc: [ 'https://rpc.a2.taiko.xyz' ],
|
14669
14792
|
faucets: [],
|
@@ -14680,6 +14803,26 @@ const chainArray = [
|
|
14680
14803
|
}
|
14681
14804
|
]
|
14682
14805
|
},
|
14806
|
+
{
|
14807
|
+
name: 'Taiko (Alpha-3 Testnet)',
|
14808
|
+
chain: 'ETH',
|
14809
|
+
status: 'active',
|
14810
|
+
icon: 'taiko',
|
14811
|
+
rpc: [ 'https://rpc.test.taiko.xyz' ],
|
14812
|
+
faucets: [],
|
14813
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14814
|
+
infoURL: 'https://taiko.xyz',
|
14815
|
+
shortName: 'taiko-a3',
|
14816
|
+
chainId: 167005,
|
14817
|
+
networkId: 167005,
|
14818
|
+
explorers: [
|
14819
|
+
{
|
14820
|
+
name: 'blockscout',
|
14821
|
+
url: 'https://explorer.test.taiko.xyz',
|
14822
|
+
standard: 'EIP3091'
|
14823
|
+
}
|
14824
|
+
]
|
14825
|
+
},
|
14683
14826
|
{
|
14684
14827
|
name: 'Condor Test Network',
|
14685
14828
|
chain: 'CONDOR',
|