eth-chainlist 0.0.112 → 0.0.114
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 +337 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.114 (2023-03-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.113 ([77a1858](https://github.com/poowf/eth-chainlist/commit/77a18588cedd915c0bf3baf64e0033b307d55ea9))
|
9
|
+
* update chain data ([dda632c](https://github.com/poowf/eth-chainlist/commit/dda632c827cc8758a22e79b9119b0e6d0b016f8d))
|
10
|
+
|
11
|
+
### 0.0.113 (2023-03-29)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.112 ([b46a2d1](https://github.com/poowf/eth-chainlist/commit/b46a2d1528f7bcc934eaaff3a5e8f7aef0c5cd65))
|
17
|
+
* update chain data ([179ec99](https://github.com/poowf/eth-chainlist/commit/179ec992d510378dd6e6074556d7f9b6c3f34d93))
|
18
|
+
|
3
19
|
### 0.0.112 (2023-03-28)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2012,6 +2012,26 @@ const chainArray = [
|
|
2012
2012
|
networkId: 116,
|
2013
2013
|
explorers: []
|
2014
2014
|
},
|
2015
|
+
{
|
2016
|
+
name: 'Uptick Mainnet',
|
2017
|
+
chain: 'Uptick',
|
2018
|
+
rpc: [ 'https://json-rpc.uptick.network' ],
|
2019
|
+
faucets: [],
|
2020
|
+
nativeCurrency: { name: 'Uptick', symbol: 'UPTICK', decimals: 18 },
|
2021
|
+
infoURL: 'https://www.uptick.network',
|
2022
|
+
shortName: 'auptick',
|
2023
|
+
chainId: 117,
|
2024
|
+
networkId: 117,
|
2025
|
+
icon: 'uptick',
|
2026
|
+
explorers: [
|
2027
|
+
{
|
2028
|
+
name: 'Uptick Explorer',
|
2029
|
+
url: 'https://evm-explorer.uptick.network',
|
2030
|
+
icon: 'uptick',
|
2031
|
+
standard: 'none'
|
2032
|
+
}
|
2033
|
+
]
|
2034
|
+
},
|
2015
2035
|
{
|
2016
2036
|
name: 'Arcology Testnet',
|
2017
2037
|
chain: 'Arcology',
|
@@ -2567,20 +2587,26 @@ const chainArray = [
|
|
2567
2587
|
{
|
2568
2588
|
name: 'OKBChain Testnet',
|
2569
2589
|
chain: 'okbchain',
|
2570
|
-
rpc: [],
|
2571
|
-
faucets: [],
|
2590
|
+
rpc: [ 'https://okbtestrpc.okbchain.org' ],
|
2591
|
+
faucets: [ 'https://www.oklink.com/okbc-test' ],
|
2572
2592
|
nativeCurrency: {
|
2573
2593
|
name: 'OKBChain Global Utility Token in testnet',
|
2574
2594
|
symbol: 'OKB',
|
2575
2595
|
decimals: 18
|
2576
2596
|
},
|
2577
2597
|
features: [],
|
2578
|
-
infoURL: 'https://www.
|
2598
|
+
infoURL: 'https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain',
|
2579
2599
|
shortName: 'tokb',
|
2580
2600
|
chainId: 195,
|
2581
2601
|
networkId: 195,
|
2582
|
-
explorers: [
|
2583
|
-
|
2602
|
+
explorers: [
|
2603
|
+
{
|
2604
|
+
name: 'OKLink',
|
2605
|
+
url: 'https://www.oklink.com/okbc-test',
|
2606
|
+
standard: 'EIP3091'
|
2607
|
+
}
|
2608
|
+
],
|
2609
|
+
status: 'active'
|
2584
2610
|
},
|
2585
2611
|
{
|
2586
2612
|
name: 'OKBChain Mainnet',
|
@@ -3569,7 +3595,7 @@ const chainArray = [
|
|
3569
3595
|
rpc: [],
|
3570
3596
|
faucets: [],
|
3571
3597
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
3572
|
-
infoURL: 'https://camino.
|
3598
|
+
infoURL: 'https://camino.network/',
|
3573
3599
|
shortName: 'Camino',
|
3574
3600
|
chainId: 500,
|
3575
3601
|
networkId: 1000,
|
@@ -3585,10 +3611,10 @@ const chainArray = [
|
|
3585
3611
|
{
|
3586
3612
|
name: 'Columbus Test Network',
|
3587
3613
|
chain: 'CAM',
|
3588
|
-
rpc: [],
|
3614
|
+
rpc: [ 'https://columbus.camino.network/ext/bc/C/rpc' ],
|
3589
3615
|
faucets: [],
|
3590
3616
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
3591
|
-
infoURL: 'https://camino.
|
3617
|
+
infoURL: 'https://camino.network/',
|
3592
3618
|
shortName: 'Columbus',
|
3593
3619
|
chainId: 501,
|
3594
3620
|
networkId: 1001,
|
@@ -4252,6 +4278,7 @@ const chainArray = [
|
|
4252
4278
|
explorers: [
|
4253
4279
|
{
|
4254
4280
|
name: 'meerscan',
|
4281
|
+
icon: 'meer',
|
4255
4282
|
url: 'https://evm.meerscan.com',
|
4256
4283
|
standard: 'none'
|
4257
4284
|
}
|
@@ -5021,6 +5048,32 @@ const chainArray = [
|
|
5021
5048
|
}
|
5022
5049
|
]
|
5023
5050
|
},
|
5051
|
+
{
|
5052
|
+
name: 'Polygon zkEVM',
|
5053
|
+
title: 'Polygon zkEVM',
|
5054
|
+
chain: 'Polygon',
|
5055
|
+
rpc: [ 'https://zkevm-rpc.com' ],
|
5056
|
+
faucets: [],
|
5057
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5058
|
+
infoURL: 'https://polygon.technology/polygon-zkevm',
|
5059
|
+
shortName: 'zkevm',
|
5060
|
+
chainId: 1101,
|
5061
|
+
networkId: 1101,
|
5062
|
+
icon: 'zkevm',
|
5063
|
+
explorers: [
|
5064
|
+
{
|
5065
|
+
name: 'blockscout',
|
5066
|
+
url: 'https://zkevm.polygonscan.com',
|
5067
|
+
icon: 'zkevm',
|
5068
|
+
standard: 'EIP3091'
|
5069
|
+
}
|
5070
|
+
],
|
5071
|
+
parent: {
|
5072
|
+
type: 'L2',
|
5073
|
+
chain: 'eip155-1',
|
5074
|
+
bridges: [ { url: 'https://bridge.zkevm-rpc.com' } ]
|
5075
|
+
}
|
5076
|
+
},
|
5024
5077
|
{
|
5025
5078
|
name: 'WEMIX3.0 Mainnet',
|
5026
5079
|
chain: 'WEMIX',
|
@@ -6355,6 +6408,44 @@ const chainArray = [
|
|
6355
6408
|
}
|
6356
6409
|
]
|
6357
6410
|
},
|
6411
|
+
{
|
6412
|
+
name: 'Super Smart Chain Testnet',
|
6413
|
+
chain: 'TSCS',
|
6414
|
+
rpc: [ 'https://testnet.superexchain.com:8544' ],
|
6415
|
+
faucets: [ 'https://testnet.superexchain.com' ],
|
6416
|
+
nativeCurrency: { name: 'Super Chain Native Token', symbol: 'TSCS', decimals: 18 },
|
6417
|
+
infoURL: 'https://testnet.superexchain.com',
|
6418
|
+
shortName: 'tscs',
|
6419
|
+
chainId: 1969,
|
6420
|
+
networkId: 1969,
|
6421
|
+
icon: 'super',
|
6422
|
+
explorers: [
|
6423
|
+
{
|
6424
|
+
name: 'blockscout',
|
6425
|
+
url: 'https://testnetscan.superexchain.com',
|
6426
|
+
standard: 'EIP3091'
|
6427
|
+
}
|
6428
|
+
]
|
6429
|
+
},
|
6430
|
+
{
|
6431
|
+
name: 'Super Smart Chain Mainnet',
|
6432
|
+
chain: 'SCS',
|
6433
|
+
rpc: [ 'https://superexchain.com:8545' ],
|
6434
|
+
faucets: [],
|
6435
|
+
nativeCurrency: { name: 'Super Chain Native Token', symbol: 'SCS', decimals: 18 },
|
6436
|
+
infoURL: 'https://superexchain.com',
|
6437
|
+
shortName: 'scs',
|
6438
|
+
chainId: 1970,
|
6439
|
+
networkId: 1970,
|
6440
|
+
icon: 'super',
|
6441
|
+
explorers: [
|
6442
|
+
{
|
6443
|
+
name: 'blockscout',
|
6444
|
+
url: 'https://scan.superexchain.com',
|
6445
|
+
standard: 'EIP3091'
|
6446
|
+
}
|
6447
|
+
]
|
6448
|
+
},
|
6358
6449
|
{
|
6359
6450
|
name: 'Atelier',
|
6360
6451
|
title: 'Atelier Test Network',
|
@@ -7988,6 +8079,30 @@ const chainArray = [
|
|
7988
8079
|
}
|
7989
8080
|
]
|
7990
8081
|
},
|
8082
|
+
{
|
8083
|
+
name: 'Nexi Mainnet',
|
8084
|
+
chain: 'Nexi',
|
8085
|
+
icon: 'nexi',
|
8086
|
+
rpc: [
|
8087
|
+
'https://rpc.chain.nexi.technology/',
|
8088
|
+
'https://chain.nexilix.com',
|
8089
|
+
'https://chain.nexi.evmnode.online'
|
8090
|
+
],
|
8091
|
+
faucets: [],
|
8092
|
+
nativeCurrency: { name: 'Nexi', symbol: 'NEXI', decimals: 18 },
|
8093
|
+
infoURL: 'https://www.nexi.technology/',
|
8094
|
+
shortName: 'nexi',
|
8095
|
+
chainId: 4242,
|
8096
|
+
networkId: 4242,
|
8097
|
+
slip44: 2500,
|
8098
|
+
explorers: [
|
8099
|
+
{
|
8100
|
+
name: 'nexiscan',
|
8101
|
+
url: 'https://www.nexiscan.com',
|
8102
|
+
standard: 'EIP3091'
|
8103
|
+
}
|
8104
|
+
]
|
8105
|
+
},
|
7991
8106
|
{
|
7992
8107
|
name: 'Bobafuji Testnet',
|
7993
8108
|
chain: 'Bobafuji Testnet',
|
@@ -8992,11 +9107,77 @@ const chainArray = [
|
|
8992
9107
|
explorers: [
|
8993
9108
|
{
|
8994
9109
|
name: 'meerscan testnet',
|
9110
|
+
icon: 'meer',
|
8995
9111
|
url: 'https://testnet.qng.meerscan.io',
|
8996
9112
|
standard: 'none'
|
8997
9113
|
}
|
8998
9114
|
]
|
8999
9115
|
},
|
9116
|
+
{
|
9117
|
+
name: 'Qitmeer Network Mixnext',
|
9118
|
+
chain: 'MEER',
|
9119
|
+
rpc: [],
|
9120
|
+
faucets: [],
|
9121
|
+
nativeCurrency: { name: 'Qitmeer Mixnet', symbol: 'MEER-M', decimals: 18 },
|
9122
|
+
infoURL: 'https://github.com/Qitmeer',
|
9123
|
+
shortName: 'meermix',
|
9124
|
+
icon: 'meer',
|
9125
|
+
chainId: 8132,
|
9126
|
+
networkId: 8132,
|
9127
|
+
status: 'incubating'
|
9128
|
+
},
|
9129
|
+
{
|
9130
|
+
name: 'Qitmeer Network Privnet',
|
9131
|
+
chain: 'MEER',
|
9132
|
+
rpc: [],
|
9133
|
+
faucets: [],
|
9134
|
+
nativeCurrency: { name: 'Qitmeer Privnet', symbol: 'MEER-P', decimals: 18 },
|
9135
|
+
infoURL: 'https://github.com/Qitmeer',
|
9136
|
+
shortName: 'meerpriv',
|
9137
|
+
icon: 'meer',
|
9138
|
+
chainId: 8133,
|
9139
|
+
networkId: 8133,
|
9140
|
+
status: 'incubating'
|
9141
|
+
},
|
9142
|
+
{
|
9143
|
+
name: 'Amana',
|
9144
|
+
chain: 'MEER',
|
9145
|
+
rpc: [],
|
9146
|
+
faucets: [],
|
9147
|
+
nativeCurrency: { name: 'Amana Mainnet', symbol: 'MEER', decimals: 18 },
|
9148
|
+
infoURL: 'https://github.com/Qitmeer',
|
9149
|
+
shortName: 'amana',
|
9150
|
+
icon: 'meer',
|
9151
|
+
chainId: 8134,
|
9152
|
+
networkId: 8134,
|
9153
|
+
status: 'incubating'
|
9154
|
+
},
|
9155
|
+
{
|
9156
|
+
name: 'Flana',
|
9157
|
+
chain: 'MEER',
|
9158
|
+
rpc: [],
|
9159
|
+
faucets: [],
|
9160
|
+
nativeCurrency: { name: 'Flana Mainnet', symbol: 'MEER', decimals: 18 },
|
9161
|
+
infoURL: 'https://github.com/Qitmeer',
|
9162
|
+
shortName: 'flana',
|
9163
|
+
icon: 'meer',
|
9164
|
+
chainId: 8135,
|
9165
|
+
networkId: 8135,
|
9166
|
+
status: 'incubating'
|
9167
|
+
},
|
9168
|
+
{
|
9169
|
+
name: 'Mizana',
|
9170
|
+
chain: 'MEER',
|
9171
|
+
rpc: [],
|
9172
|
+
faucets: [],
|
9173
|
+
nativeCurrency: { name: 'Mizana Mainnet', symbol: 'MEER', decimals: 18 },
|
9174
|
+
infoURL: 'https://github.com/Qitmeer',
|
9175
|
+
shortName: 'mizana',
|
9176
|
+
icon: 'meer',
|
9177
|
+
chainId: 8136,
|
9178
|
+
networkId: 8136,
|
9179
|
+
status: 'incubating'
|
9180
|
+
},
|
9000
9181
|
{
|
9001
9182
|
name: 'BeOne Chain Testnet',
|
9002
9183
|
chain: 'BOC',
|
@@ -11595,6 +11776,37 @@ const chainArray = [
|
|
11595
11776
|
}
|
11596
11777
|
]
|
11597
11778
|
},
|
11779
|
+
{
|
11780
|
+
name: 'Linea Testnet',
|
11781
|
+
title: 'Linea Testnet',
|
11782
|
+
chain: 'ETH',
|
11783
|
+
rpc: [ 'https://rpc.goerli.linea.build' ],
|
11784
|
+
faucets: [ 'https://faucetlink.to/goerli' ],
|
11785
|
+
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
11786
|
+
infoURL: 'https://linea.build',
|
11787
|
+
shortName: 'linea-testnet',
|
11788
|
+
chainId: 59140,
|
11789
|
+
networkId: 59140,
|
11790
|
+
icon: 'linea',
|
11791
|
+
parent: {
|
11792
|
+
type: 'L2',
|
11793
|
+
chain: 'eip155-5',
|
11794
|
+
bridges: [
|
11795
|
+
{
|
11796
|
+
url: 'https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea'
|
11797
|
+
}
|
11798
|
+
]
|
11799
|
+
},
|
11800
|
+
explorers: [
|
11801
|
+
{
|
11802
|
+
name: 'Linea Testnet Explorer',
|
11803
|
+
url: 'https://explorer.goerli.linea.build',
|
11804
|
+
standard: 'EIP3091',
|
11805
|
+
icon: 'linea'
|
11806
|
+
}
|
11807
|
+
],
|
11808
|
+
status: 'active'
|
11809
|
+
},
|
11598
11810
|
{
|
11599
11811
|
name: 'Thinkium Testnet Chain 0',
|
11600
11812
|
chain: 'Thinkium',
|
@@ -12112,6 +12324,123 @@ const chainArray = [
|
|
12112
12324
|
}
|
12113
12325
|
]
|
12114
12326
|
},
|
12327
|
+
{
|
12328
|
+
name: 'Amana Testnet',
|
12329
|
+
chain: 'MEER',
|
12330
|
+
rpc: [],
|
12331
|
+
faucets: [],
|
12332
|
+
nativeCurrency: { name: 'Amana Testnet', symbol: 'MEER-t', decimals: 18 },
|
12333
|
+
infoURL: 'https://github.com/Qitmeer',
|
12334
|
+
shortName: 'amanatest',
|
12335
|
+
icon: 'meer',
|
12336
|
+
chainId: 81341,
|
12337
|
+
networkId: 81341,
|
12338
|
+
status: 'incubating'
|
12339
|
+
},
|
12340
|
+
{
|
12341
|
+
name: 'Amana Mixnet',
|
12342
|
+
chain: 'MEER',
|
12343
|
+
rpc: [],
|
12344
|
+
faucets: [],
|
12345
|
+
nativeCurrency: { name: 'Amana Mixnet', symbol: 'MEER-m', decimals: 18 },
|
12346
|
+
infoURL: 'https://github.com/Qitmeer',
|
12347
|
+
shortName: 'amanamix',
|
12348
|
+
icon: 'meer',
|
12349
|
+
chainId: 81342,
|
12350
|
+
networkId: 81342,
|
12351
|
+
status: 'incubating'
|
12352
|
+
},
|
12353
|
+
{
|
12354
|
+
name: 'Amana Privnet',
|
12355
|
+
chain: 'MEER',
|
12356
|
+
rpc: [],
|
12357
|
+
faucets: [],
|
12358
|
+
nativeCurrency: { name: 'Amana Privnet', symbol: 'MEER-p', decimals: 18 },
|
12359
|
+
infoURL: 'https://github.com/Qitmeer',
|
12360
|
+
shortName: 'amanapriv',
|
12361
|
+
icon: 'meer',
|
12362
|
+
chainId: 81343,
|
12363
|
+
networkId: 81343,
|
12364
|
+
status: 'incubating'
|
12365
|
+
},
|
12366
|
+
{
|
12367
|
+
name: 'Flana Testnet',
|
12368
|
+
chain: 'MEER',
|
12369
|
+
rpc: [],
|
12370
|
+
faucets: [],
|
12371
|
+
nativeCurrency: { name: 'Flana Testnet', symbol: 'MEER-t', decimals: 18 },
|
12372
|
+
infoURL: 'https://github.com/Qitmeer',
|
12373
|
+
shortName: 'flanatest',
|
12374
|
+
icon: 'meer',
|
12375
|
+
chainId: 81351,
|
12376
|
+
networkId: 81351,
|
12377
|
+
status: 'incubating'
|
12378
|
+
},
|
12379
|
+
{
|
12380
|
+
name: 'Flana Mixnet',
|
12381
|
+
chain: 'MEER',
|
12382
|
+
rpc: [],
|
12383
|
+
faucets: [],
|
12384
|
+
nativeCurrency: { name: 'Flana Mixnet', symbol: 'MEER-m', decimals: 18 },
|
12385
|
+
infoURL: 'https://github.com/Qitmeer',
|
12386
|
+
shortName: 'flanamix',
|
12387
|
+
icon: 'meer',
|
12388
|
+
chainId: 81352,
|
12389
|
+
networkId: 81352,
|
12390
|
+
status: 'incubating'
|
12391
|
+
},
|
12392
|
+
{
|
12393
|
+
name: 'Flana Privnet',
|
12394
|
+
chain: 'MEER',
|
12395
|
+
rpc: [],
|
12396
|
+
faucets: [],
|
12397
|
+
nativeCurrency: { name: 'Flana Privnet', symbol: 'MEER-p', decimals: 18 },
|
12398
|
+
infoURL: 'https://github.com/Qitmeer',
|
12399
|
+
shortName: 'flanapriv',
|
12400
|
+
icon: 'meer',
|
12401
|
+
chainId: 81353,
|
12402
|
+
networkId: 81353,
|
12403
|
+
status: 'incubating'
|
12404
|
+
},
|
12405
|
+
{
|
12406
|
+
name: 'Mizana Testnet',
|
12407
|
+
chain: 'MEER',
|
12408
|
+
rpc: [],
|
12409
|
+
faucets: [],
|
12410
|
+
nativeCurrency: { name: 'Mizana Testnet', symbol: 'MEER-t', decimals: 18 },
|
12411
|
+
infoURL: 'https://github.com/Qitmeer',
|
12412
|
+
shortName: 'mizanatest',
|
12413
|
+
icon: 'meer',
|
12414
|
+
chainId: 81361,
|
12415
|
+
networkId: 81361,
|
12416
|
+
status: 'incubating'
|
12417
|
+
},
|
12418
|
+
{
|
12419
|
+
name: 'Mizana Mixnet',
|
12420
|
+
chain: 'MEER',
|
12421
|
+
rpc: [],
|
12422
|
+
faucets: [],
|
12423
|
+
nativeCurrency: { name: 'Mizana Mixnet', symbol: 'MEER-m', decimals: 18 },
|
12424
|
+
infoURL: 'https://github.com/Qitmeer',
|
12425
|
+
shortName: 'mizanamix',
|
12426
|
+
icon: 'meer',
|
12427
|
+
chainId: 81362,
|
12428
|
+
networkId: 81362,
|
12429
|
+
status: 'incubating'
|
12430
|
+
},
|
12431
|
+
{
|
12432
|
+
name: 'Mizana Privnet',
|
12433
|
+
chain: 'MEER',
|
12434
|
+
rpc: [],
|
12435
|
+
faucets: [],
|
12436
|
+
nativeCurrency: { name: 'Mizana Privnet', symbol: 'MEER-p', decimals: 18 },
|
12437
|
+
infoURL: 'https://github.com/Qitmeer',
|
12438
|
+
shortName: 'mizanapriv',
|
12439
|
+
icon: 'meer',
|
12440
|
+
chainId: 81363,
|
12441
|
+
networkId: 81363,
|
12442
|
+
status: 'incubating'
|
12443
|
+
},
|
12115
12444
|
{
|
12116
12445
|
name: 'Base Goerli Testnet',
|
12117
12446
|
chain: 'ETH',
|