-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add bridging to AssetHubWestend #7831
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
bkontur
merged 16 commits into
paritytech:bko-permlanes-on-ahs
from
rosarp:bko-permlanes-on-ahs-add-bridging-ahw
Mar 13, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b8aec36
initial commit of bridging on AssetHubWestend
rosarp 9e88d51
few remaining renames & changes in Instances
rosarp f5bc74b
fmt fixes & ROC to WND for westend rococo_config
rosarp 9f5bdde
removed old benchmark def of ToRococo
rosarp 6dfd058
Update cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs
rosarp 15b082d
added macro call to AHR & AHW
rosarp 1104793
Update cumulus/parachains/runtimes/assets/asset-hub-westend/Cargo.toml
bkontur d5cc637
Merge branch 'bko-permlanes-on-ahs' into bko-permlanes-on-ahs-add-bri…
bkontur 8d1271b
Update cumulus/parachains/runtimes/assets/asset-hub-westend/src/weigh…
bkontur 082ff7e
adding tests bridge_to_rococo for AHW
rosarp 99198a6
Update cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tes…
rosarp e4016e2
fixing tests of AHW
rosarp 12ccbf8
changed Relaynetwork, removed Option
rosarp 860a2c9
Apply suggestions from code review
bkontur afb559c
Update cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tes…
bkontur 3033528
Merge branch 'bko-permlanes-on-ahs' into bko-permlanes-on-ahs-add-bri…
bkontur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 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 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
44 changes: 44 additions & 0 deletions
44
cumulus/parachains/runtimes/assets/asset-hub-westend/src/bridge_common_config.rs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // Copyright (C) Parity Technologies (UK) Ltd. | ||
| // This file is part of Cumulus. | ||
|
|
||
| // Cumulus is free software: you can redistribute it and/or modify | ||
| // it under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 3 of the License, or | ||
| // (at your option) any later version. | ||
|
|
||
| // Cumulus is distributed in the hope that it will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
|
|
||
| // You should have received a copy of the GNU General Public License | ||
| // along with Cumulus. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| //! Bridge definitions that can be used by multiple bridges. | ||
| use super::{weights, AccountId, Balance, Balances, BlockNumber, Runtime, RuntimeEvent}; | ||
|
|
||
| frame_support::parameter_types! { | ||
| pub storage RequiredStakeForStakeAndSlash: Balance = 1_000_000; | ||
| pub const RelayerStakeLease: u32 = 8; | ||
| pub const RelayerStakeReserveId: [u8; 8] = *b"brdgrlrs"; | ||
| pub storage DeliveryRewardInBalance: u64 = 1_000_000; | ||
| } | ||
|
|
||
| /// Allows collect and claim rewards for the relayers | ||
| pub type BridgeRelayersInstance = pallet_bridge_relayers::Instance1; | ||
| impl pallet_bridge_relayers::Config<BridgeRelayersInstance> for Runtime { | ||
| type RuntimeEvent = RuntimeEvent; | ||
| type Reward = Balance; | ||
| type PaymentProcedure = | ||
| pallet_bridge_relayers::PayRewardFromAccount<Balances, AccountId, Self::LaneId>; | ||
| type StakeAndSlash = pallet_bridge_relayers::StakeAndSlashNamed< | ||
| AccountId, | ||
| BlockNumber, | ||
| Balances, | ||
| RelayerStakeReserveId, | ||
| RequiredStakeForStakeAndSlash, | ||
| RelayerStakeLease, | ||
| >; | ||
| type WeightInfo = weights::pallet_bridge_relayers::WeightInfo<Runtime>; | ||
| type LaneId = bp_messages::HashedLaneId; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.