Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0831201
cherrypicked hasher update: support sha in hasher and lighthasher macro
SwenSchaeferjohann Jul 29, 2025
2a353c8
refactor: cpi context account, system program account checks, account…
ananas-block Aug 31, 2025
95e07ed
fix: LightAccount close
ananas-block Sep 27, 2025
1adcc94
add to_in_account()
ananas-block Sep 27, 2025
2db39dc
add to_output_compressed_account_with_packed_context
ananas-block Sep 27, 2025
875df76
fix CpiAccountsV2 lifetime
ananas-block Sep 27, 2025
337e230
fix: add_system_accounts_v2
ananas-block Sep 27, 2025
f720e37
fix: cpi context account has data
ananas-block Sep 28, 2025
a69167c
test: v2 sdk address derivation
ananas-block Sep 28, 2025
0172980
fix: test
ananas-block Sep 29, 2025
f169550
regenerate cli accounts
ananas-block Sep 29, 2025
70a725b
feat: LightAccount init if needed
ananas-block Sep 29, 2025
436d652
fix: sdk-anchor-test
ananas-block Sep 29, 2025
88a6bba
feat: stateless js add v2 address trees, fix: empty data parsing
ananas-block Sep 29, 2025
d7657fd
fix install script
ananas-block Sep 30, 2025
44c70f1
refactor: empty account, update photon commit
ananas-block Sep 30, 2025
45264d9
refactored v1 and v2 into separate directories in light-sdk and light…
ananas-block Sep 30, 2025
9901171
refactor: pinocchio sdk v2
ananas-block Sep 30, 2025
6d2a884
fix: tests
ananas-block Oct 1, 2025
e492e4a
stash added pack accounts docs
ananas-block Oct 1, 2025
604bb6b
feat: sdk add cpi context feature
ananas-block Oct 1, 2025
ba9b240
update light-sdk docs
ananas-block Oct 1, 2025
0b63626
light-sdk docs
ananas-block Oct 1, 2025
472b55c
updated light-program-test and light-client docs
ananas-block Oct 1, 2025
a8f1795
fix test
ananas-block Oct 1, 2025
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
40 changes: 0 additions & 40 deletions .cargo/config.toml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
aligned-sized light-hasher light-compressed-account light-account-checks \
light-verifier light-merkle-tree-metadata light-zero-copy light-hash-set
test_cmd: |
cargo test -p light-macros
cargo test -p aligned-sized
cargo test -p light-hasher --all-features
cargo test -p light-compressed-account --all-features
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,16 @@ jobs:
matrix:
include:
- program: sdk-test-program
sub-tests: '["cargo-test-sbf -p sdk-native-test"]'
sub-tests: '["cargo-test-sbf -p sdk-native-test", "cargo-test-sbf -p sdk-v1-native-test"]'
- program: sdk-anchor-test-program
sub-tests: '["cargo-test-sbf -p sdk-anchor-test", "cargo-test-sbf -p sdk-pinocchio-test"]'
sub-tests: '["cargo-test-sbf -p sdk-anchor-test", "cargo-test-sbf -p sdk-pinocchio-v1-test", "cargo-test-sbf -p sdk-pinocchio-v2-test"]'
- program: sdk-libs
packages: light-macros light-sdk light-program-test light-client light-batched-merkle-tree
packages: light-sdk-macros light-sdk light-program-test light-client light-batched-merkle-tree
test_cmd: |
cargo test -p light-macros
cargo test -p light-sdk-macros
cargo test -p light-sdk-macros --all-features
cargo test -p light-sdk
cargo test -p light-sdk --all-features
cargo test -p light-program-test
cargo test -p light-client
cargo test -p client-test
Expand Down
Loading
Loading