eth-chainlist 0.0.52 → 0.0.53
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 +8 -0
- package/data/chain.js +240 -51
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.53 (2023-01-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.52 ([344a09f](https://github.com/poowf/eth-chainlist/commit/344a09fbf630100514da7321b596d761731ab605))
|
9
|
+
* update chain data ([be2fa54](https://github.com/poowf/eth-chainlist/commit/be2fa54377508fd27341bb6623f664b358e66602))
|
10
|
+
|
3
11
|
### 0.0.52 (2023-01-06)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -633,6 +633,26 @@ const chainArray = [
|
|
633
633
|
networkId: 38,
|
634
634
|
slip44: 538
|
635
635
|
},
|
636
|
+
{
|
637
|
+
name: 'Unicorn Ultra Testnet',
|
638
|
+
chain: 'u2u',
|
639
|
+
rpc: [ 'https://rpc-testnet.uniultra.xyz' ],
|
640
|
+
faucets: [ 'https://faucet.uniultra.xyz' ],
|
641
|
+
nativeCurrency: { name: 'Unicorn Ultra', symbol: 'U2U', decimals: 18 },
|
642
|
+
infoURL: 'https://uniultra.xyz',
|
643
|
+
shortName: 'u2u',
|
644
|
+
chainId: 39,
|
645
|
+
networkId: 39,
|
646
|
+
icon: 'u2u',
|
647
|
+
explorers: [
|
648
|
+
{
|
649
|
+
icon: 'u2u',
|
650
|
+
name: 'U2U Explorer',
|
651
|
+
url: 'https://testnet.uniultra.xyz',
|
652
|
+
standard: 'EIP3091'
|
653
|
+
}
|
654
|
+
]
|
655
|
+
},
|
636
656
|
{
|
637
657
|
name: 'Telos EVM Mainnet',
|
638
658
|
chain: 'TLOS',
|
@@ -2754,13 +2774,12 @@ const chainArray = [
|
|
2754
2774
|
{
|
2755
2775
|
name: 'Filecoin - Mainnet',
|
2756
2776
|
chain: 'FIL',
|
2757
|
-
|
2758
|
-
rpc: [ 'https://api.node.glif.io/rpc/
|
2777
|
+
icon: 'filecoin',
|
2778
|
+
rpc: [ 'https://api.node.glif.io/', 'https://rpc.ankr.com/filecoin' ],
|
2759
2779
|
faucets: [],
|
2760
2780
|
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
2761
2781
|
infoURL: 'https://filecoin.io',
|
2762
2782
|
shortName: 'filecoin',
|
2763
|
-
icon: 'filecoin',
|
2764
2783
|
chainId: 314,
|
2765
2784
|
networkId: 314,
|
2766
2785
|
slip44: 461,
|
@@ -3108,7 +3127,7 @@ const chainArray = [
|
|
3108
3127
|
{
|
3109
3128
|
name: 'Camino C-Chain',
|
3110
3129
|
chain: 'CAM',
|
3111
|
-
rpc: [
|
3130
|
+
rpc: [],
|
3112
3131
|
faucets: [],
|
3113
3132
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
3114
3133
|
infoURL: 'https://camino.foundation/',
|
@@ -3127,7 +3146,7 @@ const chainArray = [
|
|
3127
3146
|
{
|
3128
3147
|
name: 'Columbus Test Network',
|
3129
3148
|
chain: 'CAM',
|
3130
|
-
rpc: [
|
3149
|
+
rpc: [],
|
3131
3150
|
faucets: [],
|
3132
3151
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
3133
3152
|
infoURL: 'https://camino.foundation/',
|
@@ -3671,6 +3690,25 @@ const chainArray = [
|
|
3671
3690
|
}
|
3672
3691
|
]
|
3673
3692
|
},
|
3693
|
+
{
|
3694
|
+
name: 'Lucid Blockchain',
|
3695
|
+
chain: 'Lucid Blockchain',
|
3696
|
+
icon: 'lucid',
|
3697
|
+
rpc: [ 'https://rpc.lucidcoin.io' ],
|
3698
|
+
faucets: [ 'https://faucet.lucidcoin.io' ],
|
3699
|
+
nativeCurrency: { name: 'LUCID', symbol: 'LUCID', decimals: 18 },
|
3700
|
+
infoURL: 'https://lucidcoin.io',
|
3701
|
+
shortName: 'LUCID',
|
3702
|
+
chainId: 800,
|
3703
|
+
networkId: 800,
|
3704
|
+
explorers: [
|
3705
|
+
{
|
3706
|
+
name: 'Lucid Explorer',
|
3707
|
+
url: 'https://explorer.lucidcoin.io',
|
3708
|
+
standard: 'none'
|
3709
|
+
}
|
3710
|
+
]
|
3711
|
+
},
|
3674
3712
|
{
|
3675
3713
|
name: 'Haic',
|
3676
3714
|
chain: 'Haic',
|
@@ -4029,7 +4067,7 @@ const chainArray = [
|
|
4029
4067
|
{
|
4030
4068
|
name: 'Oort Huygens',
|
4031
4069
|
chain: 'Huygens',
|
4032
|
-
rpc: [
|
4070
|
+
rpc: [],
|
4033
4071
|
faucets: [],
|
4034
4072
|
nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 },
|
4035
4073
|
infoURL: 'https://oortech.com',
|
@@ -5014,7 +5052,7 @@ const chainArray = [
|
|
5014
5052
|
name: 'Polygon zkEVM Testnet',
|
5015
5053
|
title: 'Polygon zkEVM Testnet',
|
5016
5054
|
chain: 'Polygon',
|
5017
|
-
rpc: [
|
5055
|
+
rpc: [],
|
5018
5056
|
faucets: [],
|
5019
5057
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5020
5058
|
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
@@ -5516,6 +5554,25 @@ const chainArray = [
|
|
5516
5554
|
}
|
5517
5555
|
]
|
5518
5556
|
},
|
5557
|
+
{
|
5558
|
+
name: 'MainnetZ Mainnet',
|
5559
|
+
chain: 'NetZ',
|
5560
|
+
icon: 'mainnetz',
|
5561
|
+
rpc: [ 'https://mainnet-rpc.mainnetz.io' ],
|
5562
|
+
faucets: [ 'https://faucet.mainnetz.io' ],
|
5563
|
+
nativeCurrency: { name: 'MainnetZ', symbol: 'NetZ', decimals: 18 },
|
5564
|
+
infoURL: 'https://mainnetz.io',
|
5565
|
+
shortName: 'NetZm',
|
5566
|
+
chainId: 2016,
|
5567
|
+
networkId: 2016,
|
5568
|
+
explorers: [
|
5569
|
+
{
|
5570
|
+
name: 'MainnetZ',
|
5571
|
+
url: 'https://explorer.mainnetz.io',
|
5572
|
+
standard: 'EIP3091'
|
5573
|
+
}
|
5574
|
+
]
|
5575
|
+
},
|
5519
5576
|
{
|
5520
5577
|
name: 'PublicMint Devnet',
|
5521
5578
|
title: 'Public Mint Devnet',
|
@@ -6120,7 +6177,7 @@ const chainArray = [
|
|
6120
6177
|
{
|
6121
6178
|
name: 'CENNZnet Rata',
|
6122
6179
|
chain: 'CENNZnet',
|
6123
|
-
rpc: [
|
6180
|
+
rpc: [],
|
6124
6181
|
faucets: [ 'https://app-faucet.centrality.me' ],
|
6125
6182
|
nativeCurrency: { name: 'CPAY', symbol: 'CPAY', decimals: 18 },
|
6126
6183
|
infoURL: 'https://cennz.net',
|
@@ -6169,19 +6226,44 @@ const chainArray = [
|
|
6169
6226
|
]
|
6170
6227
|
},
|
6171
6228
|
{
|
6172
|
-
name: 'Filecoin -
|
6229
|
+
name: 'Filecoin - Hyperspace testnet',
|
6173
6230
|
chain: 'FIL',
|
6174
|
-
status: 'incubating',
|
6175
|
-
rpc: [],
|
6176
|
-
faucets: [],
|
6177
|
-
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
6178
|
-
infoURL: 'https://filecoin.io',
|
6179
|
-
shortName: 'filecoin-buildernet',
|
6180
6231
|
icon: 'filecoin',
|
6232
|
+
rpc: [ 'https://hyperspace.node.glif.io/rpc/v0' ],
|
6233
|
+
faucets: [ 'https://hyperspace.filtest.network/#faucet' ],
|
6234
|
+
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
6235
|
+
infoURL: 'https://filecoin.io',
|
6236
|
+
shortName: 'filecoin-hyperspace',
|
6181
6237
|
chainId: 3141,
|
6182
6238
|
networkId: 3141,
|
6183
6239
|
slip44: 1,
|
6184
|
-
explorers: [
|
6240
|
+
explorers: [
|
6241
|
+
{
|
6242
|
+
name: 'Filfox - Hyperspace',
|
6243
|
+
url: 'https://hyperspace.filfox.info/en',
|
6244
|
+
standard: 'none'
|
6245
|
+
},
|
6246
|
+
{
|
6247
|
+
name: 'Glif Explorer - Hyperspace',
|
6248
|
+
url: 'https://explorer.glif.io/?network=hyperspace',
|
6249
|
+
standard: 'none'
|
6250
|
+
},
|
6251
|
+
{
|
6252
|
+
name: 'Beryx',
|
6253
|
+
url: 'https://beryx.zondax.ch',
|
6254
|
+
standard: 'none'
|
6255
|
+
},
|
6256
|
+
{
|
6257
|
+
name: 'Filmine',
|
6258
|
+
url: 'https://explorer.filmine.io',
|
6259
|
+
standard: 'none'
|
6260
|
+
},
|
6261
|
+
{
|
6262
|
+
name: 'Filscan - Hyperspace',
|
6263
|
+
url: 'https://hyperspace.filscan.io',
|
6264
|
+
standard: 'none'
|
6265
|
+
}
|
6266
|
+
]
|
6185
6267
|
},
|
6186
6268
|
{
|
6187
6269
|
name: 'Debounce Subnet Testnet',
|
@@ -6994,6 +7076,25 @@ const chainArray = [
|
|
6994
7076
|
}
|
6995
7077
|
]
|
6996
7078
|
},
|
7079
|
+
{
|
7080
|
+
name: 'Gold Smart Chain Mainnet',
|
7081
|
+
chain: 'STAND',
|
7082
|
+
icon: 'stand',
|
7083
|
+
rpc: [ 'https://rpc-mainnet.goldsmartchain.com' ],
|
7084
|
+
faucets: [ 'https://faucet.goldsmartchain.com' ],
|
7085
|
+
nativeCurrency: { name: 'Standard in Gold', symbol: 'STAND', decimals: 18 },
|
7086
|
+
infoURL: 'https://goldsmartchain.com',
|
7087
|
+
shortName: 'STANDm',
|
7088
|
+
chainId: 6789,
|
7089
|
+
networkId: 6789,
|
7090
|
+
explorers: [
|
7091
|
+
{
|
7092
|
+
name: 'Gold Smart Chain',
|
7093
|
+
url: 'https://mainnet.goldsmartchain.com',
|
7094
|
+
standard: 'EIP3091'
|
7095
|
+
}
|
7096
|
+
]
|
7097
|
+
},
|
6997
7098
|
{
|
6998
7099
|
name: 'Tomb Chain Mainnet',
|
6999
7100
|
chain: 'Tomb Chain',
|
@@ -7621,7 +7722,7 @@ const chainArray = [
|
|
7621
7722
|
name: 'Rinia Testnet Old',
|
7622
7723
|
chain: 'FIRE',
|
7623
7724
|
icon: 'rinia',
|
7624
|
-
rpc: [
|
7725
|
+
rpc: [],
|
7625
7726
|
faucets: [ 'https://faucet.thefirechain.com' ],
|
7626
7727
|
nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 },
|
7627
7728
|
infoURL: 'https://thefirechain.com',
|
@@ -7673,7 +7774,7 @@ const chainArray = [
|
|
7673
7774
|
name: 'Oort MainnetDev',
|
7674
7775
|
title: 'Oort MainnetDev',
|
7675
7776
|
chain: 'MainnetDev',
|
7676
|
-
rpc: [
|
7777
|
+
rpc: [],
|
7677
7778
|
faucets: [],
|
7678
7779
|
nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 },
|
7679
7780
|
infoURL: 'https://oortech.com',
|
@@ -7705,6 +7806,25 @@ const chainArray = [
|
|
7705
7806
|
}
|
7706
7807
|
]
|
7707
7808
|
},
|
7809
|
+
{
|
7810
|
+
name: 'MainnetZ Testnet',
|
7811
|
+
chain: 'NetZ',
|
7812
|
+
icon: 'mainnetzTestnet',
|
7813
|
+
rpc: [ 'https://testnet-rpc.mainnetz.io' ],
|
7814
|
+
faucets: [ 'https://faucet.mainnetz.io' ],
|
7815
|
+
nativeCurrency: { name: 'MainnetZ', symbol: 'NetZ', decimals: 18 },
|
7816
|
+
infoURL: 'https://testnet.mainnetz.io',
|
7817
|
+
shortName: 'NetZt',
|
7818
|
+
chainId: 9768,
|
7819
|
+
networkId: 9768,
|
7820
|
+
explorers: [
|
7821
|
+
{
|
7822
|
+
name: 'MainnetZ',
|
7823
|
+
url: 'https://testnet.mainnetz.io',
|
7824
|
+
standard: 'EIP3091'
|
7825
|
+
}
|
7826
|
+
]
|
7827
|
+
},
|
7708
7828
|
{
|
7709
7829
|
name: 'myOwn Testnet',
|
7710
7830
|
chain: 'myOwn',
|
@@ -8050,6 +8170,25 @@ const chainArray = [
|
|
8050
8170
|
}
|
8051
8171
|
]
|
8052
8172
|
},
|
8173
|
+
{
|
8174
|
+
name: 'Sardis Testnet',
|
8175
|
+
chain: 'SRDX',
|
8176
|
+
icon: 'sardisTestnet',
|
8177
|
+
rpc: [ 'https://testnet-rpc.sardisnetwork.com' ],
|
8178
|
+
faucets: [ 'https://faucet.sardisnetwork.com' ],
|
8179
|
+
nativeCurrency: { name: 'Sardis', symbol: 'SRDX', decimals: 18 },
|
8180
|
+
infoURL: 'https://mysardis.com',
|
8181
|
+
shortName: 'SRDXt',
|
8182
|
+
chainId: 11612,
|
8183
|
+
networkId: 11612,
|
8184
|
+
explorers: [
|
8185
|
+
{
|
8186
|
+
name: 'Sardis',
|
8187
|
+
url: 'https://testnet.sardisnetwork.com',
|
8188
|
+
standard: 'EIP3091'
|
8189
|
+
}
|
8190
|
+
]
|
8191
|
+
},
|
8053
8192
|
{
|
8054
8193
|
name: 'SanR Chain',
|
8055
8194
|
chain: 'SanRChain',
|
@@ -8696,36 +8835,16 @@ const chainArray = [
|
|
8696
8835
|
{
|
8697
8836
|
name: 'Filecoin - Wallaby testnet',
|
8698
8837
|
chain: 'FIL',
|
8699
|
-
|
8700
|
-
rpc: [
|
8701
|
-
'https://wallaby.filfox.info/rpc/v0',
|
8702
|
-
'https://wallaby.node.glif.io/rpc/v0'
|
8703
|
-
],
|
8838
|
+
icon: 'filecoin',
|
8839
|
+
rpc: [ 'https://wallaby.node.glif.io/rpc/v0' ],
|
8704
8840
|
faucets: [ 'https://wallaby.network/#faucet' ],
|
8705
8841
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
8706
8842
|
infoURL: 'https://filecoin.io',
|
8707
8843
|
shortName: 'filecoin-wallaby',
|
8708
|
-
icon: 'filecoin',
|
8709
8844
|
chainId: 31415,
|
8710
8845
|
networkId: 31415,
|
8711
8846
|
slip44: 1,
|
8712
|
-
explorers: [
|
8713
|
-
{
|
8714
|
-
name: 'Filfox',
|
8715
|
-
url: 'https://wallaby.filfox.info',
|
8716
|
-
standard: 'none'
|
8717
|
-
},
|
8718
|
-
{
|
8719
|
-
name: 'Glif Explorer',
|
8720
|
-
url: 'https://explorer.glif.io/wallaby',
|
8721
|
-
standard: 'none'
|
8722
|
-
},
|
8723
|
-
{
|
8724
|
-
name: 'Filscan',
|
8725
|
-
url: 'https://wallaby.filscan.io',
|
8726
|
-
standard: 'none'
|
8727
|
-
}
|
8728
|
-
]
|
8847
|
+
explorers: []
|
8729
8848
|
},
|
8730
8849
|
{
|
8731
8850
|
name: 'Bitgert Mainnet',
|
@@ -9215,6 +9334,25 @@ const chainArray = [
|
|
9215
9334
|
],
|
9216
9335
|
parent: { type: 'L2', chain: 'eip155-3' }
|
9217
9336
|
},
|
9337
|
+
{
|
9338
|
+
name: 'Sardis Mainnet',
|
9339
|
+
chain: 'SRDX',
|
9340
|
+
icon: 'sardis',
|
9341
|
+
rpc: [ 'https://mainnet-rpc.sardisnetwork.com' ],
|
9342
|
+
faucets: [ 'https://faucet.sardisnetwork.com' ],
|
9343
|
+
nativeCurrency: { name: 'Sardis', symbol: 'SRDX', decimals: 18 },
|
9344
|
+
infoURL: 'https://mysardis.com',
|
9345
|
+
shortName: 'SRDXm',
|
9346
|
+
chainId: 51712,
|
9347
|
+
networkId: 51712,
|
9348
|
+
explorers: [
|
9349
|
+
{
|
9350
|
+
name: 'Sardis',
|
9351
|
+
url: 'https://contract-mainnet.sardisnetwork.com',
|
9352
|
+
standard: 'EIP3091'
|
9353
|
+
}
|
9354
|
+
]
|
9355
|
+
},
|
9218
9356
|
{
|
9219
9357
|
name: 'DFK Chain',
|
9220
9358
|
chain: 'DFK',
|
@@ -9718,6 +9856,25 @@ const chainArray = [
|
|
9718
9856
|
chainId: 78110,
|
9719
9857
|
networkId: 78110
|
9720
9858
|
},
|
9859
|
+
{
|
9860
|
+
name: 'Gold Smart Chain Testnet',
|
9861
|
+
chain: 'STAND',
|
9862
|
+
icon: 'standTestnet',
|
9863
|
+
rpc: [ 'https://rpc-testnet.goldsmartchain.com' ],
|
9864
|
+
faucets: [ 'https://faucet.goldsmartchain.com' ],
|
9865
|
+
nativeCurrency: { name: 'Standard in Gold', symbol: 'STAND', decimals: 18 },
|
9866
|
+
infoURL: 'https://goldsmartchain.com',
|
9867
|
+
shortName: 'STANDt',
|
9868
|
+
chainId: 79879,
|
9869
|
+
networkId: 79879,
|
9870
|
+
explorers: [
|
9871
|
+
{
|
9872
|
+
name: 'Gold Smart Chain',
|
9873
|
+
url: 'https://testnet.goldsmartchain.com',
|
9874
|
+
standard: 'EIP3091'
|
9875
|
+
}
|
9876
|
+
]
|
9877
|
+
},
|
9721
9878
|
{
|
9722
9879
|
name: 'Mumbai',
|
9723
9880
|
title: 'Polygon Testnet Mumbai',
|
@@ -9808,12 +9965,7 @@ const chainArray = [
|
|
9808
9965
|
{
|
9809
9966
|
name: 'Boba BNB Mainnet',
|
9810
9967
|
chain: 'Boba BNB Mainnet',
|
9811
|
-
rpc: [
|
9812
|
-
'https://bnb.boba.network',
|
9813
|
-
'wss://wss.bnb.boba.network',
|
9814
|
-
'https://replica.bnb.boba.network',
|
9815
|
-
'wss://replica-wss.bnb.boba.network'
|
9816
|
-
],
|
9968
|
+
rpc: [],
|
9817
9969
|
faucets: [],
|
9818
9970
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
9819
9971
|
infoURL: 'https://boba.network',
|
@@ -10058,6 +10210,25 @@ const chainArray = [
|
|
10058
10210
|
],
|
10059
10211
|
status: 'deprecated'
|
10060
10212
|
},
|
10213
|
+
{
|
10214
|
+
name: 'Soverun Testnet',
|
10215
|
+
chain: 'SVRN',
|
10216
|
+
icon: 'soverunTestnet',
|
10217
|
+
rpc: [ 'https://testnet-rpc.soverun.com' ],
|
10218
|
+
faucets: [ 'https://faucet.soverun.com' ],
|
10219
|
+
nativeCurrency: { name: 'Soverun', symbol: 'SVRN', decimals: 18 },
|
10220
|
+
infoURL: 'https://soverun.com',
|
10221
|
+
shortName: 'SVRNt',
|
10222
|
+
chainId: 101010,
|
10223
|
+
networkId: 101010,
|
10224
|
+
explorers: [
|
10225
|
+
{
|
10226
|
+
name: 'Soverun',
|
10227
|
+
url: 'https://testnet.soverun.com',
|
10228
|
+
standard: 'EIP3091'
|
10229
|
+
}
|
10230
|
+
]
|
10231
|
+
},
|
10061
10232
|
{
|
10062
10233
|
name: 'Crystaleum',
|
10063
10234
|
chain: 'crystal',
|
@@ -10625,24 +10796,23 @@ const chainArray = [
|
|
10625
10796
|
{
|
10626
10797
|
name: 'Filecoin - Calibration testnet',
|
10627
10798
|
chain: 'FIL',
|
10628
|
-
|
10799
|
+
icon: 'filecoin',
|
10629
10800
|
rpc: [ 'https://api.calibration.node.glif.io/rpc/v0' ],
|
10630
10801
|
faucets: [ 'https://faucet.calibration.fildev.network/' ],
|
10631
10802
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
10632
10803
|
infoURL: 'https://filecoin.io',
|
10633
10804
|
shortName: 'filecoin-calibration',
|
10634
|
-
icon: 'filecoin',
|
10635
10805
|
chainId: 314159,
|
10636
10806
|
networkId: 314159,
|
10637
10807
|
slip44: 1,
|
10638
10808
|
explorers: [
|
10639
10809
|
{
|
10640
|
-
name: 'Filscan',
|
10810
|
+
name: 'Filscan - Calibration',
|
10641
10811
|
url: 'https://calibration.filscan.io',
|
10642
10812
|
standard: 'none'
|
10643
10813
|
},
|
10644
10814
|
{
|
10645
|
-
name: 'Filscout',
|
10815
|
+
name: 'Filscout - Calibration',
|
10646
10816
|
url: 'https://calibration.filscout.com/en',
|
10647
10817
|
standard: 'none'
|
10648
10818
|
}
|
@@ -11450,6 +11620,25 @@ const chainArray = [
|
|
11450
11620
|
],
|
11451
11621
|
parent: { chain: 'eip155-16658437', type: 'L2' }
|
11452
11622
|
},
|
11623
|
+
{
|
11624
|
+
name: 'Soverun Mainnet',
|
11625
|
+
chain: 'SVRN',
|
11626
|
+
icon: 'soverun',
|
11627
|
+
rpc: [ 'https://mainnet-rpc.soverun.com' ],
|
11628
|
+
faucets: [ 'https://faucet.soverun.com' ],
|
11629
|
+
nativeCurrency: { name: 'Soverun', symbol: 'SVRN', decimals: 18 },
|
11630
|
+
infoURL: 'https://soverun.com',
|
11631
|
+
shortName: 'SVRNm',
|
11632
|
+
chainId: 10101010,
|
11633
|
+
networkId: 10101010,
|
11634
|
+
explorers: [
|
11635
|
+
{
|
11636
|
+
name: 'Soverun',
|
11637
|
+
url: 'https://explorer.soverun.com',
|
11638
|
+
standard: 'EIP3091'
|
11639
|
+
}
|
11640
|
+
]
|
11641
|
+
},
|
11453
11642
|
{
|
11454
11643
|
name: 'Sepolia',
|
11455
11644
|
title: 'Ethereum Testnet Sepolia',
|