File tree Expand file tree Collapse file tree
packages/wallet/primitives/src Expand file tree Collapse file tree Original file line number Diff line number Diff 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
131134export 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
941962function getRpcUrl ( networkName : string ) : string {
You can’t perform that action at this time.
0 commit comments