Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests: Add AH + first tests
  • Loading branch information
tsenovilla committed Oct 13, 2025
commit 9d8864e0da095487c0afe650f5792aa3bbefc679
210 changes: 207 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ polkadot-node-metrics = { git = "https://github.com/paritytech//polkadot", branc
polkadot-node-subsystem-types = { git = "https://github.com/paritytech//polkadot", branch = "release-v0.9.42" }

[patch."https://github.com/paritytech/cumulus"]
polkadot-asset-hub-runtime = { git = "https://github.com/paritytech//cumulus", branch = "polkadot-v0.9.42", package = "statemint-runtime"}
cumulus-client-cli = { git = "https://github.com/paritytech//cumulus", branch = "polkadot-v0.9.42" }
cumulus-client-consensus-aura = { git = "https://github.com/paritytech//cumulus", branch = "polkadot-v0.9.42" }
cumulus-client-consensus-common = { git = "https://github.com/paritytech//cumulus", branch = "polkadot-v0.9.42" }
Expand Down
6 changes: 2 additions & 4 deletions parachain/runtime/interlay/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ use frame_support::{
traits::{Everything, Get, Nothing},
};
use orml_asset_registry::{AssetRegistryTrader, FixedRateAssetRegistryTrader};
use orml_traits::{
parameter_type_with_key, FixedConversionRateProvider, MultiCurrency,
};
use orml_xtokens::AbsoluteReserveProviderMigrationPhase;
use orml_traits::{parameter_type_with_key, FixedConversionRateProvider, MultiCurrency};
use orml_xcm_support::{DepositToAlternative, IsNativeConcrete, MultiCurrencyAdapter, MultiNativeAsset};
use orml_xtokens::AbsoluteReserveProviderMigrationPhase;
use pallet_xcm::XcmPassthrough;
use polkadot_parachain::primitives::Sibling;
use runtime_common::Transactless;
Expand Down
1 change: 1 addition & 0 deletions parachain/runtime/runtime-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch =
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
polkadot-asset-hub-runtime = { git = "https://github.com/paritytech//cumulus", branch = "polkadot-v0.9.42", package = "statemint-runtime"}
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.31" }
Expand Down
Loading
Loading