eth-chainlist 0.0.6 → 0.0.8
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 +251 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.8 (2022-11-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.7 ([2cff7d8](https://github.com/poowf/eth-chainlist/commit/2cff7d8d0d6e0c4c5b7fe61a399a2cb9eb557891))
|
|
9
|
+
* update chain data ([970a62c](https://github.com/poowf/eth-chainlist/commit/970a62c5e18741e0f9ad9badbb6fcd6e29a421b3))
|
|
10
|
+
|
|
11
|
+
### 0.0.7 (2022-11-09)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.6 ([f59abce](https://github.com/poowf/eth-chainlist/commit/f59abce5dc8e5e816518a9d2eefeddc3ad2be423))
|
|
17
|
+
* update chain data ([b31c900](https://github.com/poowf/eth-chainlist/commit/b31c900c80234f886e812b8f868b8d069c1d31aa))
|
|
18
|
+
|
|
3
19
|
### [0.0.6](https://github.com/poowf/eth-chainlist/compare/v0.0.5...v0.0.6) (2022-11-08)
|
|
4
20
|
|
|
5
21
|
### 0.0.5 (2022-11-08)
|
package/data/chain.js
CHANGED
|
@@ -2278,6 +2278,24 @@ const chainArray = [
|
|
|
2278
2278
|
],
|
|
2279
2279
|
parent: { chain: 'eip155-100', type: 'L2' }
|
|
2280
2280
|
},
|
|
2281
|
+
{
|
|
2282
|
+
name: 'MOAC testnet',
|
|
2283
|
+
chain: 'MOAC',
|
|
2284
|
+
rpc: [ 'http://gateway.moac.io/testnet' ],
|
|
2285
|
+
faucets: [],
|
|
2286
|
+
nativeCurrency: { name: 'MOAC', symbol: 'mc', decimals: 18 },
|
|
2287
|
+
infoURL: 'https://moac.io',
|
|
2288
|
+
shortName: 'moactest',
|
|
2289
|
+
chainId: 201,
|
|
2290
|
+
networkId: 201,
|
|
2291
|
+
explorers: [
|
|
2292
|
+
{
|
|
2293
|
+
name: 'moac testnet explorer',
|
|
2294
|
+
url: 'https://testnet.moac.io',
|
|
2295
|
+
standard: 'none'
|
|
2296
|
+
}
|
|
2297
|
+
]
|
|
2298
|
+
},
|
|
2281
2299
|
{
|
|
2282
2300
|
name: 'Freight Trust Network',
|
|
2283
2301
|
chain: 'EDI',
|
|
@@ -2381,7 +2399,7 @@ const chainArray = [
|
|
|
2381
2399
|
name: 'Oasys Mainnet',
|
|
2382
2400
|
chain: 'Oasys',
|
|
2383
2401
|
icon: 'oasys',
|
|
2384
|
-
rpc: [ 'https://rpc
|
|
2402
|
+
rpc: [ 'https://rpc.mainnet.oasys.games' ],
|
|
2385
2403
|
faucets: [],
|
|
2386
2404
|
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
|
2387
2405
|
infoURL: 'https://oasys.games',
|
|
@@ -3632,6 +3650,29 @@ const chainArray = [
|
|
|
3632
3650
|
}
|
|
3633
3651
|
]
|
|
3634
3652
|
},
|
|
3653
|
+
{
|
|
3654
|
+
name: 'Memo Smart Chain Mainnet',
|
|
3655
|
+
chain: 'MEMO',
|
|
3656
|
+
rpc: [
|
|
3657
|
+
'https://chain.metamemo.one:8501',
|
|
3658
|
+
'wss://chain.metamemo.one:16801'
|
|
3659
|
+
],
|
|
3660
|
+
faucets: [ 'https://faucet.metamemo.one/' ],
|
|
3661
|
+
nativeCurrency: { name: 'Memo', symbol: 'CMEMO', decimals: 18 },
|
|
3662
|
+
infoURL: 'www.memolabs.org',
|
|
3663
|
+
shortName: 'memochain',
|
|
3664
|
+
chainId: 985,
|
|
3665
|
+
networkId: 985,
|
|
3666
|
+
icon: 'memo',
|
|
3667
|
+
explorers: [
|
|
3668
|
+
{
|
|
3669
|
+
name: 'Memo Mainnet Explorer',
|
|
3670
|
+
url: 'https://scan.metamemo.one:8080',
|
|
3671
|
+
icon: 'memoscan',
|
|
3672
|
+
standard: 'EIP3091'
|
|
3673
|
+
}
|
|
3674
|
+
]
|
|
3675
|
+
},
|
|
3635
3676
|
{
|
|
3636
3677
|
name: 'TOP Mainnet',
|
|
3637
3678
|
chain: 'TOP',
|
|
@@ -3907,6 +3948,25 @@ const chainArray = [
|
|
|
3907
3948
|
bridges: [ { url: 'https://bridge.metis.io' } ]
|
|
3908
3949
|
}
|
|
3909
3950
|
},
|
|
3951
|
+
{
|
|
3952
|
+
name: 'MOAC mainnet',
|
|
3953
|
+
chain: 'MOAC',
|
|
3954
|
+
rpc: [ 'http://gateway.moac.io/mainnet' ],
|
|
3955
|
+
faucets: [],
|
|
3956
|
+
nativeCurrency: { name: 'MOAC', symbol: 'mc', decimals: 18 },
|
|
3957
|
+
infoURL: 'https://moac.io',
|
|
3958
|
+
shortName: 'moac',
|
|
3959
|
+
chainId: 1099,
|
|
3960
|
+
networkId: 1099,
|
|
3961
|
+
slip44: 314,
|
|
3962
|
+
explorers: [
|
|
3963
|
+
{
|
|
3964
|
+
name: 'moac explorer',
|
|
3965
|
+
url: 'https://explorer.moac.io',
|
|
3966
|
+
standard: 'none'
|
|
3967
|
+
}
|
|
3968
|
+
]
|
|
3969
|
+
},
|
|
3910
3970
|
{
|
|
3911
3971
|
name: 'WEMIX3.0 Mainnet',
|
|
3912
3972
|
chain: 'WEMIX',
|
|
@@ -4291,6 +4351,24 @@ const chainArray = [
|
|
|
4291
4351
|
}
|
|
4292
4352
|
]
|
|
4293
4353
|
},
|
|
4354
|
+
{
|
|
4355
|
+
name: 'Dos Fuji Subnet',
|
|
4356
|
+
chain: 'DOS',
|
|
4357
|
+
rpc: [ 'https://test.doschain.com/jsonrpc' ],
|
|
4358
|
+
faucets: [],
|
|
4359
|
+
nativeCurrency: { name: 'Dos Native Token', symbol: 'DOS', decimals: 18 },
|
|
4360
|
+
infoURL: 'http://doschain.io/',
|
|
4361
|
+
shortName: 'DOS',
|
|
4362
|
+
chainId: 1311,
|
|
4363
|
+
networkId: 1311,
|
|
4364
|
+
explorers: [
|
|
4365
|
+
{
|
|
4366
|
+
name: 'dos-testnet',
|
|
4367
|
+
url: 'https://test.doscan.io',
|
|
4368
|
+
standard: 'EIP3091'
|
|
4369
|
+
}
|
|
4370
|
+
]
|
|
4371
|
+
},
|
|
4294
4372
|
{
|
|
4295
4373
|
name: 'Aitd Mainnet',
|
|
4296
4374
|
chain: 'AITD',
|
|
@@ -4341,6 +4419,25 @@ const chainArray = [
|
|
|
4341
4419
|
chainId: 1337,
|
|
4342
4420
|
networkId: 1337
|
|
4343
4421
|
},
|
|
4422
|
+
{
|
|
4423
|
+
name: 'Polygon zkEVM Testnet',
|
|
4424
|
+
title: 'Polygon zkEVM Testnet',
|
|
4425
|
+
chain: 'Polygon',
|
|
4426
|
+
rpc: [ 'https://rpc.public.zkevm-test.net' ],
|
|
4427
|
+
faucets: [],
|
|
4428
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
4429
|
+
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
|
4430
|
+
shortName: 'zkevmtest',
|
|
4431
|
+
chainId: 1402,
|
|
4432
|
+
networkId: 1402,
|
|
4433
|
+
explorers: [
|
|
4434
|
+
{
|
|
4435
|
+
name: 'blockscout',
|
|
4436
|
+
url: 'https://explorer.public.zkevm-test.net',
|
|
4437
|
+
standard: 'EIP3091'
|
|
4438
|
+
}
|
|
4439
|
+
]
|
|
4440
|
+
},
|
|
4344
4441
|
{
|
|
4345
4442
|
name: 'Sherpax Mainnet',
|
|
4346
4443
|
chain: 'Sherpax Mainnet',
|
|
@@ -4441,6 +4538,26 @@ const chainArray = [
|
|
|
4441
4538
|
chainId: 1688,
|
|
4442
4539
|
networkId: 1688
|
|
4443
4540
|
},
|
|
4541
|
+
{
|
|
4542
|
+
name: 'Anytype EVM Chain',
|
|
4543
|
+
chain: 'ETH',
|
|
4544
|
+
icon: 'any',
|
|
4545
|
+
rpc: [ 'https://geth.anytype.io' ],
|
|
4546
|
+
faucets: [ 'https://evm.anytype.io/faucet' ],
|
|
4547
|
+
nativeCurrency: { name: 'ANY', symbol: 'ANY', decimals: 18 },
|
|
4548
|
+
infoURL: 'https://evm.anytype.io',
|
|
4549
|
+
shortName: 'AnytypeChain',
|
|
4550
|
+
chainId: 1701,
|
|
4551
|
+
networkId: 1701,
|
|
4552
|
+
explorers: [
|
|
4553
|
+
{
|
|
4554
|
+
name: 'Anytype Explorer',
|
|
4555
|
+
url: 'https://explorer.anytype.io',
|
|
4556
|
+
icon: 'any',
|
|
4557
|
+
standard: 'EIP3091'
|
|
4558
|
+
}
|
|
4559
|
+
]
|
|
4560
|
+
},
|
|
4444
4561
|
{
|
|
4445
4562
|
name: 'TBSI Mainnet',
|
|
4446
4563
|
title: 'Thai Blockchain Service Infrastructure Mainnet',
|
|
@@ -5332,6 +5449,24 @@ const chainArray = [
|
|
|
5332
5449
|
}
|
|
5333
5450
|
]
|
|
5334
5451
|
},
|
|
5452
|
+
{
|
|
5453
|
+
name: 'Metacodechain',
|
|
5454
|
+
chain: 'metacode',
|
|
5455
|
+
rpc: [ 'https://j.blockcoach.com:8503' ],
|
|
5456
|
+
faucets: [],
|
|
5457
|
+
nativeCurrency: { name: 'J', symbol: 'J', decimals: 18 },
|
|
5458
|
+
infoURL: 'https://j.blockcoach.com:8089',
|
|
5459
|
+
shortName: 'metacode',
|
|
5460
|
+
chainId: 3666,
|
|
5461
|
+
networkId: 3666,
|
|
5462
|
+
explorers: [
|
|
5463
|
+
{
|
|
5464
|
+
name: 'meta',
|
|
5465
|
+
url: 'https://j.blockcoach.com:8089',
|
|
5466
|
+
standard: 'EIP3091'
|
|
5467
|
+
}
|
|
5468
|
+
]
|
|
5469
|
+
},
|
|
5335
5470
|
{
|
|
5336
5471
|
name: 'Bittex Mainnet',
|
|
5337
5472
|
chain: 'BTX',
|
|
@@ -6194,7 +6329,7 @@ const chainArray = [
|
|
|
6194
6329
|
{
|
|
6195
6330
|
name: 'Alph Network',
|
|
6196
6331
|
chain: 'ALPH',
|
|
6197
|
-
rpc: [ 'https://rpc.alph.network' ],
|
|
6332
|
+
rpc: [ 'https://rpc.alph.network', 'wss://rpc.alph.network' ],
|
|
6198
6333
|
faucets: [],
|
|
6199
6334
|
nativeCurrency: { name: 'Alph Network', symbol: 'ALPH', decimals: 18 },
|
|
6200
6335
|
infoURL: 'https://alph.network',
|
|
@@ -7748,6 +7883,30 @@ const chainArray = [
|
|
|
7748
7883
|
}
|
|
7749
7884
|
]
|
|
7750
7885
|
},
|
|
7886
|
+
{
|
|
7887
|
+
name: 'DoKEN Super Chain Mainnet',
|
|
7888
|
+
chain: 'DoKEN Super Chain',
|
|
7889
|
+
rpc: [
|
|
7890
|
+
'https://sgrpc.doken.dev',
|
|
7891
|
+
'https://nyrpc.doken.dev',
|
|
7892
|
+
'https://ukrpc.doken.dev'
|
|
7893
|
+
],
|
|
7894
|
+
faucets: [],
|
|
7895
|
+
nativeCurrency: { name: 'DoKEN', symbol: 'DKN', decimals: 18 },
|
|
7896
|
+
infoURL: 'https://doken.dev/',
|
|
7897
|
+
shortName: 'DoKEN',
|
|
7898
|
+
chainId: 61916,
|
|
7899
|
+
networkId: 61916,
|
|
7900
|
+
icon: 'doken',
|
|
7901
|
+
explorers: [
|
|
7902
|
+
{
|
|
7903
|
+
name: 'DSC Scan',
|
|
7904
|
+
url: 'https://explore.doken.dev',
|
|
7905
|
+
icon: 'doken',
|
|
7906
|
+
standard: 'EIP3091'
|
|
7907
|
+
}
|
|
7908
|
+
]
|
|
7909
|
+
},
|
|
7751
7910
|
{
|
|
7752
7911
|
name: 'Celo Baklava Testnet',
|
|
7753
7912
|
chainId: 62320,
|
|
@@ -9478,6 +9637,52 @@ const chainArray = [
|
|
|
9478
9637
|
slip44: 1,
|
|
9479
9638
|
explorers: []
|
|
9480
9639
|
},
|
|
9640
|
+
{
|
|
9641
|
+
name: 'Imversed Canary',
|
|
9642
|
+
chain: 'Imversed',
|
|
9643
|
+
rpc: [ 'https://jsonrpc-endpoint-canary.imversed.com' ],
|
|
9644
|
+
faucets: [],
|
|
9645
|
+
nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
|
|
9646
|
+
infoURL: 'https://imversed.com',
|
|
9647
|
+
shortName: 'imversed',
|
|
9648
|
+
chainId: 5555555,
|
|
9649
|
+
networkId: 5555555,
|
|
9650
|
+
icon: 'imversed',
|
|
9651
|
+
explorers: [
|
|
9652
|
+
{
|
|
9653
|
+
name: 'Imversed Cosmos Explorer (Big Dipper)',
|
|
9654
|
+
url: 'https://tex-c.imversed.com',
|
|
9655
|
+
icon: 'imversed',
|
|
9656
|
+
standard: 'none'
|
|
9657
|
+
}
|
|
9658
|
+
]
|
|
9659
|
+
},
|
|
9660
|
+
{
|
|
9661
|
+
name: 'Imversed Testnet',
|
|
9662
|
+
chain: 'Imversed',
|
|
9663
|
+
rpc: [ 'https://jsonrpc-endpoint-test.imversed.com' ],
|
|
9664
|
+
faucets: [],
|
|
9665
|
+
nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
|
|
9666
|
+
infoURL: 'https://imversed.com',
|
|
9667
|
+
shortName: 'imversed-testnet',
|
|
9668
|
+
chainId: 5555558,
|
|
9669
|
+
networkId: 5555558,
|
|
9670
|
+
icon: 'imversed',
|
|
9671
|
+
explorers: [
|
|
9672
|
+
{
|
|
9673
|
+
name: 'Imversed EVM Explorer (Blockscout)',
|
|
9674
|
+
url: 'https://txe-test.imversed.com',
|
|
9675
|
+
icon: 'imversed',
|
|
9676
|
+
standard: 'none'
|
|
9677
|
+
},
|
|
9678
|
+
{
|
|
9679
|
+
name: 'Imversed Cosmos Explorer (Big Dipper)',
|
|
9680
|
+
url: 'https://tex-t.imversed.com',
|
|
9681
|
+
icon: 'imversed',
|
|
9682
|
+
standard: 'none'
|
|
9683
|
+
}
|
|
9684
|
+
]
|
|
9685
|
+
},
|
|
9481
9686
|
{
|
|
9482
9687
|
name: 'Musicoin',
|
|
9483
9688
|
chain: 'MUSIC',
|
|
@@ -9879,6 +10084,28 @@ const chainArray = [
|
|
|
9879
10084
|
}
|
|
9880
10085
|
]
|
|
9881
10086
|
},
|
|
10087
|
+
{
|
|
10088
|
+
name: 'Nebula Staging',
|
|
10089
|
+
chain: 'staging-faint-slimy-achird',
|
|
10090
|
+
rpc: [
|
|
10091
|
+
'https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird',
|
|
10092
|
+
'wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird'
|
|
10093
|
+
],
|
|
10094
|
+
faucets: [],
|
|
10095
|
+
nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
|
|
10096
|
+
infoURL: 'https://nebulachain.io/',
|
|
10097
|
+
shortName: 'nebula-staging',
|
|
10098
|
+
chainId: 503129905,
|
|
10099
|
+
networkId: 503129905,
|
|
10100
|
+
explorers: [
|
|
10101
|
+
{
|
|
10102
|
+
name: 'nebula',
|
|
10103
|
+
url: 'https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com',
|
|
10104
|
+
icon: 'nebula',
|
|
10105
|
+
standard: 'EIP3091'
|
|
10106
|
+
}
|
|
10107
|
+
]
|
|
10108
|
+
},
|
|
9882
10109
|
{
|
|
9883
10110
|
name: 'IPOS Network',
|
|
9884
10111
|
chain: 'IPOS',
|
|
@@ -9937,6 +10164,28 @@ const chainArray = [
|
|
|
9937
10164
|
chainId: 1313161556,
|
|
9938
10165
|
networkId: 1313161556
|
|
9939
10166
|
},
|
|
10167
|
+
{
|
|
10168
|
+
name: 'Nebula Mainnet',
|
|
10169
|
+
chain: 'green-giddy-denebola',
|
|
10170
|
+
rpc: [
|
|
10171
|
+
'https://mainnet.skalenodes.com/v1/green-giddy-denebola',
|
|
10172
|
+
'wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola'
|
|
10173
|
+
],
|
|
10174
|
+
faucets: [],
|
|
10175
|
+
nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
|
|
10176
|
+
infoURL: 'https://nebulachain.io/',
|
|
10177
|
+
shortName: 'nebula-mainnet',
|
|
10178
|
+
chainId: 1482601649,
|
|
10179
|
+
networkId: 1482601649,
|
|
10180
|
+
explorers: [
|
|
10181
|
+
{
|
|
10182
|
+
name: 'nebula',
|
|
10183
|
+
url: 'https://green-giddy-denebola.explorer.mainnet.skalenodes.com',
|
|
10184
|
+
icon: 'nebula',
|
|
10185
|
+
standard: 'EIP3091'
|
|
10186
|
+
}
|
|
10187
|
+
]
|
|
10188
|
+
},
|
|
9940
10189
|
{
|
|
9941
10190
|
name: 'Harmony Mainnet Shard 0',
|
|
9942
10191
|
chain: 'Harmony',
|