Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
983e31b
feat: add crates compressible ctoken types
ananas-block Oct 11, 2025
a230ec8
add program
ananas-block Oct 11, 2025
0a1fb7b
add compressed-token-sdk and types
ananas-block Oct 11, 2025
16aa24c
add registry extensions
ananas-block Oct 11, 2025
9c26246
add token client
ananas-block Oct 11, 2025
b42203a
stash
ananas-block Oct 11, 2025
e5e0ec4
stash test utils
ananas-block Oct 11, 2025
af624a1
feat: program-test add pre context
ananas-block Oct 11, 2025
e691f97
fix compilation
ananas-block Oct 11, 2025
36ef02a
add token sdk test
ananas-block Oct 12, 2025
05d0a8f
fixing tests wip
ananas-block Oct 12, 2025
8004779
rename spl mint -> mint
ananas-block Oct 12, 2025
e213945
fix indexer and config setup
ananas-block Oct 12, 2025
b9404ca
make compressible in program test independent from light-registry
ananas-block Oct 12, 2025
f43323e
chore: rename test.rs to v1
ananas-block Oct 12, 2025
43da04b
fix close ata test
ananas-block Oct 12, 2025
459df9b
fix account test
ananas-block Oct 12, 2025
c5085d5
add transfer2 tests functional works
ananas-block Oct 12, 2025
956b34e
limited random transfer2 test works
ananas-block Oct 12, 2025
7b00461
refactor: system program relax output tree ordering
ananas-block Oct 12, 2025
0afa212
fix token sdk tests wip
ananas-block Oct 12, 2025
f752d6f
fix sdk token tests
ananas-block Oct 13, 2025
4975fdf
Revert "refactor: system program relax output tree ordering"
ananas-block Oct 13, 2025
3dce648
cleanup
ananas-block Oct 13, 2025
6d6d8f7
lint
ananas-block Oct 13, 2025
d949af2
revert cli change
ananas-block Oct 13, 2025
bf16e9d
fix: registry and system cpi tests
ananas-block Oct 13, 2025
18fb356
chore: add compressible ctoken account tests, fix compressed token tests
ananas-block Oct 13, 2025
0e91efd
chore: add compressible ctoken account tests, fix compressed token tests
ananas-block Oct 13, 2025
c9fc455
chore: add token crates to ci
ananas-block Oct 13, 2025
612d197
fix: token program tests
ananas-block Oct 13, 2025
ee7abb9
fix numbering
ananas-block Oct 13, 2025
57800c0
fix: withdrawal assert
ananas-block Oct 13, 2025
93fc933
fix: tests
ananas-block Oct 13, 2025
4f3badc
fix: light-client compilation
ananas-block Oct 13, 2025
b64c76e
refactor: compressible tests
ananas-block Oct 13, 2025
074d51e
add transfer2 functional delegate tests
ananas-block Oct 13, 2025
2097efa
add Token Pool Operations tests
ananas-block Oct 13, 2025
9dd6d8c
test: add compress and close functional tests
ananas-block Oct 13, 2025
4437e7d
completed functional tests
ananas-block Oct 14, 2025
a9b3c7b
add transfer2 failing tests
ananas-block Oct 14, 2025
f5063e6
add compress ctoken failing tests
ananas-block Oct 14, 2025
0a7a2e2
add spl compress failing tests
ananas-block Oct 14, 2025
278e4ea
test: add transfer2 failing tests
ananas-block Oct 14, 2025
d232dbc
stash
ananas-block Oct 14, 2025
7bfe848
refactor: compressible
ananas-block Oct 14, 2025
6883ff3
cleanup, fi: compressible
ananas-block Oct 15, 2025
b5f2a8d
fix: pinocchio path dep
ananas-block Oct 15, 2025
d4e4f54
fix tests
ananas-block Oct 15, 2025
a686292
fix tests
ananas-block Oct 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
121 changes: 0 additions & 121 deletions .github/workflows/light-system-programs-tests.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
cargo test -p light-hash-set --all-features
cargo test -p batched-merkle-tree-test -- --skip test_simulate_transactions --skip test_e2e
cargo test -p light-concurrent-merkle-tree
cargo test -p light-ctoken-types --features poseidon
cargo test -p light-compressible --all-features
- name: program-libs-slow
packages: light-bloom-filter light-indexed-merkle-tree batched-merkle-tree-test
test_cmd: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ jobs:
sub-tests: '["cargo-test-sbf -p sdk-native-test", "cargo-test-sbf -p sdk-v1-native-test", "cargo test-sbf -p client-test"]'
- program: sdk-anchor-test-program
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-token-test-program
sub-tests: '["cargo-test-sbf -p sdk-token-test"]'
- program: sdk-libs
packages: light-sdk-macros light-sdk light-program-test light-client
packages: light-sdk-macros light-sdk light-program-test light-client light-compressed-token-types light-compressed-token-sdk
test_cmd: |
cargo test -p light-sdk-macros
cargo test -p light-sdk-macros --all-features
Expand All @@ -61,6 +63,8 @@ jobs:
cargo test -p light-program-test
cargo test -p light-client
cargo test -p light-sparse-merkle-tree
cargo test -p light-compressed-token-types
cargo test -p light-compressed-token-sdk
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down
Loading
Loading