Skip to content

Commit bddb8a3

Browse files
committed
Add Arc Testnet
1 parent 8a27049 commit bddb8a3

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

packages/wallet/primitives/src/network.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ export const ChainId = {
126126

127127
// SANDBOX
128128
SANDBOX_TESTNET: 6252,
129+
130+
// ARC
131+
ARC_TESTNET: 5042002,
129132
} as const
130133

131134
export type ChainId = (typeof ChainId)[keyof typeof ChainId]
@@ -936,6 +939,24 @@ export const ALL: Network[] = [
936939
decimals: 18,
937940
},
938941
},
942+
943+
{
944+
chainId: ChainId.ARC_TESTNET,
945+
type: NetworkType.TESTNET,
946+
name: 'arc-testnet',
947+
title: 'Arc Testnet',
948+
rpcUrl: getRpcUrl('arc-testnet'),
949+
logoUrl: getLogoUrl(ChainId.ARC_TESTNET),
950+
blockExplorer: {
951+
name: 'Arc Testnet Explorer',
952+
url: 'https://1jr2dw1zdqvyes8u.blockscout.com/',
953+
},
954+
nativeCurrency: {
955+
symbol: 'USDC',
956+
name: 'USDC',
957+
decimals: 6,
958+
},
959+
},
939960
]
940961

941962
function getRpcUrl(networkName: string): string {

0 commit comments

Comments
 (0)