-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat(contracts): create airdrop vesting contract with manager list #124
Merged
Merged
Changes from 7 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
fc5da15
feat: create airdrop vesting contract
matthiasmatt a69712e
fix: update cookbook
matthiasmatt 182af7d
fix: remove airdrop contract
matthiasmatt 6f2eb7a
feat: add more test coverage
matthiasmatt 5e2cff4
fix: update schema
matthiasmatt 182cea9
feat: add withdraw message
matthiasmatt 5a41b55
fix: fix cookbook
matthiasmatt c869043
Merge branch 'mat/airdrop-vesting' of github.com:NibiruChain/cw-nibir…
jgimeno 90987c1
fix: make check on instantiation earlier
matthiasmatt ec8fab9
add comment for some method
jgimeno 248b47f
Merge branch 'mat/airdrop-vesting' of github.com:NibiruChain/cw-nibir…
jgimeno d84972c
add another comment for validate time
jgimeno f641efb
add more comments
jgimeno c3371ae
add refactor
jgimeno 63b13a1
clarify vesting contract code
jgimeno 502efdb
update README for airdrop-token-vesting
jgimeno 1c0668a
fix: remove cw20
matthiasmatt e0474f2
feat: remove master_address and denom
matthiasmatt c1846cc
fix: fix readme
matthiasmatt a770c8f
update readme
jgimeno b5fb8a6
remove clone
jgimeno e7a8f52
chore(deps): Cargo.lock update
Unique-Divine f79a77a
docs(airdrop-token-vesting): add testing script to README
Unique-Divine 5781f19
feat: undo changes to query interface
matthiasmatt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
3 changes: 3 additions & 0 deletions
3
contracts/airdrop/.cargo/config → ...racts/airdrop-token-vesting/.cargo/config
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,4 +1,7 @@ | ||
[alias] | ||
wasm = "build --release --target wasm32-unknown-unknown" | ||
wasm-debug = "build --target wasm32-unknown-unknown" | ||
unit-test = "test --lib" | ||
integration-test = "test --test integration" | ||
schema = "run --example schema" | ||
|
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,12 @@ | ||
# Build results | ||
/target | ||
|
||
# Text file backups | ||
**/*.rs.bk | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# IDEs | ||
*.iml | ||
.idea |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The instantiation message for the core token vesting contract is mentioned as not existing, which might be intentional to indicate that no specific parameters are required for instantiation. However, it's crucial to ensure that this is clearly communicated to avoid confusion. If instantiation does not require parameters, consider adding a brief explanation to clarify this to users.
{ + "Note": "This contract does not require any parameters for instantiation." }
Committable suggestion