-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c41d62
commit 4a7982f
Showing
45 changed files
with
1,792 additions
and
108 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "locker" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
description = "Created with Anchor" | ||
edition = "2021" | ||
authors = ["andrew <[email protected]>"] | ||
|
@@ -20,13 +20,14 @@ staging = [] | |
idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"] | ||
|
||
[dependencies] | ||
anchor-lang = { workspace = true, features = ["event-cpi"] } | ||
anchor-lang = { workspace = true, features = ["event-cpi", "init-if-needed"] } | ||
anchor-spl = { workspace = true, features = ["memo"] } | ||
spl-transfer-hook-interface = "0.5.0" | ||
solana-program = {workspace = true} | ||
bytemuck = { version = "1.13.1", features = ["derive", "min_const_generics"] } | ||
static_assertions = "1.1.0" | ||
num_enum = "0.7.1" | ||
merkle-verify = { path = "../../verify" } | ||
|
||
[dev-dependencies] | ||
proptest = "1.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
21 changes: 21 additions & 0 deletions
21
programs/locker/src/instructions/escrow_instructions/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
pub mod claim; | ||
pub use claim::*; | ||
|
||
pub mod create_vesting_escrow; | ||
pub use create_vesting_escrow::*; | ||
|
||
pub use claim2::*; | ||
pub use create_vesting_escrow2::*; | ||
|
||
pub mod claim2; | ||
pub mod create_vesting_escrow2; | ||
|
||
pub mod cancel_vesting_escrow; | ||
pub use cancel_vesting_escrow::*; | ||
|
||
pub use create_vesting_escrow_metadata::*; | ||
pub use update_vesting_escrow_recipient::*; | ||
pub mod close_vesting_escrow; | ||
pub mod create_vesting_escrow_metadata; | ||
pub mod update_vesting_escrow_recipient; | ||
pub use close_vesting_escrow::*; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
pub use claim::*; | ||
pub use create_vesting_escrow::*; | ||
pub use create_vesting_escrow_metadata::*; | ||
pub use update_vesting_escrow_recipient::*; | ||
pub mod claim; | ||
pub mod create_vesting_escrow; | ||
pub mod create_vesting_escrow_metadata; | ||
pub mod update_vesting_escrow_recipient; | ||
pub mod v2; | ||
pub use v2::*; | ||
pub mod close_vesting_escrow; | ||
pub use close_vesting_escrow::*; | ||
pub mod escrow_instructions; | ||
pub use escrow_instructions::*; | ||
pub mod root_escrow_instructions; | ||
pub use root_escrow_instructions::*; |
Oops, something went wrong.