eth-chainlist 0.0.560 → 0.0.562
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 +281 -35
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.562 (2024-12-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.561 ([ade8c7b](https://github.com/poowf/eth-chainlist/commit/ade8c7b647d3f04da33b2e01689e882555c00bc0))
|
|
9
|
+
* update chain data ([83116e2](https://github.com/poowf/eth-chainlist/commit/83116e21aedf66ee5e9131a09c0adf302692e1fa))
|
|
10
|
+
|
|
11
|
+
### 0.0.561 (2024-12-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.560 ([d77dcd6](https://github.com/poowf/eth-chainlist/commit/d77dcd62349816062134906426571729bf5cc947))
|
|
17
|
+
* update chain data ([424b580](https://github.com/poowf/eth-chainlist/commit/424b58006b1b03744e71d21ba2266b7e3b587d59))
|
|
18
|
+
|
|
3
19
|
### 0.0.560 (2024-12-08)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2321,7 +2321,11 @@ const chainArray = [
|
|
|
2321
2321
|
name: 'Shibarium',
|
|
2322
2322
|
chain: 'Shibarium',
|
|
2323
2323
|
icon: 'shibarium',
|
|
2324
|
-
rpc: [
|
|
2324
|
+
rpc: [
|
|
2325
|
+
'https://www.shibrpc.com',
|
|
2326
|
+
'https://rpc.shibrpc.com',
|
|
2327
|
+
'https://shib.nownodes.io'
|
|
2328
|
+
],
|
|
2325
2329
|
faucets: [],
|
|
2326
2330
|
nativeCurrency: { name: 'BONE Shibarium', symbol: 'BONE', decimals: 18 },
|
|
2327
2331
|
infoURL: 'https://shibariumecosystem.com',
|
|
@@ -3231,11 +3235,11 @@ const chainArray = [
|
|
|
3231
3235
|
]
|
|
3232
3236
|
},
|
|
3233
3237
|
{
|
|
3234
|
-
name: 'Puppynet
|
|
3235
|
-
chain: 'Puppynet
|
|
3238
|
+
name: 'Puppynet',
|
|
3239
|
+
chain: 'Puppynet',
|
|
3236
3240
|
icon: 'shibarium',
|
|
3237
3241
|
rpc: [ 'https://puppynet.shibrpc.com' ],
|
|
3238
|
-
faucets: [ 'https://
|
|
3242
|
+
faucets: [ 'https://shibarium.shib.io/faucet' ],
|
|
3239
3243
|
nativeCurrency: { name: 'BONE', symbol: 'BONE', decimals: 18 },
|
|
3240
3244
|
infoURL: 'https://shibariumecosystem.com',
|
|
3241
3245
|
shortName: 'puppynet',
|
|
@@ -6545,6 +6549,36 @@ const chainArray = [
|
|
|
6545
6549
|
bridges: [ { url: 'https://bridge.appchain.xyz' } ]
|
|
6546
6550
|
}
|
|
6547
6551
|
},
|
|
6552
|
+
{
|
|
6553
|
+
name: 'Form Network',
|
|
6554
|
+
title: 'Form Network',
|
|
6555
|
+
chain: 'form',
|
|
6556
|
+
icon: 'form',
|
|
6557
|
+
rpc: [ 'https://rpc.form.network/http', 'wss://rpc.form.network/ws' ],
|
|
6558
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
6559
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
6560
|
+
infoURL: 'https://info.form.network',
|
|
6561
|
+
shortName: 'formnetwork',
|
|
6562
|
+
chainId: 478,
|
|
6563
|
+
networkId: 478,
|
|
6564
|
+
explorers: [
|
|
6565
|
+
{
|
|
6566
|
+
name: 'Form Explorer',
|
|
6567
|
+
url: 'https://explorer.form.network',
|
|
6568
|
+
standard: 'EIP3091',
|
|
6569
|
+
icon: 'form'
|
|
6570
|
+
}
|
|
6571
|
+
],
|
|
6572
|
+
faucets: [],
|
|
6573
|
+
parent: {
|
|
6574
|
+
type: 'L2',
|
|
6575
|
+
chain: 'eip155-1',
|
|
6576
|
+
bridges: [
|
|
6577
|
+
{ url: 'https://bridge.form.network' },
|
|
6578
|
+
{ url: 'https://op-bridge.form.network' }
|
|
6579
|
+
]
|
|
6580
|
+
}
|
|
6581
|
+
},
|
|
6548
6582
|
{
|
|
6549
6583
|
name: 'World Chain',
|
|
6550
6584
|
chain: 'ETH',
|
|
@@ -7977,6 +8011,24 @@ const chainArray = [
|
|
|
7977
8011
|
chainId: 777,
|
|
7978
8012
|
networkId: 777
|
|
7979
8013
|
},
|
|
8014
|
+
{
|
|
8015
|
+
name: 'AUTHEO Testnet',
|
|
8016
|
+
chain: 'AUTHEO Testnet',
|
|
8017
|
+
rpc: [ 'https://testnet-rpc1.autheo.com' ],
|
|
8018
|
+
faucets: [ 'https://testnet-faucet.autheo.com' ],
|
|
8019
|
+
nativeCurrency: { name: 'THEO', symbol: 'THEO', decimals: 18 },
|
|
8020
|
+
infoURL: 'https://autheo.com',
|
|
8021
|
+
shortName: 'autheo-Test-Chain',
|
|
8022
|
+
chainId: 785,
|
|
8023
|
+
networkId: 785,
|
|
8024
|
+
explorers: [
|
|
8025
|
+
{
|
|
8026
|
+
name: 'tracehawk',
|
|
8027
|
+
url: 'https://testnet-explorer.autheo.com',
|
|
8028
|
+
standard: 'none'
|
|
8029
|
+
}
|
|
8030
|
+
]
|
|
8031
|
+
},
|
|
7980
8032
|
{
|
|
7981
8033
|
name: 'MAAL Chain',
|
|
7982
8034
|
chain: 'MAAL',
|
|
@@ -10038,11 +10090,38 @@ const chainArray = [
|
|
|
10038
10090
|
}
|
|
10039
10091
|
]
|
|
10040
10092
|
},
|
|
10093
|
+
{
|
|
10094
|
+
name: 'Core Blockchain Testnet2',
|
|
10095
|
+
chain: 'Core',
|
|
10096
|
+
icon: 'core',
|
|
10097
|
+
rpc: [ 'https://rpc.test2.btcs.network/' ],
|
|
10098
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10099
|
+
faucets: [ 'https://scan.test2.btcs.network/faucet' ],
|
|
10100
|
+
nativeCurrency: {
|
|
10101
|
+
name: 'Core Blockchain Testnet2 Native Token',
|
|
10102
|
+
symbol: 'tCORE2',
|
|
10103
|
+
decimals: 18
|
|
10104
|
+
},
|
|
10105
|
+
infoURL: 'https://www.coredao.org',
|
|
10106
|
+
shortName: 'tcore2',
|
|
10107
|
+
chainId: 1114,
|
|
10108
|
+
networkId: 1114,
|
|
10109
|
+
slip44: 1,
|
|
10110
|
+
explorers: [
|
|
10111
|
+
{
|
|
10112
|
+
name: 'Core Scan Testnet2',
|
|
10113
|
+
url: 'https://scan.test2.btcs.network',
|
|
10114
|
+
icon: 'core',
|
|
10115
|
+
standard: 'EIP3091'
|
|
10116
|
+
}
|
|
10117
|
+
]
|
|
10118
|
+
},
|
|
10041
10119
|
{
|
|
10042
10120
|
name: 'Core Blockchain Testnet',
|
|
10043
10121
|
chain: 'Core',
|
|
10044
10122
|
icon: 'core',
|
|
10045
10123
|
rpc: [ 'https://rpc.test.btcs.network/' ],
|
|
10124
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10046
10125
|
faucets: [ 'https://scan.test.btcs.network/faucet' ],
|
|
10047
10126
|
nativeCurrency: {
|
|
10048
10127
|
name: 'Core Blockchain Testnet Native Token',
|
|
@@ -10073,6 +10152,7 @@ const chainArray = [
|
|
|
10073
10152
|
'https://core.drpc.org',
|
|
10074
10153
|
'wss://core.drpc.org'
|
|
10075
10154
|
],
|
|
10155
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10076
10156
|
faucets: [],
|
|
10077
10157
|
nativeCurrency: {
|
|
10078
10158
|
name: 'Core Blockchain Native Token',
|
|
@@ -17974,6 +18054,30 @@ const chainArray = [
|
|
|
17974
18054
|
}
|
|
17975
18055
|
]
|
|
17976
18056
|
},
|
|
18057
|
+
{
|
|
18058
|
+
name: 'MST Chain',
|
|
18059
|
+
title: 'MST Chain',
|
|
18060
|
+
chain: 'MST',
|
|
18061
|
+
rpc: [
|
|
18062
|
+
'https://mariorpc.mstblockchain.com',
|
|
18063
|
+
'https://craftrpc.mstblockchain.com'
|
|
18064
|
+
],
|
|
18065
|
+
faucets: [],
|
|
18066
|
+
nativeCurrency: { name: 'MST', symbol: 'MST', decimals: 18 },
|
|
18067
|
+
infoURL: 'https://mstblockchain.com',
|
|
18068
|
+
shortName: 'mst',
|
|
18069
|
+
chainId: 4646,
|
|
18070
|
+
networkId: 4646,
|
|
18071
|
+
slip44: 4646,
|
|
18072
|
+
icon: 'mst',
|
|
18073
|
+
explorers: [
|
|
18074
|
+
{
|
|
18075
|
+
name: 'MST Mainnet Scan',
|
|
18076
|
+
url: 'https://mstscan.com',
|
|
18077
|
+
standard: 'EIP3091'
|
|
18078
|
+
}
|
|
18079
|
+
]
|
|
18080
|
+
},
|
|
17977
18081
|
{
|
|
17978
18082
|
name: 'Gold Chain',
|
|
17979
18083
|
title: 'Gold Chain',
|
|
@@ -18928,6 +19032,26 @@ const chainArray = [
|
|
|
18928
19032
|
}
|
|
18929
19033
|
]
|
|
18930
19034
|
},
|
|
19035
|
+
{
|
|
19036
|
+
name: 'PointPay Mainnet',
|
|
19037
|
+
chain: 'pointpay',
|
|
19038
|
+
rpc: [ 'https://rpc-mainnet.pointpay.io' ],
|
|
19039
|
+
faucets: [],
|
|
19040
|
+
nativeCurrency: { name: 'PointPay', symbol: 'PXP', decimals: 18 },
|
|
19041
|
+
infoURL: 'https://pointpay.io',
|
|
19042
|
+
shortName: 'PP',
|
|
19043
|
+
chainId: 5511,
|
|
19044
|
+
networkId: 5511,
|
|
19045
|
+
icon: 'pointpay',
|
|
19046
|
+
explorers: [
|
|
19047
|
+
{
|
|
19048
|
+
name: 'PointPay Mainnet Explorer',
|
|
19049
|
+
url: 'https://explorer.pointpay.io',
|
|
19050
|
+
icon: 'pointpay',
|
|
19051
|
+
standard: 'EIP3091'
|
|
19052
|
+
}
|
|
19053
|
+
]
|
|
19054
|
+
},
|
|
18931
19055
|
{
|
|
18932
19056
|
name: 'VEX EVM TESTNET',
|
|
18933
19057
|
chain: 'vex',
|
|
@@ -20023,6 +20147,36 @@ const chainArray = [
|
|
|
20023
20147
|
icon: 'nibiru',
|
|
20024
20148
|
explorers: []
|
|
20025
20149
|
},
|
|
20150
|
+
{
|
|
20151
|
+
name: 'XYL TestNet',
|
|
20152
|
+
chain: 'XYL',
|
|
20153
|
+
rpc: [ 'https://xyl-testnet.glitch.me/rpc/' ],
|
|
20154
|
+
faucets: [ 'https://debxylen.github.io/XYL_TestNet/faucet.html' ],
|
|
20155
|
+
nativeCurrency: { name: 'XYL', symbol: 'XYL', decimals: 18 },
|
|
20156
|
+
features: [
|
|
20157
|
+
{ name: 'EIP155' },
|
|
20158
|
+
{ name: 'EIP1559' },
|
|
20159
|
+
{ name: 'XYL-DynaPoW' },
|
|
20160
|
+
{ name: 'Smart Contracts' },
|
|
20161
|
+
{ name: 'Custom Gas Model' },
|
|
20162
|
+
{ name: 'XYL-VM' },
|
|
20163
|
+
{ name: 'Dynamic Difficulty Adjustment' },
|
|
20164
|
+
{ name: 'Low-Latency Transactions' }
|
|
20165
|
+
],
|
|
20166
|
+
infoURL: 'https://debxylen.github.io/XYL_TestNet',
|
|
20167
|
+
shortName: 'xyl',
|
|
20168
|
+
chainId: 6934,
|
|
20169
|
+
networkId: 6934,
|
|
20170
|
+
icon: 'xyl-test',
|
|
20171
|
+
explorers: [
|
|
20172
|
+
{
|
|
20173
|
+
name: 'XYL Explorer',
|
|
20174
|
+
url: 'https://debxylen.github.io/BlockExplorer',
|
|
20175
|
+
icon: 'xyl-test',
|
|
20176
|
+
standard: 'EIP3091'
|
|
20177
|
+
}
|
|
20178
|
+
]
|
|
20179
|
+
},
|
|
20026
20180
|
{
|
|
20027
20181
|
name: 'Laika Mainnet',
|
|
20028
20182
|
chain: 'LAIKA',
|
|
@@ -30129,6 +30283,36 @@ const chainArray = [
|
|
|
30129
30283
|
}
|
|
30130
30284
|
]
|
|
30131
30285
|
},
|
|
30286
|
+
{
|
|
30287
|
+
name: 'Treasure',
|
|
30288
|
+
chain: 'Treasure',
|
|
30289
|
+
shortName: 'treasure',
|
|
30290
|
+
chainId: 61166,
|
|
30291
|
+
networkId: 61166,
|
|
30292
|
+
nativeCurrency: { name: 'MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
30293
|
+
slip44: 1,
|
|
30294
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
30295
|
+
infoURL: 'https://app.treasure.lol',
|
|
30296
|
+
icon: 'treasure',
|
|
30297
|
+
rpc: [ 'https://rpc.treasure.lol', 'wss://rpc.treasure.lol/ws' ],
|
|
30298
|
+
faucets: [
|
|
30299
|
+
'https://app.treasure.lol/chain/faucet',
|
|
30300
|
+
'https://thirdweb.com/treasure'
|
|
30301
|
+
],
|
|
30302
|
+
explorers: [
|
|
30303
|
+
{
|
|
30304
|
+
name: 'Treasure Block Explorer',
|
|
30305
|
+
url: 'https://treasurescan.io',
|
|
30306
|
+
icon: 'treasure',
|
|
30307
|
+
standard: 'EIP3091'
|
|
30308
|
+
}
|
|
30309
|
+
],
|
|
30310
|
+
parent: {
|
|
30311
|
+
type: 'L2',
|
|
30312
|
+
chain: 'eip155-1',
|
|
30313
|
+
bridges: [ { url: 'https://app.treasure.lol/chain/bridge' } ]
|
|
30314
|
+
}
|
|
30315
|
+
},
|
|
30132
30316
|
{
|
|
30133
30317
|
name: 'KaiChain',
|
|
30134
30318
|
chain: 'KaiChain',
|
|
@@ -30852,7 +31036,7 @@ const chainArray = [
|
|
|
30852
31036
|
icon: 'wadz',
|
|
30853
31037
|
rpc: [ 'https://rpc-testnet.wadzchain.io' ],
|
|
30854
31038
|
faucets: [ 'https://faucet-testnet.wadzchain.io' ],
|
|
30855
|
-
nativeCurrency: { name: '
|
|
31039
|
+
nativeCurrency: { name: 'WadzChain Coin', symbol: 'WCO', decimals: 18 },
|
|
30856
31040
|
infoURL: 'https://www.wadzchain-network.io',
|
|
30857
31041
|
shortName: 'wadzchain-testnet',
|
|
30858
31042
|
chainId: 71117,
|
|
@@ -31826,6 +32010,38 @@ const chainArray = [
|
|
|
31826
32010
|
}
|
|
31827
32011
|
]
|
|
31828
32012
|
},
|
|
32013
|
+
{
|
|
32014
|
+
name: 'O Chain',
|
|
32015
|
+
chain: 'O',
|
|
32016
|
+
rpc: [
|
|
32017
|
+
'https://rpc.o.xyz',
|
|
32018
|
+
'https://84841.rpc.thirdweb.com',
|
|
32019
|
+
'wss://rpc.o.xyz'
|
|
32020
|
+
],
|
|
32021
|
+
faucets: [],
|
|
32022
|
+
nativeCurrency: { name: 'O.XYZ', symbol: 'O', decimals: 18 },
|
|
32023
|
+
infoURL: 'https://o.xyz',
|
|
32024
|
+
shortName: 'O',
|
|
32025
|
+
chainId: 84841,
|
|
32026
|
+
networkId: 84841,
|
|
32027
|
+
slip44: 1,
|
|
32028
|
+
parent: {
|
|
32029
|
+
type: 'L2',
|
|
32030
|
+
chain: 'eip155-1',
|
|
32031
|
+
bridges: [
|
|
32032
|
+
{ url: 'https://bridge.o.xyz' },
|
|
32033
|
+
{ url: 'https://superbridge.o.xyz' }
|
|
32034
|
+
]
|
|
32035
|
+
},
|
|
32036
|
+
explorers: [
|
|
32037
|
+
{
|
|
32038
|
+
name: 'blockscout',
|
|
32039
|
+
url: 'https://explorer.o.xyz',
|
|
32040
|
+
icon: 'blockscout',
|
|
32041
|
+
standard: 'EIP3091'
|
|
32042
|
+
}
|
|
32043
|
+
]
|
|
32044
|
+
},
|
|
31829
32045
|
{
|
|
31830
32046
|
name: 'Aerie Network',
|
|
31831
32047
|
chain: 'Aerie',
|
|
@@ -33593,27 +33809,27 @@ const chainArray = [
|
|
|
33593
33809
|
title: 'Form Testnet',
|
|
33594
33810
|
chain: 'formtestnet',
|
|
33595
33811
|
rpc: [
|
|
33596
|
-
'https://
|
|
33597
|
-
'wss://
|
|
33812
|
+
'https://sepolia-rpc.form.network/http',
|
|
33813
|
+
'wss://sepolia-rpc.form.network/ws'
|
|
33598
33814
|
],
|
|
33599
33815
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
33600
33816
|
faucets: [ 'https://info.form.network/faucet' ],
|
|
33601
33817
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
33602
|
-
infoURL: 'https://form.network
|
|
33818
|
+
infoURL: 'https://sepolia-info.form.network',
|
|
33603
33819
|
shortName: 'formtestnet',
|
|
33604
33820
|
chainId: 132902,
|
|
33605
33821
|
networkId: 132902,
|
|
33606
33822
|
explorers: [
|
|
33607
33823
|
{
|
|
33608
33824
|
name: 'Form Testnet explorer',
|
|
33609
|
-
url: 'https://
|
|
33825
|
+
url: 'https://sepolia-explorer.form.network',
|
|
33610
33826
|
standard: 'EIP3091'
|
|
33611
33827
|
}
|
|
33612
33828
|
],
|
|
33613
33829
|
parent: {
|
|
33614
33830
|
type: 'L2',
|
|
33615
33831
|
chain: 'eip155-11155111',
|
|
33616
|
-
bridges: [ { url: 'https://bridge.form.network
|
|
33832
|
+
bridges: [ { url: 'https://sepolia-op-bridge.form.network' } ]
|
|
33617
33833
|
}
|
|
33618
33834
|
},
|
|
33619
33835
|
{
|
|
@@ -37548,31 +37764,18 @@ const chainArray = [
|
|
|
37548
37764
|
nativeCurrency: { name: 'Testnet MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
37549
37765
|
slip44: 1,
|
|
37550
37766
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
37551
|
-
infoURL: 'https://
|
|
37767
|
+
infoURL: 'https://app.treasure.lol',
|
|
37552
37768
|
icon: 'treasureruby',
|
|
37553
|
-
rpc: [
|
|
37554
|
-
|
|
37555
|
-
|
|
37556
|
-
],
|
|
37557
|
-
|
|
37558
|
-
explorers: [
|
|
37559
|
-
{
|
|
37560
|
-
name: 'treasurescan',
|
|
37561
|
-
url: 'https://testnet.treasurescan.io',
|
|
37562
|
-
icon: 'treasure',
|
|
37563
|
-
standard: 'EIP3091'
|
|
37564
|
-
}
|
|
37565
|
-
],
|
|
37566
|
-
parent: {
|
|
37567
|
-
type: 'L2',
|
|
37568
|
-
chain: 'eip155-1',
|
|
37569
|
-
bridges: [ { url: 'https://portal.treasure.lol/bridge' } ]
|
|
37570
|
-
}
|
|
37769
|
+
rpc: [],
|
|
37770
|
+
faucets: [],
|
|
37771
|
+
status: 'deprecated',
|
|
37772
|
+
explorers: [],
|
|
37773
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
|
37571
37774
|
},
|
|
37572
37775
|
{
|
|
37573
37776
|
name: 'Treasure Topaz',
|
|
37574
37777
|
chain: 'Treasure Topaz',
|
|
37575
|
-
shortName: '
|
|
37778
|
+
shortName: 'treasure-topaz',
|
|
37576
37779
|
chainId: 978658,
|
|
37577
37780
|
networkId: 978658,
|
|
37578
37781
|
nativeCurrency: { name: 'Testnet MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
@@ -37590,7 +37793,7 @@ const chainArray = [
|
|
|
37590
37793
|
],
|
|
37591
37794
|
explorers: [
|
|
37592
37795
|
{
|
|
37593
|
-
name: '
|
|
37796
|
+
name: 'Treasure Topaz Block Explorer',
|
|
37594
37797
|
url: 'https://topaz.treasurescan.io',
|
|
37595
37798
|
icon: 'treasure',
|
|
37596
37799
|
standard: 'EIP3091'
|
|
@@ -37599,10 +37802,7 @@ const chainArray = [
|
|
|
37599
37802
|
parent: {
|
|
37600
37803
|
type: 'L2',
|
|
37601
37804
|
chain: 'eip155-1',
|
|
37602
|
-
bridges: [
|
|
37603
|
-
{ url: 'https://app.treasure.lol/chain/bridge' },
|
|
37604
|
-
{ url: 'https://portal.topaz.treasure.lol/bridge' }
|
|
37605
|
-
]
|
|
37805
|
+
bridges: [ { url: 'https://app.treasure.lol/chain/bridge' } ]
|
|
37606
37806
|
}
|
|
37607
37807
|
},
|
|
37608
37808
|
{
|
|
@@ -38476,6 +38676,26 @@ const chainArray = [
|
|
|
38476
38676
|
}
|
|
38477
38677
|
]
|
|
38478
38678
|
},
|
|
38679
|
+
{
|
|
38680
|
+
name: 'PointPay Testnet',
|
|
38681
|
+
chain: 'pointpay',
|
|
38682
|
+
rpc: [ 'https://rpc-testnet.pointpay.io' ],
|
|
38683
|
+
faucets: [],
|
|
38684
|
+
nativeCurrency: { name: 'PointPay', symbol: 'PXP', decimals: 18 },
|
|
38685
|
+
infoURL: 'https://pointpay.io',
|
|
38686
|
+
shortName: 'PPTEST',
|
|
38687
|
+
chainId: 5511555,
|
|
38688
|
+
networkId: 5511555,
|
|
38689
|
+
icon: 'pointpay',
|
|
38690
|
+
explorers: [
|
|
38691
|
+
{
|
|
38692
|
+
name: 'PointPay Testnet Explorer',
|
|
38693
|
+
url: 'https://testnet.pointpay.io',
|
|
38694
|
+
icon: 'pointpay',
|
|
38695
|
+
standard: 'EIP3091'
|
|
38696
|
+
}
|
|
38697
|
+
]
|
|
38698
|
+
},
|
|
38479
38699
|
{
|
|
38480
38700
|
name: 'Imversed Mainnet',
|
|
38481
38701
|
chain: 'Imversed',
|
|
@@ -39929,6 +40149,32 @@ const chainArray = [
|
|
|
39929
40149
|
}
|
|
39930
40150
|
]
|
|
39931
40151
|
},
|
|
40152
|
+
{
|
|
40153
|
+
name: 'Stavanger Public Testnet',
|
|
40154
|
+
chain: 'stavanger',
|
|
40155
|
+
rpc: [ 'https://rpc.stavanger.gateway.fm' ],
|
|
40156
|
+
faucets: [ 'https://faucet.stavanger.gateway.fm' ],
|
|
40157
|
+
nativeCurrency: { name: 'Polygon', symbol: 'POL', decimals: 18 },
|
|
40158
|
+
features: [ { name: 'EIP155' } ],
|
|
40159
|
+
infoURL: 'https://gateway.fm',
|
|
40160
|
+
shortName: 'stavanger',
|
|
40161
|
+
chainId: 50591822,
|
|
40162
|
+
networkId: 50591822,
|
|
40163
|
+
icon: 'stavanger',
|
|
40164
|
+
explorers: [
|
|
40165
|
+
{
|
|
40166
|
+
name: 'BlockScout',
|
|
40167
|
+
url: 'https://explorer.stavanger.gateway.fm',
|
|
40168
|
+
icon: 'stavanger',
|
|
40169
|
+
standard: 'EIP3091'
|
|
40170
|
+
}
|
|
40171
|
+
],
|
|
40172
|
+
parent: {
|
|
40173
|
+
type: 'L2',
|
|
40174
|
+
chain: 'eip155-11155111',
|
|
40175
|
+
bridges: [ { url: 'https://bridge.stavanger.gateway.fm' } ]
|
|
40176
|
+
}
|
|
40177
|
+
},
|
|
39932
40178
|
{
|
|
39933
40179
|
name: 'Deviant Token Blockchain',
|
|
39934
40180
|
chain: 'DTBC',
|