Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to work with RC3 contracts #4

Merged
merged 6 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,15 @@ Below are some examples of queries that can be made to the Ajna Subgraph.
txCount
}
}
```
```

## Maintenance

To update for new release candidates:
1. Copy ABIs from an `sdk` checkout from the appropriate branch.
```
rsync -avz --existing ../sdk/packages/sdk-api/src/abis abis
```
2. Update addresses in `constants.ts` and `subgraph.yaml`.
3. Run `npm run codegen` to find and resolve errors in code generation.
4. Review contract changes, adjusting subgraph and schema accordingly. Update handlers and unit tests. Run `npm run test` to find and resolve issues.
Loading