-
Notifications
You must be signed in to change notification settings - Fork 41
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
Aptos network support #1562
Merged
Aptos network support #1562
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
smickovskid
approved these changes
Jan 14, 2025
Quality Gate passedIssues Measures |
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.
This pull request introduces support for the Aptos blockchain network into the framework, along with several other related changes. The key updates include the addition of new configuration files, updates to the documentation, and modifications to the codebase to accommodate the new blockchain type.
Support for Aptos Blockchain:
smoke_aptos.toml
to define the Aptos blockchain network settings.smoke_aptos_test.go
to implement smoke tests for the Aptos blockchain.framework/components/blockchain/blockchain.go
file to include Aptos as a supported blockchain type and implemented the necessary logic to initialize and configure the Aptos network. [1] [2] [3]Documentation Updates:
SUMMARY.md
file to include a new section for Aptos under the Blockchains category.aptos.md
to provide detailed information about the Aptos blockchain client, including configuration and usage examples.Codebase Enhancements:
ExecContainer
inframework/docker.go
to execute commands inside a running container, which is used in the Aptos smoke tests.go.mod
files across various directories to upgrade dependencies, includingtestcontainers-go
andgorilla/mux
. [1] [2] [3] [4] [5] [6] [7] [8] [9]Miscellaneous:
v0.4.3.md
to document the addition of Aptos network support.smoke_solana_test.go
file for consistency.