Skip to content

Commit

Permalink
fix: add kaia logo (#12860)
Browse files Browse the repository at this point in the history
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

add logo for Kaia network

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

<img width="433" alt="Screenshot 2025-01-08 at 12 13 06"
src="https://github.com/user-attachments/assets/e61f4806-94b2-43f5-9ce6-4a29dd2066e9"
/>


## **Pre-merge author checklist**

- [ ] I’ve followed [MetaMask Contributor
Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile
Coding
Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] I’ve applied the right labels on the PR (see [labeling
guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)).
Not required for external contributors.

## **Pre-merge reviewer checklist**

- [ ] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [ ] I confirm that this PR addresses all acceptance criteria described
in the ticket it closes and includes the necessary testing evidence such
as recordings and or screenshots.
  • Loading branch information
salimtb authored Jan 10, 2025
1 parent b2fe978 commit 6b68dd7
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 6b68dd7

Please sign in to comment.