eth-chainlist 0.0.6 → 0.0.7
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 +210 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.7 (2022-11-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.6 ([f59abce](https://github.com/poowf/eth-chainlist/commit/f59abce5dc8e5e816518a9d2eefeddc3ad2be423))
|
|
9
|
+
* update chain data ([b31c900](https://github.com/poowf/eth-chainlist/commit/b31c900c80234f886e812b8f868b8d069c1d31aa))
|
|
10
|
+
|
|
3
11
|
### [0.0.6](https://github.com/poowf/eth-chainlist/compare/v0.0.5...v0.0.6) (2022-11-08)
|
|
4
12
|
|
|
5
13
|
### 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',
|
|
@@ -3907,6 +3925,25 @@ const chainArray = [
|
|
|
3907
3925
|
bridges: [ { url: 'https://bridge.metis.io' } ]
|
|
3908
3926
|
}
|
|
3909
3927
|
},
|
|
3928
|
+
{
|
|
3929
|
+
name: 'MOAC mainnet',
|
|
3930
|
+
chain: 'MOAC',
|
|
3931
|
+
rpc: [ 'http://gateway.moac.io/mainnet' ],
|
|
3932
|
+
faucets: [],
|
|
3933
|
+
nativeCurrency: { name: 'MOAC', symbol: 'mc', decimals: 18 },
|
|
3934
|
+
infoURL: 'https://moac.io',
|
|
3935
|
+
shortName: 'moac',
|
|
3936
|
+
chainId: 1099,
|
|
3937
|
+
networkId: 1099,
|
|
3938
|
+
slip44: 314,
|
|
3939
|
+
explorers: [
|
|
3940
|
+
{
|
|
3941
|
+
name: 'moac explorer',
|
|
3942
|
+
url: 'https://explorer.moac.io',
|
|
3943
|
+
standard: 'none'
|
|
3944
|
+
}
|
|
3945
|
+
]
|
|
3946
|
+
},
|
|
3910
3947
|
{
|
|
3911
3948
|
name: 'WEMIX3.0 Mainnet',
|
|
3912
3949
|
chain: 'WEMIX',
|
|
@@ -4291,6 +4328,24 @@ const chainArray = [
|
|
|
4291
4328
|
}
|
|
4292
4329
|
]
|
|
4293
4330
|
},
|
|
4331
|
+
{
|
|
4332
|
+
name: 'Dos Fuji Subnet',
|
|
4333
|
+
chain: 'DOS',
|
|
4334
|
+
rpc: [ 'https://test.doschain.com/jsonrpc' ],
|
|
4335
|
+
faucets: [],
|
|
4336
|
+
nativeCurrency: { name: 'Dos Native Token', symbol: 'DOS', decimals: 18 },
|
|
4337
|
+
infoURL: 'http://doschain.io/',
|
|
4338
|
+
shortName: 'DOS',
|
|
4339
|
+
chainId: 1311,
|
|
4340
|
+
networkId: 1311,
|
|
4341
|
+
explorers: [
|
|
4342
|
+
{
|
|
4343
|
+
name: 'dos-testnet',
|
|
4344
|
+
url: 'https://test.doscan.io',
|
|
4345
|
+
standard: 'EIP3091'
|
|
4346
|
+
}
|
|
4347
|
+
]
|
|
4348
|
+
},
|
|
4294
4349
|
{
|
|
4295
4350
|
name: 'Aitd Mainnet',
|
|
4296
4351
|
chain: 'AITD',
|
|
@@ -4341,6 +4396,25 @@ const chainArray = [
|
|
|
4341
4396
|
chainId: 1337,
|
|
4342
4397
|
networkId: 1337
|
|
4343
4398
|
},
|
|
4399
|
+
{
|
|
4400
|
+
name: 'Polygon zkEVM Testnet',
|
|
4401
|
+
title: 'Polygon zkEVM Testnet',
|
|
4402
|
+
chain: 'Polygon',
|
|
4403
|
+
rpc: [ 'https://rpc.public.zkevm-test.net' ],
|
|
4404
|
+
faucets: [],
|
|
4405
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
4406
|
+
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
|
4407
|
+
shortName: 'zkevmtest',
|
|
4408
|
+
chainId: 1402,
|
|
4409
|
+
networkId: 1402,
|
|
4410
|
+
explorers: [
|
|
4411
|
+
{
|
|
4412
|
+
name: 'blockscout',
|
|
4413
|
+
url: 'https://explorer.public.zkevm-test.net',
|
|
4414
|
+
standard: 'EIP3091'
|
|
4415
|
+
}
|
|
4416
|
+
]
|
|
4417
|
+
},
|
|
4344
4418
|
{
|
|
4345
4419
|
name: 'Sherpax Mainnet',
|
|
4346
4420
|
chain: 'Sherpax Mainnet',
|
|
@@ -4441,6 +4515,26 @@ const chainArray = [
|
|
|
4441
4515
|
chainId: 1688,
|
|
4442
4516
|
networkId: 1688
|
|
4443
4517
|
},
|
|
4518
|
+
{
|
|
4519
|
+
name: 'Anytype EVM Chain',
|
|
4520
|
+
chain: 'ETH',
|
|
4521
|
+
icon: 'any',
|
|
4522
|
+
rpc: [ 'https://geth.anytype.io' ],
|
|
4523
|
+
faucets: [ 'https://evm.anytype.io/faucet' ],
|
|
4524
|
+
nativeCurrency: { name: 'ANY', symbol: 'ANY', decimals: 18 },
|
|
4525
|
+
infoURL: 'https://evm.anytype.io',
|
|
4526
|
+
shortName: 'AnytypeChain',
|
|
4527
|
+
chainId: 1701,
|
|
4528
|
+
networkId: 1701,
|
|
4529
|
+
explorers: [
|
|
4530
|
+
{
|
|
4531
|
+
name: 'Anytype Explorer',
|
|
4532
|
+
url: 'https://explorer.anytype.io',
|
|
4533
|
+
icon: 'any',
|
|
4534
|
+
standard: 'EIP3091'
|
|
4535
|
+
}
|
|
4536
|
+
]
|
|
4537
|
+
},
|
|
4444
4538
|
{
|
|
4445
4539
|
name: 'TBSI Mainnet',
|
|
4446
4540
|
title: 'Thai Blockchain Service Infrastructure Mainnet',
|
|
@@ -6194,7 +6288,7 @@ const chainArray = [
|
|
|
6194
6288
|
{
|
|
6195
6289
|
name: 'Alph Network',
|
|
6196
6290
|
chain: 'ALPH',
|
|
6197
|
-
rpc: [ 'https://rpc.alph.network' ],
|
|
6291
|
+
rpc: [ 'https://rpc.alph.network', 'wss://rpc.alph.network' ],
|
|
6198
6292
|
faucets: [],
|
|
6199
6293
|
nativeCurrency: { name: 'Alph Network', symbol: 'ALPH', decimals: 18 },
|
|
6200
6294
|
infoURL: 'https://alph.network',
|
|
@@ -7748,6 +7842,30 @@ const chainArray = [
|
|
|
7748
7842
|
}
|
|
7749
7843
|
]
|
|
7750
7844
|
},
|
|
7845
|
+
{
|
|
7846
|
+
name: 'DoKEN Super Chain Mainnet',
|
|
7847
|
+
chain: 'DoKEN Super Chain',
|
|
7848
|
+
rpc: [
|
|
7849
|
+
'https://sgrpc.doken.dev',
|
|
7850
|
+
'https://nyrpc.doken.dev',
|
|
7851
|
+
'https://ukrpc.doken.dev'
|
|
7852
|
+
],
|
|
7853
|
+
faucets: [],
|
|
7854
|
+
nativeCurrency: { name: 'DoKEN', symbol: 'DKN', decimals: 18 },
|
|
7855
|
+
infoURL: 'https://doken.dev/',
|
|
7856
|
+
shortName: 'DoKEN',
|
|
7857
|
+
chainId: 61916,
|
|
7858
|
+
networkId: 61916,
|
|
7859
|
+
icon: 'doken',
|
|
7860
|
+
explorers: [
|
|
7861
|
+
{
|
|
7862
|
+
name: 'DSC Scan',
|
|
7863
|
+
url: 'https://explore.doken.dev',
|
|
7864
|
+
icon: 'doken',
|
|
7865
|
+
standard: 'EIP3091'
|
|
7866
|
+
}
|
|
7867
|
+
]
|
|
7868
|
+
},
|
|
7751
7869
|
{
|
|
7752
7870
|
name: 'Celo Baklava Testnet',
|
|
7753
7871
|
chainId: 62320,
|
|
@@ -9478,6 +9596,52 @@ const chainArray = [
|
|
|
9478
9596
|
slip44: 1,
|
|
9479
9597
|
explorers: []
|
|
9480
9598
|
},
|
|
9599
|
+
{
|
|
9600
|
+
name: 'Imversed Canary',
|
|
9601
|
+
chain: 'Imversed',
|
|
9602
|
+
rpc: [ 'https://jsonrpc-endpoint-canary.imversed.com' ],
|
|
9603
|
+
faucets: [],
|
|
9604
|
+
nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
|
|
9605
|
+
infoURL: 'https://imversed.com',
|
|
9606
|
+
shortName: 'imversed',
|
|
9607
|
+
chainId: 5555555,
|
|
9608
|
+
networkId: 5555555,
|
|
9609
|
+
icon: 'imversed',
|
|
9610
|
+
explorers: [
|
|
9611
|
+
{
|
|
9612
|
+
name: 'Imversed Cosmos Explorer (Big Dipper)',
|
|
9613
|
+
url: 'https://tex-c.imversed.com',
|
|
9614
|
+
icon: 'imversed',
|
|
9615
|
+
standard: 'none'
|
|
9616
|
+
}
|
|
9617
|
+
]
|
|
9618
|
+
},
|
|
9619
|
+
{
|
|
9620
|
+
name: 'Imversed Testnet',
|
|
9621
|
+
chain: 'Imversed',
|
|
9622
|
+
rpc: [ 'https://jsonrpc-endpoint-test.imversed.com' ],
|
|
9623
|
+
faucets: [],
|
|
9624
|
+
nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
|
|
9625
|
+
infoURL: 'https://imversed.com',
|
|
9626
|
+
shortName: 'imversed-testnet',
|
|
9627
|
+
chainId: 5555558,
|
|
9628
|
+
networkId: 5555558,
|
|
9629
|
+
icon: 'imversed',
|
|
9630
|
+
explorers: [
|
|
9631
|
+
{
|
|
9632
|
+
name: 'Imversed EVM Explorer (Blockscout)',
|
|
9633
|
+
url: 'https://txe-test.imversed.com',
|
|
9634
|
+
icon: 'imversed',
|
|
9635
|
+
standard: 'none'
|
|
9636
|
+
},
|
|
9637
|
+
{
|
|
9638
|
+
name: 'Imversed Cosmos Explorer (Big Dipper)',
|
|
9639
|
+
url: 'https://tex-t.imversed.com',
|
|
9640
|
+
icon: 'imversed',
|
|
9641
|
+
standard: 'none'
|
|
9642
|
+
}
|
|
9643
|
+
]
|
|
9644
|
+
},
|
|
9481
9645
|
{
|
|
9482
9646
|
name: 'Musicoin',
|
|
9483
9647
|
chain: 'MUSIC',
|
|
@@ -9879,6 +10043,28 @@ const chainArray = [
|
|
|
9879
10043
|
}
|
|
9880
10044
|
]
|
|
9881
10045
|
},
|
|
10046
|
+
{
|
|
10047
|
+
name: 'Nebula Staging',
|
|
10048
|
+
chain: 'staging-faint-slimy-achird',
|
|
10049
|
+
rpc: [
|
|
10050
|
+
'https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird',
|
|
10051
|
+
'wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird'
|
|
10052
|
+
],
|
|
10053
|
+
faucets: [],
|
|
10054
|
+
nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
|
|
10055
|
+
infoURL: 'https://nebulachain.io/',
|
|
10056
|
+
shortName: 'nebula-staging',
|
|
10057
|
+
chainId: 503129905,
|
|
10058
|
+
networkId: 503129905,
|
|
10059
|
+
explorers: [
|
|
10060
|
+
{
|
|
10061
|
+
name: 'nebula',
|
|
10062
|
+
url: 'https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com',
|
|
10063
|
+
icon: 'nebula',
|
|
10064
|
+
standard: 'EIP3091'
|
|
10065
|
+
}
|
|
10066
|
+
]
|
|
10067
|
+
},
|
|
9882
10068
|
{
|
|
9883
10069
|
name: 'IPOS Network',
|
|
9884
10070
|
chain: 'IPOS',
|
|
@@ -9937,6 +10123,28 @@ const chainArray = [
|
|
|
9937
10123
|
chainId: 1313161556,
|
|
9938
10124
|
networkId: 1313161556
|
|
9939
10125
|
},
|
|
10126
|
+
{
|
|
10127
|
+
name: 'Nebula Mainnet',
|
|
10128
|
+
chain: 'green-giddy-denebola',
|
|
10129
|
+
rpc: [
|
|
10130
|
+
'https://mainnet.skalenodes.com/v1/green-giddy-denebola',
|
|
10131
|
+
'wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola'
|
|
10132
|
+
],
|
|
10133
|
+
faucets: [],
|
|
10134
|
+
nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
|
|
10135
|
+
infoURL: 'https://nebulachain.io/',
|
|
10136
|
+
shortName: 'nebula-mainnet',
|
|
10137
|
+
chainId: 1482601649,
|
|
10138
|
+
networkId: 1482601649,
|
|
10139
|
+
explorers: [
|
|
10140
|
+
{
|
|
10141
|
+
name: 'nebula',
|
|
10142
|
+
url: 'https://green-giddy-denebola.explorer.mainnet.skalenodes.com',
|
|
10143
|
+
icon: 'nebula',
|
|
10144
|
+
standard: 'EIP3091'
|
|
10145
|
+
}
|
|
10146
|
+
]
|
|
10147
|
+
},
|
|
9940
10148
|
{
|
|
9941
10149
|
name: 'Harmony Mainnet Shard 0',
|
|
9942
10150
|
chain: 'Harmony',
|