diff --git a/app/images/ape-network.png b/app/images/ape-network.png new file mode 100644 index 00000000000..c2985568768 Binary files /dev/null and b/app/images/ape-network.png differ diff --git a/app/images/ape-token.png b/app/images/ape-token.png new file mode 100644 index 00000000000..d23724fd1d8 Binary files /dev/null and b/app/images/ape-token.png differ diff --git a/app/images/image-icons.js b/app/images/image-icons.js index 217ed6a8231..3aae4764051 100644 --- a/app/images/image-icons.js +++ b/app/images/image-icons.js @@ -11,6 +11,7 @@ import AVAX from './avalanche.png'; import LINEA_TESTNET from './linea-testnet-logo.png'; import SEPOLIA from './sepolia-logo-dark.png'; import LINEA_MAINNET from './linea-mainnet-logo.png'; +import APE_TOKEN from './ape-token.png'; import GRAVITY from './gravity.png'; export default { @@ -28,5 +29,6 @@ export default { 'LINEA-SEPOLIA': LINEA_TESTNET, SEPOLIA, 'LINEA-MAINNET': LINEA_MAINNET, + APE: APE_TOKEN, G: GRAVITY, }; diff --git a/app/util/networks/customNetworks.tsx b/app/util/networks/customNetworks.tsx index c100faa089c..fe301ceae68 100644 --- a/app/util/networks/customNetworks.tsx +++ b/app/util/networks/customNetworks.tsx @@ -133,5 +133,7 @@ export const UnpopularNetworkList = [ export const CustomNetworkImgMapping: Record<`0x${string}`, string> = { '0xe': require('../../images/flare-mainnet.png'), // Flare Mainnet '0x13': require('../../images/songbird.png'), // Songbird Testnet + '0x8157': require('../../images/ape-network.png'), // ApeChain testnet + '0x8173': require('../../images/ape-network.png'), // ApeChain mainnet '0x659': require('../../images/gravity.png'), // Gravity Alpha Mainnet };