Skip to content
2 changes: 1 addition & 1 deletion apps/api/src/api/services/alchemypay/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const NETWORK_MAP: Record<string, string> = {
};

const CRYPTO_MAP: Record<string, string> = {
eth: "ETH",
usdc: "USDC",
"usdc.e": "USDC.e",
usdce: "USDC.e",
usdt: "USDT"
};
Expand Down
3 changes: 2 additions & 1 deletion apps/api/src/config/cryptocurrencies.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const mapAssetHubTokenToDetails = (token: AssetHubToken): SupportedCryptocurrenc

const getEvmNetworkTokens = (network: Networks): SupportedCryptocurrencyDetails[] => {
if (isNetworkEVM(network)) {
return Object.values(EvmToken).map(token => mapEvmTokenToDetails(network, token));
const availableTokens = Object.keys(evmTokenConfig[network]) as EvmToken[];
return availableTokens.map(token => mapEvmTokenToDetails(network, token));
} else {
return throwInvalidNetworkError(network);
}
Expand Down
13 changes: 13 additions & 0 deletions apps/frontend/src/assets/coins/ETH.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/frontend/src/assets/coins/ETH_ETHEREUM.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/frontend/src/assets/coins/EURC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/frontend/src/assets/coins/USDC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions apps/frontend/src/assets/coins/USDC_ARBITRUM.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/frontend/src/assets/coins/USDC_ASSETHUB.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 2 additions & 5 deletions apps/frontend/src/assets/coins/USDC_AVALANCHE.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 3 additions & 6 deletions apps/frontend/src/assets/coins/USDC_BASE.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 2 additions & 5 deletions apps/frontend/src/assets/coins/USDC_BSC.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading