File tree Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @graphprotocol/graph-cli ' : minor
3
+ ---
4
+
5
+ Arbitrum Sepolia support
Original file line number Diff line number Diff line change @@ -151,6 +151,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
151
151
return `https://api.arbiscan.io/api` ;
152
152
case 'arbitrum-goerli' :
153
153
return `https://api-goerli.arbiscan.io/api` ;
154
+ case 'arbitrum-sepolia' :
155
+ return `https://api-sepolia.arbiscan.io/api` ;
154
156
case 'bsc' :
155
157
return `https://api.bscscan.com/api` ;
156
158
case 'base-testnet' :
@@ -215,6 +217,8 @@ const getPublicRPCEndpoint = (network: string) => {
215
217
return 'https://goerli-rollup.arbitrum.io/rpc' ;
216
218
case 'arbitrum-one' :
217
219
return 'https://arb1.arbitrum.io/rpc' ;
220
+ case 'arbitrum-sepolia' :
221
+ return `https://sepolia-rollup.arbitrum.io/rpc` ;
218
222
case 'aurora' :
219
223
return 'https://rpc.mainnet.aurora.dev' ;
220
224
case 'aurora-testnet' :
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export const allowedStudioNetworks = [
23
23
'base' ,
24
24
'celo' ,
25
25
'arbitrum-one' ,
26
+ 'arbitrum-sepolia' ,
26
27
'avalanche' ,
27
28
'zksync-era' ,
28
29
'zksync-era-testnet' ,
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export default class Protocol {
100
100
'mbase' ,
101
101
'arbitrum-one' ,
102
102
'arbitrum-goerli' ,
103
+ 'arbitrum-sepolia' ,
103
104
'optimism' ,
104
105
'optimism-goerli' ,
105
106
'aurora' ,
You can’t perform that action at this time.
0 commit comments