File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
packages/cli/src/command-helpers Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @graphprotocol/graph-cli " : minor
3
+ ---
4
+
5
+ added rpc and api urls for botanix-testnet
Original file line number Diff line number Diff line change @@ -358,6 +358,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
358
358
return 'https://maizenet-explorer.usecorn.com/api' ;
359
359
case 'corn-testnet' :
360
360
return 'https://testnet-explorer.usecorn.com/api' ;
361
+ case 'botanix-testnet' :
362
+ return 'https://api.routescan.io/v2/network/testnet/evm/3636/etherscan/api' ;
361
363
default :
362
364
return `https://api-${ network } .etherscan.io/api` ;
363
365
}
@@ -522,6 +524,8 @@ const getPublicRPCEndpoint = (network: string) => {
522
524
return 'https://maizenet-rpc.usecorn.com' ;
523
525
case 'corn-testnet' :
524
526
return 'https://testnet-rpc.usecorn.com' ;
527
+ case 'botanix-testnet' :
528
+ return 'https://node.botanixlabs.dev' ;
525
529
default :
526
530
throw new Error ( `Unknown network: ${ network } ` ) ;
527
531
}
You can’t perform that action at this time.
0 commit comments