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

LockerV3: add batch vesting escrow lock creation #25

Closed
wants to merge 36 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8a16c92
v3: batch vesting escrow
docongminh Jan 9, 2025
f883eab
merkle tree
docongminh Jan 9, 2025
0bcec0e
unittest for batch vesting escrow
docongminh Jan 9, 2025
55074e7
add close escrow vesting
docongminh Jan 9, 2025
a71b6e1
assertion validate claim status state
docongminh Jan 9, 2025
bd5374c
use safe math
docongminh Jan 10, 2025
dea637f
add cancel_mode
docongminh Jan 10, 2025
d4dc50b
update build node
docongminh Jan 10, 2025
01eede9
payer create claim status
docongminh Jan 10, 2025
3edc422
add creator cancel escrow
docongminh Jan 10, 2025
61c4ac3
update node for root
docongminh Jan 10, 2025
4cd0f8f
update node for root
docongminh Jan 10, 2025
d60910f
update unit test
docongminh Jan 10, 2025
57469a1
fix be_bytes()
docongminh Jan 10, 2025
53a51ca
add vestingStartTime to node
docongminh Jan 10, 2025
877358c
remove init if needed
docongminh Jan 10, 2025
752672f
remove init if needed
docongminh Jan 10, 2025
28fe042
add validate node data
docongminh Jan 10, 2025
e4a0eac
clean code
docongminh Jan 10, 2025
7001eba
removed mutable for unnecessary
docongminh Jan 11, 2025
1b64a24
uncheck token account
docongminh Jan 11, 2025
3a7e075
immutable signer
docongminh Jan 11, 2025
c11ab0b
add more testcase
docongminh Jan 11, 2025
8d123f3
clean coding convention
docongminh Jan 11, 2025
bdbafeb
add buffer for claim_status
docongminh Jan 11, 2025
d018d7f
add padding fields
docongminh Jan 11, 2025
27fddb4
set recipient email is empty
docongminh Jan 11, 2025
d32641b
add close claim status instruction
docongminh Jan 11, 2025
4969c1b
rename variable
docongminh Jan 11, 2025
ef05e8d
validate node data
docongminh Jan 12, 2025
96b4ee8
add rent_receiver
docongminh Jan 13, 2025
dc31f66
add comment
docongminh Jan 13, 2025
dda602f
remove close escrow instruction
docongminh Jan 14, 2025
627b234
update logic fill claim status data
docongminh Jan 19, 2025
1e7d01e
use recipient endpoint for v1 v2
docongminh Jan 19, 2025
a11684e
remove create metadata v3
docongminh Jan 20, 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
Prev Previous commit
Next Next commit
remove init if needed
docongminh committed Jan 10, 2025
commit 877358cbab7febda387b66f10a67bb7188e3d853
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ incremental = false
codegen-units = 1

[workspace.dependencies]
anchor-lang = { version = "0.30.1", features = ["init-if-needed"]}
anchor-lang = "0.30.1"
anchor-spl = "0.30.1"
anchor-client = "0.30.1"
clap = { version = "3.2.25", features = ["derive", "env"] }