File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
packages/cli/src/command-helpers Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @graphprotocol/graph-cli " : minor
3+ ---
4+
5+ added new chain
Original file line number Diff line number Diff line change @@ -340,6 +340,10 @@ const getEtherscanLikeAPIUrl = (network: string) => {
340340 return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api' ;
341341 case 'fuse-testnet' :
342342 return 'https://explorer.fusespark.io/api' ;
343+ case 'rootstock-testnet' :
344+ return 'https://rootstock-testnet.blockscout.com/api' ;
345+ case 'unichain-testnet' :
346+ return 'https://unichain-sepolia.blockscout.com/api' ;
343347 default :
344348 return `https://api-${ network } .etherscan.io/api` ;
345349 }
@@ -488,6 +492,14 @@ const getPublicRPCEndpoint = (network: string) => {
488492 return 'https://testnet.bnb.boba.network' ;
489493 case 'fuse-testnet' :
490494 return 'https://rpc.fusespark.io' ;
495+ case 'rootstock-testnet' :
496+ return 'https://public-node.testnet.rsk.co' ;
497+ case 'kaia' :
498+ return 'https://public-en.node.kaia.io' ;
499+ case 'kaia-testnet' :
500+ return 'https://public-en.kairos.node.kaia.io' ;
501+ case 'unichain-testnet' :
502+ return 'http://beta-u-Proxy-9QsHxlNJa4es-1179015898.us-east-2.elb.amazonaws.com:8545' ;
491503 default :
492504 throw new Error ( `Unknown network: ${ network } ` ) ;
493505 }
You can’t perform that action at this time.
0 commit comments