eth-chainlist 0.0.146 → 0.0.147
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 +112 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.147 (2023-05-11)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.146 ([d463850](https://github.com/poowf/eth-chainlist/commit/d4638508208a5c168b4775925a68a7b5369ae5d3))
|
9
|
+
* update chain data ([8e61b42](https://github.com/poowf/eth-chainlist/commit/8e61b42263fbbc5c11507151e9f19d0496970498))
|
10
|
+
|
3
11
|
### 0.0.146 (2023-05-10)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3848,7 +3848,7 @@ const chainArray = [
|
|
3848
3848
|
{
|
3849
3849
|
name: 'Camino C-Chain',
|
3850
3850
|
chain: 'CAM',
|
3851
|
-
rpc: [],
|
3851
|
+
rpc: [ 'https://api.camino.network/ext/bc/C/rpc' ],
|
3852
3852
|
faucets: [],
|
3853
3853
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
3854
3854
|
infoURL: 'https://camino.network/',
|
@@ -3859,7 +3859,7 @@ const chainArray = [
|
|
3859
3859
|
explorers: [
|
3860
3860
|
{
|
3861
3861
|
name: 'blockexplorer',
|
3862
|
-
url: 'https://
|
3862
|
+
url: 'https://suite.camino.network/explorer',
|
3863
3863
|
standard: 'none'
|
3864
3864
|
}
|
3865
3865
|
]
|
@@ -8603,6 +8603,27 @@ const chainArray = [
|
|
8603
8603
|
bridges: [ { url: 'https://bridge.testnet.n3.nahmii.io' } ]
|
8604
8604
|
}
|
8605
8605
|
},
|
8606
|
+
{
|
8607
|
+
name: 'Oasis Testnet',
|
8608
|
+
title: 'Bahamut Testnet Oasis',
|
8609
|
+
icon: 'bahamut',
|
8610
|
+
chain: 'Bahamut',
|
8611
|
+
rpc: [ 'https://rpc1.oasis.bahamutchain.com' ],
|
8612
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
8613
|
+
faucets: [ 'https://faucet.oasis.fastexchain.com' ],
|
8614
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
8615
|
+
infoURL: 'https://fastexchain.com',
|
8616
|
+
shortName: 'Oasis',
|
8617
|
+
chainId: 4090,
|
8618
|
+
networkId: 4090,
|
8619
|
+
explorers: [
|
8620
|
+
{
|
8621
|
+
name: 'blockscout',
|
8622
|
+
url: 'https://oasis.ftnscan.com',
|
8623
|
+
standard: 'none'
|
8624
|
+
}
|
8625
|
+
]
|
8626
|
+
},
|
8606
8627
|
{
|
8607
8628
|
name: 'Bitindi Testnet',
|
8608
8629
|
chain: 'BNI',
|
@@ -8924,6 +8945,30 @@ const chainArray = [
|
|
8924
8945
|
}
|
8925
8946
|
]
|
8926
8947
|
},
|
8948
|
+
{
|
8949
|
+
name: 'Sahara',
|
8950
|
+
title: 'Bahamut mainnet Sahara',
|
8951
|
+
chain: 'Bahamut',
|
8952
|
+
icon: 'bahamut',
|
8953
|
+
rpc: [
|
8954
|
+
'https://rpc1.sahara.bahamutchain.com',
|
8955
|
+
'https://rpc2.sahara.bahamutchain.com'
|
8956
|
+
],
|
8957
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
8958
|
+
faucets: [],
|
8959
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
8960
|
+
shortName: 'ftn',
|
8961
|
+
infoURL: 'https://fastexchain.com',
|
8962
|
+
chainId: 5165,
|
8963
|
+
networkId: 5165,
|
8964
|
+
explorers: [
|
8965
|
+
{
|
8966
|
+
name: 'blockscout',
|
8967
|
+
url: 'https://ftnscan.com',
|
8968
|
+
standard: 'none'
|
8969
|
+
}
|
8970
|
+
]
|
8971
|
+
},
|
8927
8972
|
{
|
8928
8973
|
name: 'TLChain Network Mainnet',
|
8929
8974
|
chain: 'TLC',
|
@@ -9472,6 +9517,25 @@ const chainArray = [
|
|
9472
9517
|
}
|
9473
9518
|
]
|
9474
9519
|
},
|
9520
|
+
{
|
9521
|
+
name: 'Raba Network Mainnet',
|
9522
|
+
chain: 'Raba',
|
9523
|
+
icon: 'raba',
|
9524
|
+
rpc: [ 'https://rpc.x.raba.app/', 'wss://rpc.x.raba.app/ws/' ],
|
9525
|
+
faucets: [],
|
9526
|
+
nativeCurrency: { name: 'Raba', symbol: 'RABA', decimals: 18 },
|
9527
|
+
infoURL: 'https://x.raba.app/',
|
9528
|
+
shortName: 'raba',
|
9529
|
+
chainId: 7484,
|
9530
|
+
networkId: 7484,
|
9531
|
+
explorers: [
|
9532
|
+
{
|
9533
|
+
name: 'raba',
|
9534
|
+
url: 'https://x.raba.app/explorer',
|
9535
|
+
standard: 'none'
|
9536
|
+
}
|
9537
|
+
]
|
9538
|
+
},
|
9475
9539
|
{
|
9476
9540
|
name: 'ADIL Testnet',
|
9477
9541
|
chain: 'ADIL',
|
@@ -10561,6 +10625,27 @@ const chainArray = [
|
|
10561
10625
|
networkId: 9792,
|
10562
10626
|
explorers: []
|
10563
10627
|
},
|
10628
|
+
{
|
10629
|
+
name: 'AltLayer Testnet',
|
10630
|
+
chain: 'ETH',
|
10631
|
+
rpc: [ 'https://testnet-rollup-api.altlayer.io' ],
|
10632
|
+
faucets: [],
|
10633
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
10634
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10635
|
+
infoURL: 'https://altlayer.io',
|
10636
|
+
shortName: 'alt-testnet',
|
10637
|
+
chainId: 9997,
|
10638
|
+
networkId: 9997,
|
10639
|
+
icon: 'altlayer',
|
10640
|
+
explorers: [
|
10641
|
+
{
|
10642
|
+
name: 'blockscout',
|
10643
|
+
url: 'https://testnet-rollup-explorer.altlayer.io',
|
10644
|
+
icon: 'blockscout',
|
10645
|
+
standard: 'EIP3091'
|
10646
|
+
}
|
10647
|
+
]
|
10648
|
+
},
|
10564
10649
|
{
|
10565
10650
|
name: 'myOwn Testnet',
|
10566
10651
|
chain: 'myOwn',
|
@@ -13038,6 +13123,30 @@ const chainArray = [
|
|
13038
13123
|
}
|
13039
13124
|
]
|
13040
13125
|
},
|
13126
|
+
{
|
13127
|
+
name: 'GuapcoinX',
|
13128
|
+
chain: 'GuapcoinX',
|
13129
|
+
rpc: [
|
13130
|
+
'https://rpc-mainnet.guapcoinx.com/',
|
13131
|
+
'https://rpc-mainnet-1.guapcoinx.com/',
|
13132
|
+
'https://rpc-mainnet-2.guapcoinx.com/'
|
13133
|
+
],
|
13134
|
+
faucets: [],
|
13135
|
+
nativeCurrency: { name: 'GuapcoinX', symbol: 'GuapX', decimals: 18 },
|
13136
|
+
infoURL: 'https://guapcoin.org/',
|
13137
|
+
shortName: 'GuapX',
|
13138
|
+
chainId: 71111,
|
13139
|
+
networkId: 71111,
|
13140
|
+
icon: 'guapcoinx',
|
13141
|
+
explorers: [
|
13142
|
+
{
|
13143
|
+
name: 'GuapcoinX Explorer',
|
13144
|
+
url: 'http://explorer.guapcoinx.com',
|
13145
|
+
standard: 'none',
|
13146
|
+
icon: 'guapcoinx'
|
13147
|
+
}
|
13148
|
+
]
|
13149
|
+
},
|
13041
13150
|
{
|
13042
13151
|
name: 'Polyjuice Testnet',
|
13043
13152
|
chain: 'CKB',
|
@@ -14737,7 +14846,7 @@ const chainArray = [
|
|
14737
14846
|
faucets: [],
|
14738
14847
|
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
14739
14848
|
infoURL: 'https://fastex.com',
|
14740
|
-
shortName: '
|
14849
|
+
shortName: 'fastexTestnet',
|
14741
14850
|
chainId: 424242,
|
14742
14851
|
networkId: 424242,
|
14743
14852
|
explorers: [
|