-
Notifications
You must be signed in to change notification settings - Fork 7
feat: M010 reputation-signal + M012 dynamic-supply CosmWasm contracts #79
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
02d2fed
feat: M012 CosmWasm dynamic-supply contract with unit tests
brawlaphant 58cf48c
fix: remove build artifacts, add target/ and Cargo.lock to gitignore
brawlaphant e36a4d5
feat: M010 CosmWasm reputation-signal contract with unit tests
brawlaphant 0c0aac9
Merge remote-tracking branch 'brawlaphant/pr/m010-cosmwasm-contract' …
glandua 6aaa9f9
Merge remote-tracking branch 'brawlaphant/pr/m012-cosmwasm-contract' …
glandua 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
This file contains hidden or 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,2 @@ | ||
| [alias] | ||
| wasm = "build --release --lib --target wasm32-unknown-unknown" |
This file contains hidden or 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,24 @@ | ||
| [package] | ||
| name = "dynamic-supply" | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
| description = "M012 Fixed Cap Dynamic Supply CosmWasm contract for Regen Network" | ||
| license = "Apache-2.0" | ||
|
|
||
| [lib] | ||
| crate-type = ["cdylib", "rlib"] | ||
|
|
||
| [features] | ||
| # Use library feature to disable entry points when imported as dependency | ||
| library = [] | ||
|
|
||
| [dependencies] | ||
| cosmwasm-std = "2.2" | ||
| cosmwasm-schema = "2.2" | ||
| cw-storage-plus = "2.0" | ||
| schemars = "0.8" | ||
| serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
| thiserror = "2" | ||
|
|
||
| [dev-dependencies] | ||
| cosmwasm-std = { version = "2.2", features = ["staking"] } | ||
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 versions specified for several dependencies are incorrect and will likely cause the build to fail:
cosmwasm-std&cosmwasm-schema: Version2.2does not exist on crates.io. The latest stable version is2.0.4.cw-storage-plus: Version2.0does not exist. The latest is1.2.0.thiserror: Version2is invalid. It should be1.0.Additionally, the
cw2dependency is missing. It's required for setting the contract version withcw2::set_contract_version, which is crucial for managing upgrades.