Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ updates:
interval: "weekly"
open-pull-requests-limit: 5
labels: ["dependencies", "typescript"]
# Pin Node typings to the major matching engines.node (20 LTS).
# Pin Node typings to the major matching engines.node (24 LTS).
# Bumping @types/node above the engines major causes typecheck to fail
# against APIs that don't exist on the runtime. When the engines major is
# raised, update this allow-list at the same time.
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,15 @@ jobs:
# phase). Drops total anchor-build job time from ~10 min to ~2 min.
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@main
# `--force` is required because Swatinem/rust-cache restores
# `~/.cargo/.crates2.json` (the binstall "is-installed" registry)
# but does NOT restore `~/.cargo/bin/`. Without `--force`, binstall
# finds the cached metadata, reports "already installed", and skips
# the actual binary install — leaving subsequent `anchor build`
# steps with `command not found`. See:
# https://github.com/Swatinem/rust-cache/issues/161
- name: Install Anchor CLI
run: cargo binstall --no-confirm --version ${ANCHOR_VERSION} anchor-cli
run: cargo binstall --no-confirm --force --version ${ANCHOR_VERSION} anchor-cli
# Capture anchor build's full output to a file and upload it as a
# workflow artifact when the job fails — needed because the actual
# error message is otherwise only visible via the GitHub Actions
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ anchor test # localnet integration tests

Required toolchain (pinned in `rust-toolchain.toml`, `Anchor.toml`, `package.json`):

- Solana CLI **2.0.x**
- Anchor **0.31.x**
- Rust **1.79+** stable
- Node **20 LTS**
- Solana CLI **3.0.10**
- Anchor **0.32.1**
- Rust **1.91.1** stable
- Node **24 LTS**
- pnpm **9**

## Workflow
Expand Down Expand Up @@ -103,7 +103,7 @@ Use [Conventional Commits](https://www.conventionalcommits.org/):
feat(grave-vault): add claim_lp_proceeds instruction
fix(grave-scanner): tighten epoch confirmation check
docs(charter): clarify 20% protocol-share ceiling
chore(ci): pin anchor 0.31.1
chore(ci): pin anchor 0.32.1
```

Scopes mirror the workspace tree: `grave-scanner`, `grave-vault`, `sdk`, `indexer`, `adapters`,
Expand Down
Loading