-
Notifications
You must be signed in to change notification settings - Fork 166
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: setup cosmos examples #163
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
chore: update aptos ports chore: update dep version chore: bump version chore: bump timeout to 10m chore: add skipAptos and skipCosmos flags chore: test start the server chore: add NODE_ENV=ci chore: update local-dev cosmos version chore: update alpha 14 debug: gh actions #1 debug: github actions #2 debug: log error in startAll chore: update axelar-local-dev-cosmos version chore: bump axelar-local-dev-cosmos version chore: check if folder exists chore: run test instead of run start chore: add send_receive.wasm for testing chore: update drop connections chore: bump to 23 chore: add back examples chore: revert aptos port chore: update env example
cac7efc
to
426be7b
Compare
753dced
to
0a5bcf3
Compare
64bff44
to
52c17fb
Compare
chore: add checkout step for aptos chore: test chore: increase sleep time chore: clean up
4a38135
to
6d83761
Compare
benjamin852
approved these changes
Dec 15, 2023
Olanetsoft
approved these changes
Dec 15, 2023
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 local examples for Wasm contract
This pull request adds examples for using the
CallContract
function between theWasm
andEthereum
chains, leveraging our newly supported local environment in Cosmos chains. Check out axelar-local-dev-cosmos for more details on this support.How to Run the Example
Follow the simple guide provided here to try out the example.
GitHub Actions Refactoring
This PR also includes a significant refactor of our GitHub Actions for tests. We now have three distinct setup methods for the environments for
Aptos
,EVM
, andCosmos
. Therefore, we've divided our tests into three separate jobs. This change allows us to run tests for each setup in parallel, reducing conflicts and improving efficiency.Key Benefits
Streamlined examples for understanding
Wasm
toEthereum
chain interactions.Optimized testing workflow in GitHub Actions, enhancing our CI/CD process.
Reference
See the original PR for axelar-local-dev-cosmos here.