Skip to content

Commit

Permalink
Merge pull request #6 from superfluid-finance/vesting-scheduler-1_2
Browse files Browse the repository at this point in the history
Vesting Scheduler v2
  • Loading branch information
kasparkallas authored Jul 2, 2024
2 parents eb987dc + 185a3d1 commit 4433c14
Show file tree
Hide file tree
Showing 33 changed files with 14,011 additions and 6,855 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Ubuntu",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-contrib/features/pnpm:2": {}
Expand Down
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
52 changes: 31 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions subgraphs/flow-scheduler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"author": "Superfluid",
"scripts": {
"build": "graph build ./optimism-sepolia.subgraph.yaml",
"deploy:test": "goldsky subgraph deploy scheduling-v1-opsepolia-test/1.1.0 --path ./build",
"deploy:test": "goldsky subgraph deploy scheduling-v1-optimism-sepolia/1.1.0 --path ./build",
"dev": "nodemon -e ts -x yarn test",
"gen": "npm-run-all -s gen:yaml gen:types",
"gen:types": "graph codegen ./eth-mainnet.subgraph.yaml --output-dir src/types/",
"gen:types": "graph codegen ./optimism-sepolia.subgraph.yaml --output-dir src/types/",
"gen:yaml": "ts-node ./scripts/generate-yamls.ts",
"test": "graph test"
},
Expand Down
Loading

0 comments on commit 4433c14

Please sign in to comment.