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

Add basic spl and loader helpers #73

Merged
merged 13 commits into from
Aug 20, 2024
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
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ jobs:
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH

- name: Build test programs
run: cd test_programs && cargo build-sbf
run: cd svm/test_programs && cargo build-sbf

- name: Run tests
run: cargo test
env:
RUST_BACKTRACE: 1

- name: Run SPL tests
run: cargo test --features token-2022
Aursen marked this conversation as resolved.
Show resolved Hide resolved
env:
RUST_BACKTRACE: 1

lints:
name: Lints
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Added

- Add helpers for token ([#73](https://github.com/LiteSVM/litesvm/pull/73)).
- Add helpers for bpf_loader ([#73](https://github.com/LiteSVM/litesvm/pull/73)).
- Add stake, config and vote programs ([#57](https://github.com/LiteSVM/litesvm/pull/57)).
- Implement blockhash and durable nonce checks ([#61](https://github.com/LiteSVM/litesvm/pull/61)).
- Add `error.rs` and new `LiteSVMError` type ([#62](https://github.com/LiteSVM/litesvm/pull/62)).
Expand Down
Loading