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
+ fix base sepolia url
Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
171
171
return `https://api.bscscan.com/api` ;
172
172
case 'base-testnet' :
173
173
return `https://api-goerli.basescan.org/api` ;
174
+ case 'base-sepolia' :
175
+ return `https://api-sepolia.basescan.org/api` ;
174
176
case 'base' :
175
177
return `https://api.basescan.org/api` ;
176
178
case 'chapel' :
@@ -251,6 +253,8 @@ const getPublicRPCEndpoint = (network: string) => {
251
253
return 'https://api.avax.network/ext/bc/C/rpc' ;
252
254
case 'base-testnet' :
253
255
return 'https://goerli.base.org' ;
256
+ case 'base-sepolia' :
257
+ return 'https://sepolia.base.org' ;
254
258
case 'base' :
255
259
return 'https://rpc.base.org' ;
256
260
case 'bsc' :
You can’t perform that action at this time.
0 commit comments