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) => {
334
334
return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api' ;
335
335
case 'fuse-testnet' :
336
336
return 'https://explorer.fusespark.io/api' ;
337
+ case 'rootstock-testnet' :
338
+ return 'https://rootstock-testnet.blockscout.com/api' ;
337
339
default :
338
340
return `https://api-${ network } .etherscan.io/api` ;
339
341
}
@@ -482,6 +484,12 @@ const getPublicRPCEndpoint = (network: string) => {
482
484
return 'https://testnet.bnb.boba.network' ;
483
485
case 'fuse-testnet' :
484
486
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' ;
485
493
default :
486
494
throw new Error ( `Unknown network: ${ network } ` ) ;
487
495
}
You can’t perform that action at this time.
0 commit comments