eth-chainlist 0.0.494 → 0.0.496
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +201 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.496 (2024-09-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.495 ([f4ef6e4](https://github.com/poowf/eth-chainlist/commit/f4ef6e4a50c8de0a5a33f1cec5daf04df5192e09))
|
9
|
+
* update chain data ([e655124](https://github.com/poowf/eth-chainlist/commit/e655124dc64c7fa68b77805f23eff1898118f5c4))
|
10
|
+
|
11
|
+
### 0.0.495 (2024-09-17)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.494 ([a7c1b99](https://github.com/poowf/eth-chainlist/commit/a7c1b99ddc9fa1f338f2317c8321718302380da9))
|
17
|
+
* update chain data ([d61cf20](https://github.com/poowf/eth-chainlist/commit/d61cf207d24f058ae18e2e9311bf7a60b027e366))
|
18
|
+
|
3
19
|
### 0.0.494 (2024-09-16)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3273,7 +3273,7 @@ const chainArray = [
|
|
3273
3273
|
networkId: 163
|
3274
3274
|
},
|
3275
3275
|
{
|
3276
|
-
name: 'Omni Omega',
|
3276
|
+
name: 'Omni Omega Testnet',
|
3277
3277
|
chain: 'Omni',
|
3278
3278
|
status: 'active',
|
3279
3279
|
rpc: [ 'https://omega.omni.network', 'wss://wss.omega.omni.network' ],
|
@@ -6177,14 +6177,21 @@ const chainArray = [
|
|
6177
6177
|
{
|
6178
6178
|
name: 'Rupaya',
|
6179
6179
|
chain: 'RUPX',
|
6180
|
-
rpc: [],
|
6181
|
-
faucets: [],
|
6180
|
+
rpc: [ 'https://rpc.rupaya.io' ],
|
6181
|
+
faucets: [ 'https://faucet.rupaya.io' ],
|
6182
6182
|
nativeCurrency: { name: 'Rupaya', symbol: 'RUPX', decimals: 18 },
|
6183
6183
|
infoURL: 'https://www.rupaya.io',
|
6184
6184
|
shortName: 'rupx',
|
6185
6185
|
chainId: 499,
|
6186
6186
|
networkId: 499,
|
6187
|
-
slip44: 499
|
6187
|
+
slip44: 499,
|
6188
|
+
explorers: [
|
6189
|
+
{
|
6190
|
+
name: 'Rupaya Explorer',
|
6191
|
+
url: 'https://scan.rupaya.io',
|
6192
|
+
standard: 'EIP3091'
|
6193
|
+
}
|
6194
|
+
]
|
6188
6195
|
},
|
6189
6196
|
{
|
6190
6197
|
name: 'Camino C-Chain',
|
@@ -14673,6 +14680,25 @@ const chainArray = [
|
|
14673
14680
|
bridges: [ { url: 'https://bridge-holesky.morphl2.io' } ]
|
14674
14681
|
}
|
14675
14682
|
},
|
14683
|
+
{
|
14684
|
+
name: 'HyperAGI Mainnet',
|
14685
|
+
chain: 'HyperAGI',
|
14686
|
+
rpc: [],
|
14687
|
+
faucets: [],
|
14688
|
+
nativeCurrency: { name: 'Hyperdust', symbol: 'HYPT', decimals: 18 },
|
14689
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
14690
|
+
infoURL: 'https://hyperagi.network',
|
14691
|
+
shortName: 'hypt',
|
14692
|
+
chainId: 2868,
|
14693
|
+
networkId: 1,
|
14694
|
+
explorers: [
|
14695
|
+
{
|
14696
|
+
name: 'hyptscan',
|
14697
|
+
url: 'https://block.hyperagi.network',
|
14698
|
+
standard: 'EIP3091'
|
14699
|
+
}
|
14700
|
+
]
|
14701
|
+
},
|
14676
14702
|
{
|
14677
14703
|
name: 'Chips Network',
|
14678
14704
|
chain: 'CHIPS',
|
@@ -14714,6 +14740,26 @@ const chainArray = [
|
|
14714
14740
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
14715
14741
|
}
|
14716
14742
|
},
|
14743
|
+
{
|
14744
|
+
name: 'Aarma Mainnet',
|
14745
|
+
chain: 'Aarma',
|
14746
|
+
rpc: [ 'https://aarmarpc.com/' ],
|
14747
|
+
faucets: [],
|
14748
|
+
nativeCurrency: { name: 'Aarma', symbol: 'ARMA', decimals: 18 },
|
14749
|
+
infoURL: 'https://aarmachain.com',
|
14750
|
+
shortName: 'ARMA',
|
14751
|
+
chainId: 2889,
|
14752
|
+
networkId: 2889,
|
14753
|
+
icon: 'arma',
|
14754
|
+
explorers: [
|
14755
|
+
{
|
14756
|
+
name: 'aarmascan',
|
14757
|
+
url: 'https://aarmascan.com',
|
14758
|
+
icon: 'arma',
|
14759
|
+
standard: 'none'
|
14760
|
+
}
|
14761
|
+
]
|
14762
|
+
},
|
14717
14763
|
{
|
14718
14764
|
name: 'Elux Chain',
|
14719
14765
|
chain: 'ELUX',
|
@@ -17409,6 +17455,19 @@ const chainArray = [
|
|
17409
17455
|
}
|
17410
17456
|
]
|
17411
17457
|
},
|
17458
|
+
{
|
17459
|
+
name: 'DuckChain Mainnet',
|
17460
|
+
title: 'DuckChain Mainnet',
|
17461
|
+
chain: 'DuckChain',
|
17462
|
+
icon: 'duckchain',
|
17463
|
+
rpc: [ 'https://rpc.duckchain.io', 'https://rpc-hk.duckchain.io' ],
|
17464
|
+
faucets: [],
|
17465
|
+
nativeCurrency: { name: 'TON', symbol: 'TON', decimals: 18 },
|
17466
|
+
infoURL: 'https://duckchain.io',
|
17467
|
+
shortName: 'Duck-Chain-Mainnet',
|
17468
|
+
chainId: 5545,
|
17469
|
+
networkId: 5545
|
17470
|
+
},
|
17412
17471
|
{
|
17413
17472
|
name: 'Nahmii 2 Mainnet',
|
17414
17473
|
chain: 'Nahmii',
|
@@ -19862,6 +19921,26 @@ const chainArray = [
|
|
19862
19921
|
icon: 'dracones',
|
19863
19922
|
explorers: []
|
19864
19923
|
},
|
19924
|
+
{
|
19925
|
+
name: 'THAT Mainnet',
|
19926
|
+
chain: 'THAT',
|
19927
|
+
rpc: [ 'https://api.thatchain.io', 'https://api.thatchain.io/mainnet' ],
|
19928
|
+
faucets: [],
|
19929
|
+
nativeCurrency: { name: 'THAT', symbol: 'THAT', decimals: 18 },
|
19930
|
+
infoURL: 'https://that.website',
|
19931
|
+
shortName: 'THAT',
|
19932
|
+
chainId: 8428,
|
19933
|
+
networkId: 8428,
|
19934
|
+
icon: 'that',
|
19935
|
+
explorers: [
|
19936
|
+
{
|
19937
|
+
name: 'THAT Explorer',
|
19938
|
+
url: 'https://that.blockscout.com',
|
19939
|
+
icon: 'blockscout',
|
19940
|
+
standard: 'EIP3091'
|
19941
|
+
}
|
19942
|
+
]
|
19943
|
+
},
|
19865
19944
|
{
|
19866
19945
|
name: 'Base',
|
19867
19946
|
chain: 'ETH',
|
@@ -22873,6 +22952,25 @@ const chainArray = [
|
|
22873
22952
|
}
|
22874
22953
|
]
|
22875
22954
|
},
|
22955
|
+
{
|
22956
|
+
name: 'Vana Moksha Testnet',
|
22957
|
+
chain: 'Vana Moksha Testnet',
|
22958
|
+
rpc: [ 'https://rpc.moksha.vana.org' ],
|
22959
|
+
nativeCurrency: { name: 'VANA', symbol: 'VANA', decimals: 18 },
|
22960
|
+
faucets: [],
|
22961
|
+
infoURL: '',
|
22962
|
+
shortName: 'vana-moksha',
|
22963
|
+
chainId: 14800,
|
22964
|
+
networkId: 14800,
|
22965
|
+
explorers: [
|
22966
|
+
{
|
22967
|
+
name: 'Vana Moksha Testnet',
|
22968
|
+
url: 'https://vanascan.io',
|
22969
|
+
icon: 'vanamoksha',
|
22970
|
+
standard: 'none'
|
22971
|
+
}
|
22972
|
+
]
|
22973
|
+
},
|
22876
22974
|
{
|
22877
22975
|
name: 'Vana Satori Testnet',
|
22878
22976
|
chain: 'Satori',
|
@@ -24419,6 +24517,25 @@ const chainArray = [
|
|
24419
24517
|
}
|
24420
24518
|
]
|
24421
24519
|
},
|
24520
|
+
{
|
24521
|
+
name: 'Everclear Mainnet',
|
24522
|
+
chain: 'Everclear Mainnet',
|
24523
|
+
rpc: [ 'https://rpc.everclear.raas.gelato.cloud' ],
|
24524
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
24525
|
+
faucets: [],
|
24526
|
+
infoURL: '',
|
24527
|
+
shortName: 'Everclear',
|
24528
|
+
chainId: 25327,
|
24529
|
+
networkId: 25327,
|
24530
|
+
explorers: [
|
24531
|
+
{
|
24532
|
+
name: 'Everclear',
|
24533
|
+
url: 'https://scan.everclear.org',
|
24534
|
+
icon: 'everclear',
|
24535
|
+
standard: 'none'
|
24536
|
+
}
|
24537
|
+
]
|
24538
|
+
},
|
24422
24539
|
{
|
24423
24540
|
name: 'AlveyChain Testnet',
|
24424
24541
|
chain: 'tALV',
|
@@ -27905,6 +28022,26 @@ const chainArray = [
|
|
27905
28022
|
],
|
27906
28023
|
parent: { type: 'L2', chain: 'eip155-248' }
|
27907
28024
|
},
|
28025
|
+
{
|
28026
|
+
name: 'DM2 Verse Testnet',
|
28027
|
+
chain: 'DM2 Verse',
|
28028
|
+
icon: 'dm2verse',
|
28029
|
+
rpc: [ 'https://rpc.testnet.dm2verse.dmm.com' ],
|
28030
|
+
faucets: [],
|
28031
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
28032
|
+
infoURL: 'https://seamoon.dmm.com',
|
28033
|
+
shortName: 'dm2t',
|
28034
|
+
chainId: 68775,
|
28035
|
+
networkId: 68775,
|
28036
|
+
explorers: [
|
28037
|
+
{
|
28038
|
+
name: 'DM2Verse Testnet Explorer',
|
28039
|
+
url: 'https://explorer.testnet.dm2verse.dmm.com',
|
28040
|
+
standard: 'EIP3091'
|
28041
|
+
}
|
28042
|
+
],
|
28043
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
28044
|
+
},
|
27908
28045
|
{
|
27909
28046
|
name: 'Condrieu',
|
27910
28047
|
title: 'Ethereum Verkle Testnet Condrieu',
|
@@ -29396,6 +29533,25 @@ const chainArray = [
|
|
29396
29533
|
}
|
29397
29534
|
]
|
29398
29535
|
},
|
29536
|
+
{
|
29537
|
+
name: 'Tetron Smart Chain',
|
29538
|
+
chain: 'Tetron Mainnet',
|
29539
|
+
rpc: [ 'https://rpc.tscscan.org' ],
|
29540
|
+
faucets: [],
|
29541
|
+
features: [ { name: 'EIP155' } ],
|
29542
|
+
nativeCurrency: { name: 'Tetron Mainnet', symbol: 'TSC', decimals: 18 },
|
29543
|
+
infoURL: 'https://tetronchain.com/',
|
29544
|
+
shortName: 'Tetron',
|
29545
|
+
chainId: 97055,
|
29546
|
+
networkId: 97055,
|
29547
|
+
explorers: [
|
29548
|
+
{
|
29549
|
+
name: 'Tetron Smart ChainExplorer',
|
29550
|
+
url: 'https://tscscan.org',
|
29551
|
+
standard: 'EIP3091'
|
29552
|
+
}
|
29553
|
+
]
|
29554
|
+
},
|
29399
29555
|
{
|
29400
29556
|
name: 'Boba BNB Mainnet Old',
|
29401
29557
|
chain: 'Boba BNB Mainnet',
|
@@ -34709,6 +34865,27 @@ const chainArray = [
|
|
34709
34865
|
}
|
34710
34866
|
]
|
34711
34867
|
},
|
34868
|
+
{
|
34869
|
+
name: 'COTI Testnet',
|
34870
|
+
title: 'COTI Testnet',
|
34871
|
+
chain: 'COTI',
|
34872
|
+
icon: 'coti',
|
34873
|
+
rpc: [ 'https://testnet.coti.io/rpc' ],
|
34874
|
+
faucets: [ 'https://faucet.coti.io' ],
|
34875
|
+
nativeCurrency: { name: 'COTI', symbol: 'COTI', decimals: 18 },
|
34876
|
+
infoURL: 'https://coti.io/',
|
34877
|
+
shortName: 'coti-testnet',
|
34878
|
+
chainId: 7082400,
|
34879
|
+
networkId: 7082400,
|
34880
|
+
explorers: [
|
34881
|
+
{
|
34882
|
+
name: 'COTI Testnet Explorer',
|
34883
|
+
url: 'https://testnet.cotiscan.io',
|
34884
|
+
icon: 'ethernal',
|
34885
|
+
standard: 'EIP3091'
|
34886
|
+
}
|
34887
|
+
]
|
34888
|
+
},
|
34712
34889
|
{
|
34713
34890
|
name: 'Saakuru Mainnet',
|
34714
34891
|
chain: 'Saakuru',
|
@@ -35593,6 +35770,26 @@ const chainArray = [
|
|
35593
35770
|
}
|
35594
35771
|
]
|
35595
35772
|
},
|
35773
|
+
{
|
35774
|
+
name: '6Degree of Outreach - Testnet',
|
35775
|
+
chain: '6DO',
|
35776
|
+
rpc: [ 'https://rpc-testnet.6do.world' ],
|
35777
|
+
faucets: [],
|
35778
|
+
nativeCurrency: { name: '6Degree-Testnet Coin', symbol: '6DO-T', decimals: 18 },
|
35779
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
35780
|
+
infoURL: 'https://6do.world',
|
35781
|
+
shortName: '6dotest',
|
35782
|
+
chainId: 24772477,
|
35783
|
+
networkId: 24772477,
|
35784
|
+
icon: '6do',
|
35785
|
+
explorers: [
|
35786
|
+
{
|
35787
|
+
name: '6Degree Testnet Chain Explorer',
|
35788
|
+
url: 'https://explorer-testnet.6do.world',
|
35789
|
+
standard: 'EIP3091'
|
35790
|
+
}
|
35791
|
+
]
|
35792
|
+
},
|
35596
35793
|
{
|
35597
35794
|
name: 'Excoincial Chain Volta-Testnet',
|
35598
35795
|
chain: 'TEXL',
|