Skip to content

Commit

Permalink
Merge branch 'main' into fix-invoke-snap-rpc-calls-in-mm-browser
Browse files Browse the repository at this point in the history
  • Loading branch information
Prithpal-Sooriya authored Jan 10, 2025
2 parents 42d72bb + 6b68dd7 commit 27e7cf4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/images/image-icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ 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';
import KAIA_MAINNET from './kaia.png';

export default {
PALM,
Expand All @@ -31,4 +32,6 @@ export default {
'LINEA-MAINNET': LINEA_MAINNET,
APE: APE_TOKEN,
G: GRAVITY,
'KAIA-MAINNET': KAIA_MAINNET,
'KAIA-KAIROS-TESTNET': KAIA_MAINNET,
};
Binary file added app/images/kaia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions app/util/networks/customNetworks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,16 @@ export const NETWORK_CHAIN_ID: {
readonly APE_CHAIN_TESTNET: '0x8157';
readonly APE_CHAIN_MAINNET: '0x8173';
readonly GRAVITY_ALPHA_MAINNET: '0x659';
readonly KAIA_MAINNET: '0x2019';
readonly KAIA_KAIROS_TESTNET: '0x3e9';
} & typeof CHAIN_IDS = {
FLARE_MAINNET: '0xe',
SONGBIRD_TESTNET: '0x13',
APE_CHAIN_TESTNET: '0x8157',
APE_CHAIN_MAINNET: '0x8173',
GRAVITY_ALPHA_MAINNET: '0x659',
KAIA_MAINNET: '0x2019',
KAIA_KAIROS_TESTNET: '0x3e9',
...CHAIN_IDS,
};

Expand All @@ -230,4 +234,6 @@ export const CustomNetworkImgMapping: Record<Hex, string> = {
[NETWORK_CHAIN_ID.APE_CHAIN_MAINNET]: require('../../images/ape-network.png'),
[NETWORK_CHAIN_ID.GRAVITY_ALPHA_MAINNET]: require('../../images/gravity.png'),
[NETWORK_CHAIN_ID.LINEA_MAINNET]: require('../../images/linea-mainnet-logo.png'),
[NETWORK_CHAIN_ID.KAIA_MAINNET]: require('../../images/kaia.png'),
[NETWORK_CHAIN_ID.KAIA_KAIROS_TESTNET]: require('../../images/kaia.png'),
};

0 comments on commit 27e7cf4

Please sign in to comment.