Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Enabled XCM instructions `ExchangeAsset` and `AliasOrigin` on the system parachains ([polkadot-fellows/runtimes/pull/700](https://github.com/polkadot-fellows/runtimes/pull/700))
- Correct weights for pallet xcm's `transfer_asset` extrinsic for multiple chains ([polkadot-fellows/runtimes#673](https://github.com/polkadot-fellows/runtimes/pull/673))
- Snowbridge: Update transfer token gas and fee ([polkadot-fellows/runtimes#721](https://github.com/polkadot-fellows/runtimes/pull/721))

## [1.5.0] 22.04.2025

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,14 +200,14 @@ serde = { version = "1.0.196" }
serde_json = { version = "1.0.113", default-features = false }
smallvec = { version = "1.13.1" }
snowbridge-beacon-primitives = { version = "0.12.1", default-features = false }
snowbridge-core = { version = "0.12.1", default-features = false }
snowbridge-core = { version = "0.12.2", default-features = false }
snowbridge-outbound-queue-runtime-api = { version = "0.12.0", default-features = false }
snowbridge-pallet-ethereum-client = { version = "0.12.1", default-features = false }
snowbridge-pallet-inbound-queue = { version = "0.12.1", default-features = false }
snowbridge-pallet-inbound-queue-fixtures = { version = "0.20.1" }
snowbridge-pallet-ethereum-client-fixtures = { version = "0.20.0" }
snowbridge-pallet-outbound-queue = { version = "0.12.1", default-features = false }
snowbridge-pallet-system = { version = "0.12.1", default-features = false }
snowbridge-pallet-system = { version = "0.12.2", default-features = false }
snowbridge-router-primitives = { version = "0.18.1", default-features = false }
snowbridge-runtime-common = { version = "0.12.0", default-features = false }
snowbridge-runtime-test-common = { version = "0.14.0" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ pub type Migrations = (
Runtime,
bridge_to_kusama_config::XcmOverBridgeHubKusamaInstance,
>,
snowbridge_pallet_system::migration::FeePerGasMigrationV0ToV1<Runtime>,
// permanent
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ use xcm::latest::prelude::*;
use xcm_builder::HandleFee;
use xcm_executor::traits::{FeeManager, FeeReason};
parameter_types! {
pub const DefaultBridgeHubEthereumBaseFee: Balance = 2_750_872_500_000;
pub const DefaultBridgeHubEthereumBaseFee: Balance = 3_833_568_200_000;
}
type RuntimeHelper<Runtime, AllPalletsWithoutSystem = ()> =
parachains_runtimes_test_utils::RuntimeHelper<Runtime, AllPalletsWithoutSystem>;
Expand Down
Loading