-
Notifications
You must be signed in to change notification settings - Fork 9
✅ Add XCM Transact emulator tests #480
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
Conversation
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
This was referenced Apr 30, 2025
Merged
2a2cdfc
to
99082c4
Compare
575b593
to
8ee104c
Compare
96fb48b
to
ec82039
Compare
Merged
8ee104c
to
296dcb6
Compare
ec82039
to
6d5cec7
Compare
296dcb6
to
91aa6fe
Compare
6d5cec7
to
53c798e
Compare
Graphite Automations"Auto-assign PRs to author" took an action on this PR • (05/01/25)1 assignee was added to this PR based on Juan Ignacio Rios's automation. |
91aa6fe
to
296dcb6
Compare
53c798e
to
3e6e119
Compare
lrazovic
approved these changes
May 2, 2025
3e6e119
to
25b6f1e
Compare
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 several changes to the integration tests and runtime configurations, primarily focused on replacing
rococo-runtime
withwestend-runtime
and adding support for theAssetHubWestend
parachain. The changes include updates to dependencies, constants, runtime configurations, and the addition of new test cases for cross-chain transactions.Key Changes:
Transition from
rococo-runtime
towestend-runtime
:Cargo.toml
files to replacerococo-runtime
andrococo-runtime-constants
withwestend-runtime
andwestend-runtime-constants
(Cargo.toml
,integration-tests/Cargo.toml
). [1] [2] [3] [4] [5]integration-tests/src/constants.rs
to usewestend-runtime
equivalents. [1] [2] [3]Addition of
AssetHubWestend
support:asset_hub
inintegration-tests/src/constants.rs
to define the genesis configuration and constants forAssetHubWestend
.AssetHubWestend
parachain inintegration-tests/src/lib.rs
, including its runtime, core, and pallets. Helper macros for accounts, assets, and XCM were also implemented.AssetHubWestend
to the test network (PolkadotNet
) and updated shortcuts for runtime types to includeAssetHubWestend
. [1] [2]New XCM transaction test:
transact.rs
to validate Cross-Consensus Messaging (XCM) betweenAssetHubWestend
andPolimec
. The test ensures that a Polimec Remark call can be successfully sent fromAssetHubWestend
toPolimec
.Miscellaneous updates:
integration-tests/src/lib.rs
to include the newasset_hub
module and helper imports.transact
test module inintegration-tests/src/tests/mod.rs
.These changes collectively enhance the integration test framework by introducing support for the
westend-runtime
and extending the test coverage to include theAssetHubWestend
parachain.