diff --git a/cumulus/parachains/common/src/snowbridge_config.rs b/cumulus/parachains/common/src/snowbridge_config.rs index ce812846bc195..b04f9869e2398 100644 --- a/cumulus/parachains/common/src/snowbridge_config.rs +++ b/cumulus/parachains/common/src/snowbridge_config.rs @@ -2,6 +2,7 @@ frame_support::parameter_types! { /// User fee for ERC20 token transfer back to Ethereum. /// (initially was calculated by test `OutboundQueue::calculate_fees` - ETH/ROC 1/400 and fee_per_gas 15 GWEI = 22698000000 + *25%) /// Needs to be more than fee calculated from DefaultFeeConfig FeeConfigRecord in snowbridge:parachain/pallets/outbound-queue/src/lib.rs - pub const BridgeHubEthereumBaseFeeInDot: u128 = 27_508_725_000; + pub const BridgeHubEthereumBaseFeeInDOT: u128 = 27_508_725_000; + pub const BridgeHubEthereumBaseFeeInKSM: u128 = 2_750_872_500_000; pub const BridgeHubEthereumBaseFeeInRocs: u128 = 2_750_872_500_000; }