File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
packages/cli/src/command-helpers Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @graphprotocol/graph-cli " : minor
3+ ---
4+
5+ added rootstock
Original file line number Diff line number Diff line change @@ -334,6 +334,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
334334 return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api' ;
335335 case 'fuse-testnet' :
336336 return 'https://explorer.fusespark.io/api' ;
337+ case 'rootstock-testnet' :
338+ return 'https://rootstock-testnet.blockscout.com/api' ;
337339 default :
338340 return `https://api-${ network } .etherscan.io/api` ;
339341 }
@@ -482,6 +484,12 @@ const getPublicRPCEndpoint = (network: string) => {
482484 return 'https://testnet.bnb.boba.network' ;
483485 case 'fuse-testnet' :
484486 return 'https://rpc.fusespark.io' ;
487+ case 'rootstock-testnet' :
488+ return 'https://public-node.testnet.rsk.co' ;
489+ case 'kaia' :
490+ return 'https://public-en.node.kaia.io' ;
491+ case 'kaia-testnet' :
492+ return 'https://public-en.kairos.node.kaia.io' ;
485493 default :
486494 throw new Error ( `Unknown network: ${ network } ` ) ;
487495 }
You can’t perform that action at this time.
0 commit comments