-
Notifications
You must be signed in to change notification settings - Fork 69
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(cosmwasm): cosmwasm contracts #1436
Merged
Merged
Conversation
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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
aeryz
force-pushed
the
aeryz/cosmwasm-contracts
branch
from
August 10, 2022 09:01
7614ee6
to
84e17a2
Compare
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
KaiserKarel
reviewed
Aug 10, 2022
Signed-off-by: aeryz <[email protected]>
Signed-off-by: aeryz <[email protected]>
Signed-off-by: aeryz <[email protected]>
Signed-off-by: aeryz <[email protected]>
Signed-off-by: aeryz <[email protected]>
aeryz
force-pushed
the
aeryz/cosmwasm-contracts
branch
from
September 26, 2022 16:26
c3a5a5d
to
3fa6a1a
Compare
hussein-aitlahcen
approved these changes
Sep 26, 2022
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.
🚀
dzmitry-lahoda
approved these changes
Sep 26, 2022
aeryz
force-pushed
the
aeryz/cosmwasm-contracts
branch
from
September 28, 2022 01:35
3fa6a1a
to
d76c690
Compare
dzmitry-lahoda
approved these changes
Sep 28, 2022
Signed-off-by: aeryz <[email protected]>
aeryz
force-pushed
the
aeryz/cosmwasm-contracts
branch
from
September 28, 2022 13:29
d76c690
to
97a5fc3
Compare
benluelo
approved these changes
Sep 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add interpreter contract which is the actual xcvm interpreter
instance.
Add asset registry which stores the mapping of cw20 token instances.
Interpreters will query this contract to get the token instance, then
call that cw20 token instance by themselves(not through the asset
registry).
Add
cosmwasm-contracts
profile which contains the necessary optionsfor cosmwasm production builds. Cosmwasm contracts should be built by
using this profile.
Patch
serde_json_wasm
. Originalserde_json_wasm
does not support(de)serialization of
BTreeMap
. This producesUnreachable
instruction which makes the contract crash. However our version does
support this.
EDIT
CosmosMsg
instead ofWasmMsg::Execute
in theCall
instruction. This way, we don't restrict users to just be able to execute contracts but do anything that cosmwasm supports. So this will be added to this PR as well.CosmosMsg
inCall
instructionSigned-off-by: aeryz [email protected]
Issue
https://app.clickup.com/t/2mezh62
Description
See commit message.
Checklist
book/
to reflect changes made by this PR (if applicable)