File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
packages/cli/src/command-helpers Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @graphprotocol/graph-cli " : minor
3
+ ---
4
+
5
+ added publicRpc and blockExplorer for arbitrum nova
Original file line number Diff line number Diff line change @@ -316,7 +316,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
316
316
return 'https://xexplorer.neo.org/api' ;
317
317
case 'neox-testnet' :
318
318
return 'https://xt4scan.ngd.network/api' ;
319
-
319
+ case 'arbitrum-nova' :
320
+ return 'https://api-nova.arbiscan.io/api' ;
320
321
default :
321
322
return `https://api-${ network } .etherscan.io/api` ;
322
323
}
@@ -447,6 +448,8 @@ const getPublicRPCEndpoint = (network: string) => {
447
448
return 'https://mainnet-1.rpc.banelabs.org' ;
448
449
case 'neox-testnet' :
449
450
return 'https://neoxt4seed1.ngd.network' ;
451
+ case 'arbitrum-nova' :
452
+ return 'https://nova.arbitrum.io/rpc' ;
450
453
default :
451
454
throw new Error ( `Unknown network: ${ network } ` ) ;
452
455
}
You can’t perform that action at this time.
0 commit comments