eth-chainlist 0.0.559 → 0.0.561
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 +269 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.561 (2024-12-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.560 ([d77dcd6](https://github.com/poowf/eth-chainlist/commit/d77dcd62349816062134906426571729bf5cc947))
|
|
9
|
+
* update chain data ([424b580](https://github.com/poowf/eth-chainlist/commit/424b58006b1b03744e71d21ba2266b7e3b587d59))
|
|
10
|
+
|
|
11
|
+
### 0.0.560 (2024-12-08)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.559 ([2aeef40](https://github.com/poowf/eth-chainlist/commit/2aeef40eb7f6282cdb13488aed65e7f5ba09a0b7))
|
|
17
|
+
* update chain data ([68edb1b](https://github.com/poowf/eth-chainlist/commit/68edb1b750023f88c245a4d7321102dea75c0830))
|
|
18
|
+
|
|
3
19
|
### 0.0.559 (2024-12-07)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -5617,9 +5617,9 @@ const chainArray = [
|
|
|
5617
5617
|
}
|
|
5618
5618
|
},
|
|
5619
5619
|
{
|
|
5620
|
-
name: 'GRVT
|
|
5620
|
+
name: 'GRVT Exchange',
|
|
5621
5621
|
chain: 'ETH',
|
|
5622
|
-
rpc: [],
|
|
5622
|
+
rpc: [ 'https://rpc.grvt.io' ],
|
|
5623
5623
|
faucets: [],
|
|
5624
5624
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
5625
5625
|
infoURL: 'https://grvt.io/',
|
|
@@ -5630,9 +5630,9 @@ const chainArray = [
|
|
|
5630
5630
|
explorers: []
|
|
5631
5631
|
},
|
|
5632
5632
|
{
|
|
5633
|
-
name: 'GRVT
|
|
5633
|
+
name: 'GRVT Exchange Testnet',
|
|
5634
5634
|
chain: 'ETH',
|
|
5635
|
-
rpc: [],
|
|
5635
|
+
rpc: [ 'https://zkrpc.testnet.grvt.io' ],
|
|
5636
5636
|
faucets: [],
|
|
5637
5637
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
5638
5638
|
infoURL: 'https://grvt.io/',
|
|
@@ -10038,11 +10038,38 @@ const chainArray = [
|
|
|
10038
10038
|
}
|
|
10039
10039
|
]
|
|
10040
10040
|
},
|
|
10041
|
+
{
|
|
10042
|
+
name: 'Core Blockchain Testnet2',
|
|
10043
|
+
chain: 'Core',
|
|
10044
|
+
icon: 'core',
|
|
10045
|
+
rpc: [ 'https://rpc.test2.btcs.network/' ],
|
|
10046
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10047
|
+
faucets: [ 'https://scan.test2.btcs.network/faucet' ],
|
|
10048
|
+
nativeCurrency: {
|
|
10049
|
+
name: 'Core Blockchain Testnet2 Native Token',
|
|
10050
|
+
symbol: 'tCORE2',
|
|
10051
|
+
decimals: 18
|
|
10052
|
+
},
|
|
10053
|
+
infoURL: 'https://www.coredao.org',
|
|
10054
|
+
shortName: 'tcore2',
|
|
10055
|
+
chainId: 1114,
|
|
10056
|
+
networkId: 1114,
|
|
10057
|
+
slip44: 1,
|
|
10058
|
+
explorers: [
|
|
10059
|
+
{
|
|
10060
|
+
name: 'Core Scan Testnet2',
|
|
10061
|
+
url: 'https://scan.test2.btcs.network',
|
|
10062
|
+
icon: 'core',
|
|
10063
|
+
standard: 'EIP3091'
|
|
10064
|
+
}
|
|
10065
|
+
]
|
|
10066
|
+
},
|
|
10041
10067
|
{
|
|
10042
10068
|
name: 'Core Blockchain Testnet',
|
|
10043
10069
|
chain: 'Core',
|
|
10044
10070
|
icon: 'core',
|
|
10045
10071
|
rpc: [ 'https://rpc.test.btcs.network/' ],
|
|
10072
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10046
10073
|
faucets: [ 'https://scan.test.btcs.network/faucet' ],
|
|
10047
10074
|
nativeCurrency: {
|
|
10048
10075
|
name: 'Core Blockchain Testnet Native Token',
|
|
@@ -10073,6 +10100,7 @@ const chainArray = [
|
|
|
10073
10100
|
'https://core.drpc.org',
|
|
10074
10101
|
'wss://core.drpc.org'
|
|
10075
10102
|
],
|
|
10103
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10076
10104
|
faucets: [],
|
|
10077
10105
|
nativeCurrency: {
|
|
10078
10106
|
name: 'Core Blockchain Native Token',
|
|
@@ -12982,38 +13010,44 @@ const chainArray = [
|
|
|
12982
13010
|
explorers: []
|
|
12983
13011
|
},
|
|
12984
13012
|
{
|
|
12985
|
-
name: '
|
|
12986
|
-
chain: '
|
|
12987
|
-
rpc: [
|
|
13013
|
+
name: 'Swellchain',
|
|
13014
|
+
chain: 'ETH',
|
|
13015
|
+
rpc: [
|
|
13016
|
+
'https://swell-mainnet.alt.technology',
|
|
13017
|
+
'https://rpc.ankr.com/swell'
|
|
13018
|
+
],
|
|
12988
13019
|
faucets: [],
|
|
12989
13020
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
12990
13021
|
infoURL: 'https://app.swellnetwork.io/layer2/swell-l2',
|
|
12991
|
-
shortName: '
|
|
13022
|
+
shortName: 'swellchain',
|
|
12992
13023
|
chainId: 1923,
|
|
12993
13024
|
networkId: 1923,
|
|
13025
|
+
icon: 'swell',
|
|
12994
13026
|
explorers: [
|
|
12995
13027
|
{
|
|
12996
|
-
name: '
|
|
12997
|
-
|
|
12998
|
-
url: 'https://swell-mainnet-explorer.alt.technology',
|
|
13028
|
+
name: 'Swellchain Explorer',
|
|
13029
|
+
url: 'https://explorer.swellnetwork.io',
|
|
12999
13030
|
standard: 'none'
|
|
13000
13031
|
}
|
|
13001
13032
|
]
|
|
13002
13033
|
},
|
|
13003
13034
|
{
|
|
13004
|
-
name: '
|
|
13005
|
-
chain: '
|
|
13006
|
-
rpc: [
|
|
13035
|
+
name: 'Swellchain Testnet',
|
|
13036
|
+
chain: 'ETH',
|
|
13037
|
+
rpc: [
|
|
13038
|
+
'https://swell-testnet.alt.technology',
|
|
13039
|
+
'https://rpc.ankr.com/swell-testnet'
|
|
13040
|
+
],
|
|
13007
13041
|
faucets: [],
|
|
13008
13042
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
13009
13043
|
infoURL: 'https://app.swellnetwork.io/layer2/swell-l2',
|
|
13010
|
-
shortName: '
|
|
13044
|
+
shortName: 'swellchain-sep',
|
|
13011
13045
|
chainId: 1924,
|
|
13012
13046
|
networkId: 1924,
|
|
13047
|
+
icon: 'swell',
|
|
13013
13048
|
explorers: [
|
|
13014
13049
|
{
|
|
13015
|
-
name: '
|
|
13016
|
-
icon: 'swell',
|
|
13050
|
+
name: 'Swellchain Testnet Explorer',
|
|
13017
13051
|
url: 'https://swell-testnet-explorer.alt.technology',
|
|
13018
13052
|
standard: 'none'
|
|
13019
13053
|
}
|
|
@@ -18922,6 +18956,26 @@ const chainArray = [
|
|
|
18922
18956
|
}
|
|
18923
18957
|
]
|
|
18924
18958
|
},
|
|
18959
|
+
{
|
|
18960
|
+
name: 'PointPay Mainnet',
|
|
18961
|
+
chain: 'pointpay',
|
|
18962
|
+
rpc: [ 'https://rpc-mainnet.pointpay.io' ],
|
|
18963
|
+
faucets: [],
|
|
18964
|
+
nativeCurrency: { name: 'PointPay', symbol: 'PXP', decimals: 18 },
|
|
18965
|
+
infoURL: 'https://pointpay.io',
|
|
18966
|
+
shortName: 'PP',
|
|
18967
|
+
chainId: 5511,
|
|
18968
|
+
networkId: 5511,
|
|
18969
|
+
icon: 'pointpay',
|
|
18970
|
+
explorers: [
|
|
18971
|
+
{
|
|
18972
|
+
name: 'PointPay Mainnet Explorer',
|
|
18973
|
+
url: 'https://explorer.pointpay.io',
|
|
18974
|
+
icon: 'pointpay',
|
|
18975
|
+
standard: 'EIP3091'
|
|
18976
|
+
}
|
|
18977
|
+
]
|
|
18978
|
+
},
|
|
18925
18979
|
{
|
|
18926
18980
|
name: 'VEX EVM TESTNET',
|
|
18927
18981
|
chain: 'vex',
|
|
@@ -20017,6 +20071,36 @@ const chainArray = [
|
|
|
20017
20071
|
icon: 'nibiru',
|
|
20018
20072
|
explorers: []
|
|
20019
20073
|
},
|
|
20074
|
+
{
|
|
20075
|
+
name: 'XYL TestNet',
|
|
20076
|
+
chain: 'XYL',
|
|
20077
|
+
rpc: [ 'https://xyl-testnet.glitch.me/rpc/' ],
|
|
20078
|
+
faucets: [ 'https://debxylen.github.io/XYL_TestNet/faucet.html' ],
|
|
20079
|
+
nativeCurrency: { name: 'XYL', symbol: 'XYL', decimals: 18 },
|
|
20080
|
+
features: [
|
|
20081
|
+
{ name: 'EIP155' },
|
|
20082
|
+
{ name: 'EIP1559' },
|
|
20083
|
+
{ name: 'XYL-DynaPoW' },
|
|
20084
|
+
{ name: 'Smart Contracts' },
|
|
20085
|
+
{ name: 'Custom Gas Model' },
|
|
20086
|
+
{ name: 'XYL-VM' },
|
|
20087
|
+
{ name: 'Dynamic Difficulty Adjustment' },
|
|
20088
|
+
{ name: 'Low-Latency Transactions' }
|
|
20089
|
+
],
|
|
20090
|
+
infoURL: 'https://debxylen.github.io/XYL_TestNet',
|
|
20091
|
+
shortName: 'xyl',
|
|
20092
|
+
chainId: 6934,
|
|
20093
|
+
networkId: 6934,
|
|
20094
|
+
icon: 'xyl-test',
|
|
20095
|
+
explorers: [
|
|
20096
|
+
{
|
|
20097
|
+
name: 'XYL Explorer',
|
|
20098
|
+
url: 'https://debxylen.github.io/BlockExplorer',
|
|
20099
|
+
icon: 'xyl-test',
|
|
20100
|
+
standard: 'EIP3091'
|
|
20101
|
+
}
|
|
20102
|
+
]
|
|
20103
|
+
},
|
|
20020
20104
|
{
|
|
20021
20105
|
name: 'Laika Mainnet',
|
|
20022
20106
|
chain: 'LAIKA',
|
|
@@ -28640,6 +28724,36 @@ const chainArray = [
|
|
|
28640
28724
|
}
|
|
28641
28725
|
]
|
|
28642
28726
|
},
|
|
28727
|
+
{
|
|
28728
|
+
name: 'Formicarium',
|
|
28729
|
+
title: 'MemeCore Testnet Formicarium',
|
|
28730
|
+
chain: 'MemeCore',
|
|
28731
|
+
icon: 'memecore',
|
|
28732
|
+
rpc: [
|
|
28733
|
+
'https://rpc.formicarium.memecore.net',
|
|
28734
|
+
'wss://ws.formicarium.memecore.net'
|
|
28735
|
+
],
|
|
28736
|
+
faucets: [ 'https://faucet.memecore.com/formicarium' ],
|
|
28737
|
+
nativeCurrency: { name: 'Formicarium M', symbol: 'M', decimals: 18 },
|
|
28738
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
28739
|
+
infoURL: 'https://memecore.com',
|
|
28740
|
+
shortName: 'form',
|
|
28741
|
+
chainId: 43521,
|
|
28742
|
+
networkId: 43521,
|
|
28743
|
+
slip44: 1,
|
|
28744
|
+
explorers: [
|
|
28745
|
+
{
|
|
28746
|
+
name: 'OKX-Formicarium',
|
|
28747
|
+
url: 'https://www.okx.com/web3/explorer/formicarium-testnet',
|
|
28748
|
+
standard: 'EIP3091'
|
|
28749
|
+
},
|
|
28750
|
+
{
|
|
28751
|
+
name: 'MemeCoreScan-Formicarium',
|
|
28752
|
+
url: 'https://formicarium.memecorescan.io',
|
|
28753
|
+
standard: 'EIP3091'
|
|
28754
|
+
}
|
|
28755
|
+
]
|
|
28756
|
+
},
|
|
28643
28757
|
{
|
|
28644
28758
|
name: 'ZKFair Testnet',
|
|
28645
28759
|
chain: 'ETH',
|
|
@@ -30093,6 +30207,36 @@ const chainArray = [
|
|
|
30093
30207
|
}
|
|
30094
30208
|
]
|
|
30095
30209
|
},
|
|
30210
|
+
{
|
|
30211
|
+
name: 'Treasure',
|
|
30212
|
+
chain: 'Treasure',
|
|
30213
|
+
shortName: 'treasure',
|
|
30214
|
+
chainId: 61166,
|
|
30215
|
+
networkId: 61166,
|
|
30216
|
+
nativeCurrency: { name: 'MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
30217
|
+
slip44: 1,
|
|
30218
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
30219
|
+
infoURL: 'https://app.treasure.lol',
|
|
30220
|
+
icon: 'treasure',
|
|
30221
|
+
rpc: [ 'https://rpc.treasure.lol', 'wss://rpc.treasure.lol/ws' ],
|
|
30222
|
+
faucets: [
|
|
30223
|
+
'https://app.treasure.lol/chain/faucet',
|
|
30224
|
+
'https://thirdweb.com/treasure'
|
|
30225
|
+
],
|
|
30226
|
+
explorers: [
|
|
30227
|
+
{
|
|
30228
|
+
name: 'Treasure Block Explorer',
|
|
30229
|
+
url: 'https://treasurescan.io',
|
|
30230
|
+
icon: 'treasure',
|
|
30231
|
+
standard: 'EIP3091'
|
|
30232
|
+
}
|
|
30233
|
+
],
|
|
30234
|
+
parent: {
|
|
30235
|
+
type: 'L2',
|
|
30236
|
+
chain: 'eip155-1',
|
|
30237
|
+
bridges: [ { url: 'https://app.treasure.lol/chain/bridge' } ]
|
|
30238
|
+
}
|
|
30239
|
+
},
|
|
30096
30240
|
{
|
|
30097
30241
|
name: 'KaiChain',
|
|
30098
30242
|
chain: 'KaiChain',
|
|
@@ -30816,7 +30960,7 @@ const chainArray = [
|
|
|
30816
30960
|
icon: 'wadz',
|
|
30817
30961
|
rpc: [ 'https://rpc-testnet.wadzchain.io' ],
|
|
30818
30962
|
faucets: [ 'https://faucet-testnet.wadzchain.io' ],
|
|
30819
|
-
nativeCurrency: { name: '
|
|
30963
|
+
nativeCurrency: { name: 'WadzChain Coin', symbol: 'WCO', decimals: 18 },
|
|
30820
30964
|
infoURL: 'https://www.wadzchain-network.io',
|
|
30821
30965
|
shortName: 'wadzchain-testnet',
|
|
30822
30966
|
chainId: 71117,
|
|
@@ -31790,6 +31934,38 @@ const chainArray = [
|
|
|
31790
31934
|
}
|
|
31791
31935
|
]
|
|
31792
31936
|
},
|
|
31937
|
+
{
|
|
31938
|
+
name: 'O Chain',
|
|
31939
|
+
chain: 'O',
|
|
31940
|
+
rpc: [
|
|
31941
|
+
'https://rpc.o.xyz',
|
|
31942
|
+
'https://84841.rpc.thirdweb.com',
|
|
31943
|
+
'wss://rpc.o.xyz'
|
|
31944
|
+
],
|
|
31945
|
+
faucets: [],
|
|
31946
|
+
nativeCurrency: { name: 'O.XYZ', symbol: 'O', decimals: 18 },
|
|
31947
|
+
infoURL: 'https://o.xyz',
|
|
31948
|
+
shortName: 'O',
|
|
31949
|
+
chainId: 84841,
|
|
31950
|
+
networkId: 84841,
|
|
31951
|
+
slip44: 1,
|
|
31952
|
+
parent: {
|
|
31953
|
+
type: 'L2',
|
|
31954
|
+
chain: 'eip155-1',
|
|
31955
|
+
bridges: [
|
|
31956
|
+
{ url: 'https://bridge.o.xyz' },
|
|
31957
|
+
{ url: 'https://superbridge.o.xyz' }
|
|
31958
|
+
]
|
|
31959
|
+
},
|
|
31960
|
+
explorers: [
|
|
31961
|
+
{
|
|
31962
|
+
name: 'blockscout',
|
|
31963
|
+
url: 'https://explorer.o.xyz',
|
|
31964
|
+
icon: 'blockscout',
|
|
31965
|
+
standard: 'EIP3091'
|
|
31966
|
+
}
|
|
31967
|
+
]
|
|
31968
|
+
},
|
|
31793
31969
|
{
|
|
31794
31970
|
name: 'Aerie Network',
|
|
31795
31971
|
chain: 'Aerie',
|
|
@@ -33920,6 +34096,26 @@ const chainArray = [
|
|
|
33920
34096
|
chainId: 171000,
|
|
33921
34097
|
networkId: 171000
|
|
33922
34098
|
},
|
|
34099
|
+
{
|
|
34100
|
+
name: 'Wadzchain Mainnet',
|
|
34101
|
+
title: 'Wadzchain Mainnet',
|
|
34102
|
+
chain: 'Wadzchain-Mainnet',
|
|
34103
|
+
icon: 'wadz',
|
|
34104
|
+
rpc: [ 'https://rpc.wadzchain.io' ],
|
|
34105
|
+
faucets: [],
|
|
34106
|
+
nativeCurrency: { name: 'WadzChain Token', symbol: 'WCO', decimals: 18 },
|
|
34107
|
+
infoURL: 'https://www.wadzchain-network.io',
|
|
34108
|
+
shortName: 'wadzchain-mainnet',
|
|
34109
|
+
chainId: 171717,
|
|
34110
|
+
networkId: 171717,
|
|
34111
|
+
explorers: [
|
|
34112
|
+
{
|
|
34113
|
+
name: 'Wadzchain Mainnet Explorer',
|
|
34114
|
+
url: 'https://scan.wadzchain.io',
|
|
34115
|
+
standard: 'EIP3091'
|
|
34116
|
+
}
|
|
34117
|
+
]
|
|
34118
|
+
},
|
|
33923
34119
|
{
|
|
33924
34120
|
name: 'Chronicle - Lit Protocol Testnet',
|
|
33925
34121
|
chain: 'LPC',
|
|
@@ -37492,31 +37688,18 @@ const chainArray = [
|
|
|
37492
37688
|
nativeCurrency: { name: 'Testnet MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
37493
37689
|
slip44: 1,
|
|
37494
37690
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
37495
|
-
infoURL: 'https://
|
|
37691
|
+
infoURL: 'https://app.treasure.lol',
|
|
37496
37692
|
icon: 'treasureruby',
|
|
37497
|
-
rpc: [
|
|
37498
|
-
|
|
37499
|
-
|
|
37500
|
-
],
|
|
37501
|
-
|
|
37502
|
-
explorers: [
|
|
37503
|
-
{
|
|
37504
|
-
name: 'treasurescan',
|
|
37505
|
-
url: 'https://testnet.treasurescan.io',
|
|
37506
|
-
icon: 'treasure',
|
|
37507
|
-
standard: 'EIP3091'
|
|
37508
|
-
}
|
|
37509
|
-
],
|
|
37510
|
-
parent: {
|
|
37511
|
-
type: 'L2',
|
|
37512
|
-
chain: 'eip155-1',
|
|
37513
|
-
bridges: [ { url: 'https://portal.treasure.lol/bridge' } ]
|
|
37514
|
-
}
|
|
37693
|
+
rpc: [],
|
|
37694
|
+
faucets: [],
|
|
37695
|
+
status: 'deprecated',
|
|
37696
|
+
explorers: [],
|
|
37697
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
|
37515
37698
|
},
|
|
37516
37699
|
{
|
|
37517
37700
|
name: 'Treasure Topaz',
|
|
37518
37701
|
chain: 'Treasure Topaz',
|
|
37519
|
-
shortName: '
|
|
37702
|
+
shortName: 'treasure-topaz',
|
|
37520
37703
|
chainId: 978658,
|
|
37521
37704
|
networkId: 978658,
|
|
37522
37705
|
nativeCurrency: { name: 'Testnet MAGIC', symbol: 'MAGIC', decimals: 18 },
|
|
@@ -37534,7 +37717,7 @@ const chainArray = [
|
|
|
37534
37717
|
],
|
|
37535
37718
|
explorers: [
|
|
37536
37719
|
{
|
|
37537
|
-
name: '
|
|
37720
|
+
name: 'Treasure Topaz Block Explorer',
|
|
37538
37721
|
url: 'https://topaz.treasurescan.io',
|
|
37539
37722
|
icon: 'treasure',
|
|
37540
37723
|
standard: 'EIP3091'
|
|
@@ -37543,10 +37726,7 @@ const chainArray = [
|
|
|
37543
37726
|
parent: {
|
|
37544
37727
|
type: 'L2',
|
|
37545
37728
|
chain: 'eip155-1',
|
|
37546
|
-
bridges: [
|
|
37547
|
-
{ url: 'https://app.treasure.lol/chain/bridge' },
|
|
37548
|
-
{ url: 'https://portal.topaz.treasure.lol/bridge' }
|
|
37549
|
-
]
|
|
37729
|
+
bridges: [ { url: 'https://app.treasure.lol/chain/bridge' } ]
|
|
37550
37730
|
}
|
|
37551
37731
|
},
|
|
37552
37732
|
{
|
|
@@ -38420,6 +38600,26 @@ const chainArray = [
|
|
|
38420
38600
|
}
|
|
38421
38601
|
]
|
|
38422
38602
|
},
|
|
38603
|
+
{
|
|
38604
|
+
name: 'PointPay Testnet',
|
|
38605
|
+
chain: 'pointpay',
|
|
38606
|
+
rpc: [ 'https://rpc-testnet.pointpay.io' ],
|
|
38607
|
+
faucets: [],
|
|
38608
|
+
nativeCurrency: { name: 'PointPay', symbol: 'PXP', decimals: 18 },
|
|
38609
|
+
infoURL: 'https://pointpay.io',
|
|
38610
|
+
shortName: 'PPTEST',
|
|
38611
|
+
chainId: 5511555,
|
|
38612
|
+
networkId: 5511555,
|
|
38613
|
+
icon: 'pointpay',
|
|
38614
|
+
explorers: [
|
|
38615
|
+
{
|
|
38616
|
+
name: 'PointPay Testnet Explorer',
|
|
38617
|
+
url: 'https://testnet.pointpay.io',
|
|
38618
|
+
icon: 'pointpay',
|
|
38619
|
+
standard: 'EIP3091'
|
|
38620
|
+
}
|
|
38621
|
+
]
|
|
38622
|
+
},
|
|
38423
38623
|
{
|
|
38424
38624
|
name: 'Imversed Mainnet',
|
|
38425
38625
|
chain: 'Imversed',
|
|
@@ -39873,6 +40073,32 @@ const chainArray = [
|
|
|
39873
40073
|
}
|
|
39874
40074
|
]
|
|
39875
40075
|
},
|
|
40076
|
+
{
|
|
40077
|
+
name: 'Stavanger Public Testnet',
|
|
40078
|
+
chain: 'stavanger',
|
|
40079
|
+
rpc: [ 'https://rpc.stavanger.gateway.fm' ],
|
|
40080
|
+
faucets: [ 'https://faucet.stavanger.gateway.fm' ],
|
|
40081
|
+
nativeCurrency: { name: 'Polygon', symbol: 'POL', decimals: 18 },
|
|
40082
|
+
features: [ { name: 'EIP155' } ],
|
|
40083
|
+
infoURL: 'https://gateway.fm',
|
|
40084
|
+
shortName: 'stavanger',
|
|
40085
|
+
chainId: 50591822,
|
|
40086
|
+
networkId: 50591822,
|
|
40087
|
+
icon: 'stavanger',
|
|
40088
|
+
explorers: [
|
|
40089
|
+
{
|
|
40090
|
+
name: 'BlockScout',
|
|
40091
|
+
url: 'https://explorer.stavanger.gateway.fm',
|
|
40092
|
+
icon: 'stavanger',
|
|
40093
|
+
standard: 'EIP3091'
|
|
40094
|
+
}
|
|
40095
|
+
],
|
|
40096
|
+
parent: {
|
|
40097
|
+
type: 'L2',
|
|
40098
|
+
chain: 'eip155-11155111',
|
|
40099
|
+
bridges: [ { url: 'https://bridge.stavanger.gateway.fm' } ]
|
|
40100
|
+
}
|
|
40101
|
+
},
|
|
39876
40102
|
{
|
|
39877
40103
|
name: 'Deviant Token Blockchain',
|
|
39878
40104
|
chain: 'DTBC',
|