-
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
40b7107
commit 143a63c
Showing
3 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
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,11 +1,25 @@ | ||
# LOCKER | ||
# JUPITER LOCKER | ||
|
||
Allow user to lock token based on a vesting plan | ||
Open source program to allow user to lock token based on a vesting plan | ||
|
||
### Tests | ||
|
||
#### Program | ||
## For developer | ||
|
||
To run all the test, please run the following commands: | ||
``` | ||
anchor test -- --features localnet | ||
``` | ||
``` | ||
|
||
Build programs: | ||
``` | ||
anchor build | ||
``` | ||
|
||
|
||
## Audit | ||
Jupiter Locker has been audited by Sec3 (prev.Soteria). View the audit report [here](./audits/jup-lock_report_final.pdf). | ||
|
||
|
||
## License | ||
Anchor is licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0). | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Jupiter Locker by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions. |
Binary file not shown.
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "locker" | |
version = "0.2.1" | ||
description = "Created with Anchor" | ||
edition = "2021" | ||
author = "[email protected]" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "lib"] | ||
|