Skip to content

Commit

Permalink
chore: remove op mainnet for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparkallas committed Jul 2, 2024
1 parent f0774fa commit 185a3d1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aw-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('package.json'));
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fs-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('package.json'));
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vs-subgraph-ci-goldsky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('package.json'));
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
return packageJson.version;
- name: Goldsky Login
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}}
Expand Down
4 changes: 1 addition & 3 deletions subgraphs/vesting-scheduler/config/optimism-mainnet.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"network": "optimism",
"vestingSchedulerAddress": "0x65377d4dfE9c01639A41952B5083D58964782892",
"vestingSchedulerStartBlock": 67820482,
"vestingSchedulerAddress_v2": "0x27444c0235a4D921F3106475faeba0B5e7ABDD7a",
"vestingSchedulerStartBlock_v2": 122154354
"vestingSchedulerStartBlock": 67820482
}
2 changes: 1 addition & 1 deletion subgraphs/vesting-scheduler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"license": "MIT",
"author": "Superfluid",
"scripts": {
"build": "graph build ./optimism-mainnet.subgraph.yaml",
"build": "graph build ./optimism-sepolia.subgraph.yaml",
"deploy:test": "goldsky subgraph deploy vesting-v1-optimism-mainnet/1.1.8 --path ./build",
"dev": "nodemon -e ts -x yarn test",
"gen": "npm-run-all -s gen:yaml gen:types",
Expand Down

0 comments on commit 185a3d1

Please sign in to comment.