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 " : patch
3
+ ---
4
+
5
+ add Linea Sepolia RPC and Linea Sepolia Etherscan url
Original file line number Diff line number Diff line change @@ -229,6 +229,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
229
229
return `https://blockscout.scroll.io/api` ;
230
230
case 'linea' :
231
231
return `https://api.lineascan.build/api` ;
232
+ case 'linea-sepolia' :
233
+ return 'https://api-sepolia.lineascan.build/api' ;
232
234
case 'linea-goerli' :
233
235
return `https://api.linea-goerli.build/api` ;
234
236
case 'blast-testnet' :
@@ -333,6 +335,8 @@ const getPublicRPCEndpoint = (network: string) => {
333
335
return 'https://rpc.ankr.com/scroll' ;
334
336
case 'linea' :
335
337
return 'https://linea-mainnet.public.blastapi.io' ;
338
+ case 'linea-sepolia' :
339
+ return 'https://linea-sepolia.public.blastapi.io' ;
336
340
case 'linea-goerli' :
337
341
return 'https://linea-goerli.public.blastapi.io' ;
338
342
case 'blast-testnet' :
You can’t perform that action at this time.
0 commit comments