bridge_ui: remove Aurora from beta

This commit is contained in:
Evan Gray 2022-04-13 21:38:25 -04:00 committed by Evan Gray
parent 6e58ae511d
commit b8b90e1de4
1 changed files with 2 additions and 3 deletions

View File

@ -175,8 +175,7 @@ export const CHAINS: ChainInfo[] =
logo: terraIcon,
},
];
export const BETA_CHAINS: ChainId[] =
CLUSTER === "mainnet" ? [CHAIN_ID_AURORA] : [];
export const BETA_CHAINS: ChainId[] = CLUSTER === "mainnet" ? [] : [];
export const CHAINS_WITH_NFT_SUPPORT = CHAINS.filter(
({ id }) =>
id === CHAIN_ID_AVAX ||
@ -1169,7 +1168,7 @@ export const RELAYER_COMPARE_ASSET: RelayerCompareAsset = {
[CHAIN_ID_AVAX]: "avalanche-2",
[CHAIN_ID_OASIS]: "oasis-network",
[CHAIN_ID_FANTOM]: "fantom",
// [CHAIN_ID_AURORA]: "ethereum", // Aurora uses bridged ether
[CHAIN_ID_AURORA]: "ethereum", // Aurora uses bridged ether
} as RelayerCompareAsset;
export const getCoinGeckoURL = (coinGeckoId: string) =>
`https://api.coingecko.com/api/v3/simple/price?ids=${coinGeckoId}&vs_currencies=usd`;