Skip to content

Commit

Permalink
chore: Add optimism-sepolia and base-sepolia to frontend (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari authored May 15, 2024
1 parent dec39e7 commit 4a82a97
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/AssetForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ type AssetFormParameters = {

const AssetForm: React.FC<AssetFormParameters> = ({ assetNames, setAssetNames, selectAll, setSelectAll }) => {
const availableAssets = [
"ATOM","AXL","BNB","BTC","CMDX","CMST","CRV","DAI","DOT","ETH",
"INJ","IST","JUNO","KUJI","LINK","LUNA","MATIC","MKR","MNTA",
"OSMO","RETH","SCRT","SEI","STARS","STATOM","STJUNO","STOSMO",
"ARCH", "ATOM","AXL","BNB","BTC","CMDX","CMST","CRV","DAI","DOT","ETH",
"INJ","IST","JUNO","KUJI","LINK","LUNA","MATIC","MKR","MNTA","ORDI",
"OSMO","RETH","SATS","SCRT","SEI","STARS","STATOM","STJUNO","STOSMO",
"SUSHI","USDC","USDT","USK","WBTC","WETH","XRP"
];

Expand Down
4 changes: 4 additions & 0 deletions frontend/src/components/lib/AxelarChains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ export const axelarChains = {
"Arbitrum Goerli": "arbitrum",
"Arbitrum Sepolia": "arbitrum-sepolia",
"Optimism Goerli": "optimism",
"Optimism Sepolia": "optimism-sepolia",
"Base Goerli": "base",
"Base Sepolia": "base-sepolia",
"Mantle Testnet": "mantle",
"Alfajores": "celo",
"Kava EVM Testnet": "kava",
Expand All @@ -35,7 +37,9 @@ export const axelarGatewayAddresses = {
"Arbitrum Goerli": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Arbitrum Sepolia": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Optimism Goerli": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Optimism Sepolia": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Base Goerli": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Base Sepolia": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Mantle Testnet": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Alfajores": "0xe432150cce91c13a887f7D836923d5597adD8E31",
"Kava EVM Testnet": "0xC8D18F85cB0Cee5C95eC29c69DeaF6cea972349c",
Expand Down
6 changes: 4 additions & 2 deletions frontend/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import {
arbitrumGoerli,
arbitrumSepolia,
optimismGoerli,
optimismSepolia,
baseGoerli,
baseSepolia,
mantleTestnet,
celoAlfajores,
kavaTestnet,
Expand All @@ -39,8 +41,8 @@ function getChains(): Chain[] {
} else {
return [goerli, sepolia, bscTestnet, polygonMumbai, polygonZkEvmTestnet,
avalancheFuji, fantomTestnet, moonbaseAlpha, arbitrumGoerli,
arbitrumSepolia, optimismGoerli, baseGoerli, mantleTestnet,
celoAlfajores, kavaTestnet, filecoinCalibration, lineaTestnet]
arbitrumSepolia, optimismGoerli, optimismSepolia, baseGoerli, baseSepolia,
mantleTestnet, celoAlfajores, kavaTestnet, filecoinCalibration, lineaTestnet]
}
}

Expand Down

0 comments on commit 4a82a97

Please sign in to comment.