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 chiliz rpc and api
Original file line number Diff line number Diff line change @@ -320,6 +320,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
320
320
return 'https://api-nova.arbiscan.io/api' ;
321
321
case 'soneium-testnet' :
322
322
return 'https://explorer-testnet.soneium.org/api' ;
323
+ case 'chiliz' :
324
+ return 'https://scan.chiliz.com/api' ;
323
325
default :
324
326
return `https://api-${ network } .etherscan.io/api` ;
325
327
}
@@ -454,6 +456,8 @@ const getPublicRPCEndpoint = (network: string) => {
454
456
return 'https://nova.arbitrum.io/rpc' ;
455
457
case 'soneium-testnet' :
456
458
return 'https://rpc.minato.soneium.org/' ;
459
+ case 'chiliz' :
460
+ return 'https://rpc.ankr.com/chiliz' ;
457
461
default :
458
462
throw new Error ( `Unknown network: ${ network } ` ) ;
459
463
}
You can’t perform that action at this time.
0 commit comments