eth-chainlist 0.0.522 → 0.0.524
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 +290 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.524 (2024-10-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.523 ([d030217](https://github.com/poowf/eth-chainlist/commit/d030217044286339c786594b8c0dbf4a9434ab80))
|
|
9
|
+
* update chain data ([aba34e7](https://github.com/poowf/eth-chainlist/commit/aba34e7271e4c44c7bc627c237de59d427a0e8ca))
|
|
10
|
+
|
|
11
|
+
### 0.0.523 (2024-10-25)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.522 ([7a227a0](https://github.com/poowf/eth-chainlist/commit/7a227a0c77c412bf1c56adffb1e98a0112fda6a1))
|
|
17
|
+
* update chain data ([b06740c](https://github.com/poowf/eth-chainlist/commit/b06740c5de4f5fb05113ff215d5b66e1048b1cc4))
|
|
18
|
+
|
|
3
19
|
### 0.0.522 (2024-10-24)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -4843,13 +4843,13 @@ const chainArray = [
|
|
|
4843
4843
|
}
|
|
4844
4844
|
},
|
|
4845
4845
|
{
|
|
4846
|
-
name: 'Cronos zkEVM Testnet',
|
|
4847
|
-
chain: '
|
|
4848
|
-
rpc: [ 'https://testnet.zkevm.cronos.org' ],
|
|
4846
|
+
name: 'Deprecated Cronos zkEVM Testnet',
|
|
4847
|
+
chain: 'deprecatedCronosZkEVMTestnet',
|
|
4848
|
+
rpc: [ 'https://deprecated.testnet.zkevm.cronos.org' ],
|
|
4849
4849
|
faucets: [ 'https://zkevm.cronos.org/faucet' ],
|
|
4850
4850
|
nativeCurrency: { name: 'Cronos zkEVM Test Coin', symbol: 'zkTCRO', decimals: 18 },
|
|
4851
4851
|
infoURL: 'https://docs-zkevm.cronos.org',
|
|
4852
|
-
shortName: 'zkTCRO',
|
|
4852
|
+
shortName: 'deprecated-zkTCRO',
|
|
4853
4853
|
chainId: 282,
|
|
4854
4854
|
networkId: 282,
|
|
4855
4855
|
slip44: 1,
|
|
@@ -4859,7 +4859,8 @@ const chainArray = [
|
|
|
4859
4859
|
url: 'https://explorer.zkevm.cronos.org/testnet',
|
|
4860
4860
|
standard: 'none'
|
|
4861
4861
|
}
|
|
4862
|
-
]
|
|
4862
|
+
],
|
|
4863
|
+
status: 'deprecated'
|
|
4863
4864
|
},
|
|
4864
4865
|
{
|
|
4865
4866
|
name: 'Boba Network',
|
|
@@ -6262,14 +6263,41 @@ const chainArray = [
|
|
|
6262
6263
|
{
|
|
6263
6264
|
name: 'World Chain',
|
|
6264
6265
|
chain: 'ETH',
|
|
6265
|
-
rpc: [
|
|
6266
|
+
rpc: [
|
|
6267
|
+
'https://worldchain-mainnet.g.alchemy.com/public',
|
|
6268
|
+
'https://480.rpc.thirdweb.com',
|
|
6269
|
+
'https://worldchain-mainnet.gateway.tenderly.co',
|
|
6270
|
+
'wss://worldchain-mainnet.gateway.tenderly.co'
|
|
6271
|
+
],
|
|
6266
6272
|
faucets: [],
|
|
6267
6273
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
6268
|
-
infoURL: 'https://
|
|
6274
|
+
infoURL: 'https://world.org/world-chain',
|
|
6269
6275
|
shortName: 'wc',
|
|
6270
6276
|
chainId: 480,
|
|
6271
6277
|
networkId: 480,
|
|
6272
|
-
|
|
6278
|
+
slip44: 1,
|
|
6279
|
+
parent: {
|
|
6280
|
+
type: 'L2',
|
|
6281
|
+
chain: 'eip155-1',
|
|
6282
|
+
bridges: [
|
|
6283
|
+
{ url: 'https://world-chain.superbridge.app' },
|
|
6284
|
+
{ url: 'https://app.across.to/bridge?destinationChainId=480' },
|
|
6285
|
+
{ url: 'https://worldchain-mainnet.bridge.alchemy.com' }
|
|
6286
|
+
]
|
|
6287
|
+
},
|
|
6288
|
+
explorers: [
|
|
6289
|
+
{
|
|
6290
|
+
name: 'etherscan',
|
|
6291
|
+
url: 'https://worldscan.org',
|
|
6292
|
+
standard: 'EIP3091'
|
|
6293
|
+
},
|
|
6294
|
+
{
|
|
6295
|
+
name: 'blockscout',
|
|
6296
|
+
url: 'https://worldchain-mainnet.explorer.alchemy.com',
|
|
6297
|
+
icon: 'blockscout',
|
|
6298
|
+
standard: 'EIP3091'
|
|
6299
|
+
}
|
|
6300
|
+
]
|
|
6273
6301
|
},
|
|
6274
6302
|
{
|
|
6275
6303
|
name: 'Rupaya',
|
|
@@ -11410,6 +11438,43 @@ const chainArray = [
|
|
|
11410
11438
|
}
|
|
11411
11439
|
]
|
|
11412
11440
|
},
|
|
11441
|
+
{
|
|
11442
|
+
name: 'Story Odyssey Testnet',
|
|
11443
|
+
chain: 'Story Odyssey Testnet',
|
|
11444
|
+
rpc: [ 'https://odyssey.storyrpc.io' ],
|
|
11445
|
+
faucets: [],
|
|
11446
|
+
chainId: 1516,
|
|
11447
|
+
networkId: 1516,
|
|
11448
|
+
nativeCurrency: { name: 'IP', symbol: 'IP', decimals: 18 },
|
|
11449
|
+
infoURL: 'https://www.story.foundation',
|
|
11450
|
+
shortName: 'story-testnet',
|
|
11451
|
+
explorers: [
|
|
11452
|
+
{
|
|
11453
|
+
name: 'Story Odyssey Network explorer',
|
|
11454
|
+
url: 'https://odyssey-testnet-explorer.storyscan.xyz',
|
|
11455
|
+
standard: 'EIP3091'
|
|
11456
|
+
}
|
|
11457
|
+
]
|
|
11458
|
+
},
|
|
11459
|
+
{
|
|
11460
|
+
name: 'Digital Smart Chain',
|
|
11461
|
+
chain: 'Digital Smart Chain',
|
|
11462
|
+
icon: 'dscscan',
|
|
11463
|
+
rpc: [ 'https://rpc01.dscscan.io' ],
|
|
11464
|
+
faucets: [],
|
|
11465
|
+
nativeCurrency: { name: 'Digital Smart Chain', symbol: 'DSCs', decimals: 18 },
|
|
11466
|
+
infoURL: 'https://rpc01.dscscan.io',
|
|
11467
|
+
shortName: 'DSCs',
|
|
11468
|
+
chainId: 1555,
|
|
11469
|
+
networkId: 1555,
|
|
11470
|
+
explorers: [
|
|
11471
|
+
{
|
|
11472
|
+
name: 'Digital Smart Chain',
|
|
11473
|
+
url: 'https://explorer.dotblox.io',
|
|
11474
|
+
standard: 'EIP3091'
|
|
11475
|
+
}
|
|
11476
|
+
]
|
|
11477
|
+
},
|
|
11413
11478
|
{
|
|
11414
11479
|
name: 'Tenet',
|
|
11415
11480
|
title: 'Tenet Mainnet',
|
|
@@ -15750,6 +15815,27 @@ const chainArray = [
|
|
|
15750
15815
|
}
|
|
15751
15816
|
]
|
|
15752
15817
|
},
|
|
15818
|
+
{
|
|
15819
|
+
name: 'JZERO',
|
|
15820
|
+
chain: 'JZERO',
|
|
15821
|
+
icon: 'jzero',
|
|
15822
|
+
rpc: [ 'https://rpc.jzero.xyz' ],
|
|
15823
|
+
faucets: [],
|
|
15824
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
15825
|
+
nativeCurrency: { name: 'JZERO', symbol: 'JZR', decimals: 18 },
|
|
15826
|
+
infoURL: 'https://jzero.xyz',
|
|
15827
|
+
shortName: 'jzero',
|
|
15828
|
+
chainId: 3502,
|
|
15829
|
+
networkId: 3502,
|
|
15830
|
+
explorers: [
|
|
15831
|
+
{
|
|
15832
|
+
name: 'JZERO Explorer',
|
|
15833
|
+
url: 'https://exp.jzero.xyz',
|
|
15834
|
+
icon: 'jzero',
|
|
15835
|
+
standard: 'EIP3091'
|
|
15836
|
+
}
|
|
15837
|
+
]
|
|
15838
|
+
},
|
|
15753
15839
|
{
|
|
15754
15840
|
name: 'PandoProject Mainnet',
|
|
15755
15841
|
chain: 'PandoProject',
|
|
@@ -17142,15 +17228,40 @@ const chainArray = [
|
|
|
17142
17228
|
{
|
|
17143
17229
|
name: 'World Chain Sepolia Testnet',
|
|
17144
17230
|
chain: 'ETH',
|
|
17145
|
-
rpc: [
|
|
17146
|
-
|
|
17231
|
+
rpc: [
|
|
17232
|
+
'https://worldchain-sepolia.g.alchemy.com/public',
|
|
17233
|
+
'https://4801.rpc.thirdweb.com',
|
|
17234
|
+
'https://worldchain-sepolia.gateway.tenderly.co',
|
|
17235
|
+
'wss://worldchain-sepolia.gateway.tenderly.co'
|
|
17236
|
+
],
|
|
17237
|
+
faucets: [
|
|
17238
|
+
'https://www.alchemy.com/faucets/world-chain-sepolia',
|
|
17239
|
+
'https://console.optimism.io/faucet'
|
|
17240
|
+
],
|
|
17147
17241
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
17148
|
-
infoURL: 'https://
|
|
17242
|
+
infoURL: 'https://world.org/world-chain',
|
|
17149
17243
|
shortName: 'wcsep',
|
|
17150
17244
|
chainId: 4801,
|
|
17151
17245
|
networkId: 4801,
|
|
17152
17246
|
slip44: 1,
|
|
17153
|
-
|
|
17247
|
+
parent: {
|
|
17248
|
+
type: 'L2',
|
|
17249
|
+
chain: 'eip155-11155111',
|
|
17250
|
+
bridges: [ { url: 'https://worldchain-sepolia.bridge.alchemy.com' } ]
|
|
17251
|
+
},
|
|
17252
|
+
explorers: [
|
|
17253
|
+
{
|
|
17254
|
+
name: 'etherscan',
|
|
17255
|
+
url: 'https://sepolia.worldscan.org',
|
|
17256
|
+
standard: 'EIP3091'
|
|
17257
|
+
},
|
|
17258
|
+
{
|
|
17259
|
+
name: 'blockscout',
|
|
17260
|
+
url: 'https://worldchain-sepolia.explorer.alchemy.com',
|
|
17261
|
+
icon: 'blockscout',
|
|
17262
|
+
standard: 'EIP3091'
|
|
17263
|
+
}
|
|
17264
|
+
]
|
|
17154
17265
|
},
|
|
17155
17266
|
{
|
|
17156
17267
|
name: 'Globel Chain',
|
|
@@ -19166,6 +19277,27 @@ const chainArray = [
|
|
|
19166
19277
|
}
|
|
19167
19278
|
]
|
|
19168
19279
|
},
|
|
19280
|
+
{
|
|
19281
|
+
name: '0XL3',
|
|
19282
|
+
chain: '0XL3',
|
|
19283
|
+
icon: '0xl3',
|
|
19284
|
+
rpc: [ 'https://rpc.0xl3.com' ],
|
|
19285
|
+
faucets: [],
|
|
19286
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
19287
|
+
nativeCurrency: { name: 'XL3', symbol: 'XL3', decimals: 18 },
|
|
19288
|
+
infoURL: 'https://0xl3.com',
|
|
19289
|
+
shortName: '0xl3',
|
|
19290
|
+
chainId: 7117,
|
|
19291
|
+
networkId: 7117,
|
|
19292
|
+
explorers: [
|
|
19293
|
+
{
|
|
19294
|
+
name: '0XL3 Explorer',
|
|
19295
|
+
url: 'https://exp.0xl3.com',
|
|
19296
|
+
icon: '0xl3',
|
|
19297
|
+
standard: 'EIP3091'
|
|
19298
|
+
}
|
|
19299
|
+
]
|
|
19300
|
+
},
|
|
19169
19301
|
{
|
|
19170
19302
|
name: 'Help The Homeless',
|
|
19171
19303
|
chain: 'mainnet',
|
|
@@ -24874,6 +25006,30 @@ const chainArray = [
|
|
|
24874
25006
|
}
|
|
24875
25007
|
]
|
|
24876
25008
|
},
|
|
25009
|
+
{
|
|
25010
|
+
name: 'Rivest Testnet',
|
|
25011
|
+
chain: 'Inco',
|
|
25012
|
+
rpc: [
|
|
25013
|
+
'https://validator.rivest.inco.org',
|
|
25014
|
+
'https://gateway.rivest.inco.org'
|
|
25015
|
+
],
|
|
25016
|
+
faucets: [ 'https://faucet.rivest.inco.org' ],
|
|
25017
|
+
nativeCurrency: { name: 'test-Inco', symbol: 'tINCO', decimals: 18 },
|
|
25018
|
+
infoURL: 'https://inco.org',
|
|
25019
|
+
shortName: 'rivest-testnet',
|
|
25020
|
+
chainId: 21097,
|
|
25021
|
+
networkId: 21097,
|
|
25022
|
+
slip44: 1,
|
|
25023
|
+
icon: 'inco',
|
|
25024
|
+
explorers: [
|
|
25025
|
+
{
|
|
25026
|
+
name: 'Rivest Testnet Explorer',
|
|
25027
|
+
url: 'https://explorer.rivest.inco.org',
|
|
25028
|
+
standard: 'EIP3091',
|
|
25029
|
+
icon: 'inco'
|
|
25030
|
+
}
|
|
25031
|
+
]
|
|
25032
|
+
},
|
|
24877
25033
|
{
|
|
24878
25034
|
name: 'All About Healthy',
|
|
24879
25035
|
chain: 'AAH',
|
|
@@ -26294,6 +26450,25 @@ const chainArray = [
|
|
|
26294
26450
|
networkId: 33133,
|
|
26295
26451
|
explorers: []
|
|
26296
26452
|
},
|
|
26453
|
+
{
|
|
26454
|
+
name: 'ApeChain',
|
|
26455
|
+
chain: 'apechain',
|
|
26456
|
+
rpc: [ 'https://rpc.apechain.com' ],
|
|
26457
|
+
faucets: [],
|
|
26458
|
+
nativeCurrency: { name: 'ApeCoin', symbol: 'APE', decimals: 18 },
|
|
26459
|
+
infoURL: 'https://apechain.com',
|
|
26460
|
+
shortName: 'apechain',
|
|
26461
|
+
chainId: 33139,
|
|
26462
|
+
networkId: 33139,
|
|
26463
|
+
icon: 'apechain',
|
|
26464
|
+
explorers: [
|
|
26465
|
+
{
|
|
26466
|
+
name: 'ApeChain Explorer',
|
|
26467
|
+
url: 'https://apescan.io',
|
|
26468
|
+
standard: 'EIP3091'
|
|
26469
|
+
}
|
|
26470
|
+
]
|
|
26471
|
+
},
|
|
26297
26472
|
{
|
|
26298
26473
|
name: 'Cloudverse Subnet',
|
|
26299
26474
|
chain: 'CLOUDVERSE',
|
|
@@ -27581,6 +27756,25 @@ const chainArray = [
|
|
|
27581
27756
|
],
|
|
27582
27757
|
parent: { type: 'L2', chain: 'eip155-3' }
|
|
27583
27758
|
},
|
|
27759
|
+
{
|
|
27760
|
+
name: 'Sophon',
|
|
27761
|
+
chain: 'Sophon',
|
|
27762
|
+
rpc: [ 'https://rpc.sophon.xyz' ],
|
|
27763
|
+
nativeCurrency: { name: 'Sophon', symbol: 'SOPH', decimals: 18 },
|
|
27764
|
+
faucets: [],
|
|
27765
|
+
infoURL: '',
|
|
27766
|
+
shortName: 'sophon',
|
|
27767
|
+
chainId: 50104,
|
|
27768
|
+
networkId: 50104,
|
|
27769
|
+
explorers: [
|
|
27770
|
+
{
|
|
27771
|
+
name: 'Sophon Block Explorer',
|
|
27772
|
+
url: 'https://explorer.sophon.xyz',
|
|
27773
|
+
icon: 'sophon-testnet',
|
|
27774
|
+
standard: 'none'
|
|
27775
|
+
}
|
|
27776
|
+
]
|
|
27777
|
+
},
|
|
27584
27778
|
{
|
|
27585
27779
|
name: 'Erbie Mainnet',
|
|
27586
27780
|
chain: 'Erbie',
|
|
@@ -29094,6 +29288,34 @@ const chainArray = [
|
|
|
29094
29288
|
]
|
|
29095
29289
|
}
|
|
29096
29290
|
},
|
|
29291
|
+
{
|
|
29292
|
+
name: 'Proof of Play - Boss',
|
|
29293
|
+
chainId: 70701,
|
|
29294
|
+
shortName: 'pop-boss',
|
|
29295
|
+
chain: 'ETH',
|
|
29296
|
+
networkId: 70701,
|
|
29297
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
29298
|
+
rpc: [ 'https://rpc.boss.proofofplay.com' ],
|
|
29299
|
+
faucets: [],
|
|
29300
|
+
explorers: [
|
|
29301
|
+
{
|
|
29302
|
+
name: 'Proof of Play Boss Explorer',
|
|
29303
|
+
url: 'https://explorer.boss.proofofplay.com',
|
|
29304
|
+
icon: 'pop-boss',
|
|
29305
|
+
standard: 'EIP3091'
|
|
29306
|
+
}
|
|
29307
|
+
],
|
|
29308
|
+
infoURL: 'https://proofofplay.com',
|
|
29309
|
+
icon: 'pop-boss',
|
|
29310
|
+
parent: {
|
|
29311
|
+
type: 'L2',
|
|
29312
|
+
chain: 'eip155-42161',
|
|
29313
|
+
bridges: [
|
|
29314
|
+
{ url: 'https://bridge.arbitrum.io' },
|
|
29315
|
+
{ url: 'https://relay.link/bridge/boss/' }
|
|
29316
|
+
]
|
|
29317
|
+
}
|
|
29318
|
+
},
|
|
29097
29319
|
{
|
|
29098
29320
|
name: 'GuapcoinX',
|
|
29099
29321
|
chain: 'GuapcoinX',
|
|
@@ -37275,6 +37497,18 @@ const chainArray = [
|
|
|
37275
37497
|
}
|
|
37276
37498
|
]
|
|
37277
37499
|
},
|
|
37500
|
+
{
|
|
37501
|
+
name: 'XMTP',
|
|
37502
|
+
chain: 'ETH',
|
|
37503
|
+
rpc: [],
|
|
37504
|
+
faucets: [],
|
|
37505
|
+
nativeCurrency: { name: 'USDC', symbol: 'USDC', decimals: 18 },
|
|
37506
|
+
infoURL: 'https://xmtp.org',
|
|
37507
|
+
shortName: 'xmtp',
|
|
37508
|
+
chainId: 24132016,
|
|
37509
|
+
networkId: 24132016,
|
|
37510
|
+
status: 'incubating'
|
|
37511
|
+
},
|
|
37278
37512
|
{
|
|
37279
37513
|
name: '6Degree of Outreach - Testnet',
|
|
37280
37514
|
chain: '6DO',
|
|
@@ -38094,6 +38328,18 @@ const chainArray = [
|
|
|
38094
38328
|
}
|
|
38095
38329
|
]
|
|
38096
38330
|
},
|
|
38331
|
+
{
|
|
38332
|
+
name: 'XMTP Sepolia',
|
|
38333
|
+
chain: 'ETH',
|
|
38334
|
+
rpc: [],
|
|
38335
|
+
faucets: [],
|
|
38336
|
+
nativeCurrency: { name: 'USDC', symbol: 'USDC', decimals: 18 },
|
|
38337
|
+
infoURL: 'https://xmtp.org',
|
|
38338
|
+
shortName: 'xmtp-sepolia',
|
|
38339
|
+
chainId: 241320161,
|
|
38340
|
+
networkId: 241320161,
|
|
38341
|
+
status: 'incubating'
|
|
38342
|
+
},
|
|
38097
38343
|
{
|
|
38098
38344
|
name: 'Neon EVM Devnet',
|
|
38099
38345
|
chain: 'Solana',
|
|
@@ -39284,6 +39530,26 @@ const chainArray = [
|
|
|
39284
39530
|
bridges: [ { url: 'https://ruby.exchange/bridge.html' } ]
|
|
39285
39531
|
}
|
|
39286
39532
|
},
|
|
39533
|
+
{
|
|
39534
|
+
name: 'Accumulate Kermit',
|
|
39535
|
+
shortName: 'Kermit',
|
|
39536
|
+
title: 'Accumulate Kermit Testnet',
|
|
39537
|
+
chain: 'Accumulate',
|
|
39538
|
+
chainId: 2478899481,
|
|
39539
|
+
networkId: 2478899481,
|
|
39540
|
+
infoURL: 'https://accumulate.org',
|
|
39541
|
+
slip44: 2147483929,
|
|
39542
|
+
rpc: [ 'https://kermit.accumulatenetwork.io/eth' ],
|
|
39543
|
+
nativeCurrency: { name: 'ACME', symbol: 'ACME', decimals: 18 },
|
|
39544
|
+
faucets: [ 'https://kermit.explorer.accumulatenetwork.io/faucet' ],
|
|
39545
|
+
explorers: [
|
|
39546
|
+
{
|
|
39547
|
+
name: 'accumulate-explorer-kermit',
|
|
39548
|
+
url: 'https://kermit.explorer.accumulatenetwork.io',
|
|
39549
|
+
standard: 'EIP3091'
|
|
39550
|
+
}
|
|
39551
|
+
]
|
|
39552
|
+
},
|
|
39287
39553
|
{
|
|
39288
39554
|
name: 'Ancient8 Testnet (deprecated)',
|
|
39289
39555
|
status: 'deprecated',
|
|
@@ -39596,17 +39862,27 @@ const chainArray = [
|
|
|
39596
39862
|
{
|
|
39597
39863
|
name: 'Zeniq',
|
|
39598
39864
|
chain: 'ZENIQ',
|
|
39599
|
-
|
|
39600
|
-
|
|
39865
|
+
icon: 'zeniq',
|
|
39866
|
+
rpc: [ 'https://api.zeniq.network' ],
|
|
39867
|
+
features: [ { name: 'EIP155' } ],
|
|
39868
|
+
faucets: [ 'https://faucet.nomo.zone/', 'https://faucet.zeniq.net/' ],
|
|
39601
39869
|
nativeCurrency: { name: 'Zeniq', symbol: 'ZENIQ', decimals: 18 },
|
|
39602
39870
|
infoURL: 'https://www.zeniq.dev/',
|
|
39603
39871
|
shortName: 'zeniq',
|
|
39604
39872
|
chainId: 383414847825,
|
|
39605
39873
|
networkId: 383414847825,
|
|
39874
|
+
ens: { registry: '0xa0446c88240bCA2A8E0f68C93aa365d25B198aA4' },
|
|
39606
39875
|
explorers: [
|
|
39876
|
+
{
|
|
39877
|
+
name: 'zeniqscan',
|
|
39878
|
+
url: 'https://zeniqscan.com',
|
|
39879
|
+
icon: 'zeniq',
|
|
39880
|
+
standard: 'EIP3091'
|
|
39881
|
+
},
|
|
39607
39882
|
{
|
|
39608
39883
|
name: 'zeniq-smart-chain-explorer',
|
|
39609
39884
|
url: 'https://smart.zeniq.net',
|
|
39885
|
+
icon: 'zeniq',
|
|
39610
39886
|
standard: 'EIP3091'
|
|
39611
39887
|
}
|
|
39612
39888
|
]
|