Skip to content

Commit

Permalink
network: Update APE chain name (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
yigiterdev committed Jul 29, 2024
1 parent e874a5d commit 01a91b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/network/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ export const allNetworks = validateAndSortNetworks([
...genUrls('b3-sepolia')
},
{
...networks[ChainId.APE_CHAIN_TESTNET],
...genUrls('ape-chain-testnet')
...networks[ChainId.APECHAIN_TESTNET],
...genUrls('apechain-testnet')
},
{
...networks[ChainId.BLAST],
Expand Down
10 changes: 5 additions & 5 deletions packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export enum ChainId {
B3_SEPOLIA = 1993,

// APE Chain
APE_CHAIN_TESTNET = 33111,
APECHAIN_TESTNET = 33111,

// Blast
BLAST = 81457,
Expand Down Expand Up @@ -684,12 +684,12 @@ export const networks: Record<ChainId, NetworkMetadata> = {
decimals: 18
}
},
[ChainId.APE_CHAIN_TESTNET]: {
chainId: ChainId.APE_CHAIN_TESTNET,
[ChainId.APECHAIN_TESTNET]: {
chainId: ChainId.APECHAIN_TESTNET,
type: NetworkType.TESTNET,
name: 'ape-chain-testnet',
name: 'apechain-testnet',
title: 'APE Chain Testnet',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.APE_CHAIN_TESTNET}.webp`,
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.APECHAIN_TESTNET}.webp`,
testnet: true,
blockExplorer: {
name: 'APE Chain Explorer',
Expand Down

0 comments on commit 01a91b5

Please sign in to comment.