Skip to content

Commit

Permalink
Fix arbitrumSepolia chainId and color
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxooo committed May 30, 2024
1 parent 7c174c8 commit 47dbac7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/constants/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const NETWORK_INFO: Record<Network, NetworkInfo> = {
chainId: Network.ARBITRUM,
ensAddress: '0x0000000000000000000000000000000000000000',
explorerUrl: 'https://arbiscan.io',
color: '#17202c',
color: '#1b4add',
nativeToken: ETHEREUM_NATIVE_TOKEN, // Using ETH as native token
networkType: 'arbitrum',
rpc: {
Expand All @@ -117,7 +117,7 @@ export const NETWORK_INFO: Record<Network, NetworkInfo> = {
chainId: Network.ARBITRUM_SEPOLIA,
ensAddress: '0x0000000000000000000000000000000000000000',
explorerUrl: 'https://sepolia.arbiscan.io',
color: '#17202c',
color: '#1b4add',
nativeToken: ETHEREUM_NATIVE_TOKEN, // Using ETH as native token
networkType: 'arbitrum',
rpc: {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/types/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export enum Network {
BSC = 56,
BSC_TESTNET = 97,
ARBITRUM = 42161,
ARBITRUM_SEPOLIA = 42164,
ARBITRUM_SEPOLIA = 421614,
}

export interface Token {
Expand Down

0 comments on commit 47dbac7

Please sign in to comment.