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
+ Add new chain: Lens testnet
Original file line number Diff line number Diff line change @@ -340,6 +340,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
340
340
return 'https://rootstock-testnet.blockscout.com/api' ;
341
341
case 'unichain-testnet' :
342
342
return 'https://unichain-sepolia.blockscout.com/api' ;
343
+ case 'lens-testnet' :
344
+ return 'https://block-explorer-api.testnet.lens.dev/api' ;
343
345
default :
344
346
return `https://api-${ network } .etherscan.io/api` ;
345
347
}
@@ -496,6 +498,8 @@ const getPublicRPCEndpoint = (network: string) => {
496
498
return 'https://public-en.kairos.node.kaia.io' ;
497
499
case 'unichain-testnet' :
498
500
return 'https://sepolia.unichain.org' ;
501
+ case 'lens-testnet' :
502
+ return 'https://api.staging.lens.zksync.dev' ;
499
503
default :
500
504
throw new Error ( `Unknown network: ${ network } ` ) ;
501
505
}
You can’t perform that action at this time.
0 commit comments