File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed
packages/cli/src/command-helpers Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @graphprotocol/graph-cli ' : patch
3
+ ---
4
+
5
+ fix fantom network init URLs
Original file line number Diff line number Diff line change 16
16
npmTag : alpha
17
17
buildScript : build
18
18
nodeVersion : 16
19
+ packageManager : pnpm
19
20
secrets :
20
21
githubToken : ${{ secrets.GITHUB_TOKEN }}
21
22
npmToken : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
name : Release
2
2
on :
3
- pull_request :
3
+ push :
4
4
branches :
5
5
- main
6
6
10
10
with :
11
11
releaseScript : release
12
12
nodeVersion : 16
13
+ packageManager : pnpm
13
14
secrets :
14
15
githubToken : ${{ secrets.GITHUB_TOKEN }}
15
16
npmToken : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ const getEtherscanLikeAPIUrl = (network) => {
66
66
case "avalanche" : return `https://api.snowtrace.io/api` ;
67
67
case "fuji" : return `https://api-testnet.snowtrace.io/api` ;
68
68
case "gnosis" : return `https://api.gnosisscan.io/api` ;
69
+ case "fantom" : return `https://api.ftmscan.com/api` ;
70
+ case "fantom-testnet" : return `https://api-testnet.ftmscan.com/api` ;
69
71
default : return `https://api-${ network } .etherscan.io/api`
70
72
}
71
73
}
You can’t perform that action at this time.
0 commit comments