-
Notifications
You must be signed in to change notification settings - Fork 738
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!: integrate cosmwasm #3051
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
44a6253
integrate wasmd into gaia
Reecepbcups 01cdf43
lint
Reecepbcups f4ae1bc
upload contract script example
Reecepbcups 9c0fc2b
add to upgrade handler
Reecepbcups 3419477
lint
Reecepbcups 2a34e25
rm: windows & arm64
Reecepbcups 94b5eda
docker libwasmvm_muslc wasmvm
Reecepbcups a21f243
actually set wasmd params in upgrade
Reecepbcups 23cf3d3
add sleeps
Reecepbcups d89e4f2
Dockerfile use alpine3.18
Reecepbcups e905805
arm64, WASMVM_VERSION, LINK_STATICALLY, AllCapabilities()
Reecepbcups 0f5ebcd
security: sha256sum wasmvm libwasmvm
Reecepbcups 99d6980
Merge remote-tracking branch 'gaia-main/main' into wasmd-integration
MSalopek f313ae5
appease linter
MSalopek 677de89
tests: use CGO, use correct libwasm; add CGO to runner img
MSalopek ffc9ba9
tests: enable CGO in upgrade tests
MSalopek 837357f
tests: bump hermes version
MSalopek d72962e
tests: print output for upgrate test
MSalopek 2c79728
tests: print output for upgrate test
MSalopek 8fe0707
attempt building in upgrade container
MSalopek 9c670aa
attempt building in upgrade container
MSalopek 2a3d1b9
tests: attempt building in upgrade container
MSalopek d7fe6e9
tests: correctly download libwasmvm DLLs
MSalopek c5711da
chore: cleanup workflow file
MSalopek b90e4ac
Merge branch 'main' into wasmd-integration
MSalopek 7e86862
tests: increase hermes gas multiplier
MSalopek 56c28cd
wasm: add wasmstack to ibc router
MSalopek d29662b
e2e: update ibc failed multihop tests
MSalopek b22dcd3
ante remove unused WasmKeeper
Reecepbcups 4cceabf
Merge branch 'main' into wasmd-integration
MSalopek 0110c9c
add burner macc perm to wasm
MSalopek a44ad00
Merge branch 'main' into wasmd-integration
MSalopek 51e7603
lint
Reecepbcups 1bf61f8
tests: reduce multipliers for hermes
MSalopek 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 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
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
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
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.
On Windows we can still build a client binary (through some build flags). However, the contract execution on Windows is not supported.
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.
I'm not sure if goreleaser lets you specify the
GOOS=windows GOARCH=amd64 go build $(BUILD_FLAGS) -o build/gaiad.exe ./cmd/gaiad
for just 1 type of arch. Will have to look more intoThere 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.
I can take a look at this but I think you're right about the env vars.