mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
Update docs and enable DOT-over-XCM (#4809)
* Update docs and enable DOT-over-XCM * Formatting * Fixes * Fixes * Formatting * Spelling * add UmpSink config (#5032) * Update runtime/polkadot/src/xcm_config.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
This commit is contained in:
@@ -474,9 +474,9 @@ pub mod pallet {
|
||||
|
||||
/// Teleport some assets from the local chain to some destination chain.
|
||||
///
|
||||
/// Fee payment on the destination side is made from the first asset listed in the `assets` vector and
|
||||
/// fee-weight is calculated locally and thus remote weights are assumed to be equal to
|
||||
/// local weights.
|
||||
/// Fee payment on the destination side is made from the asset in the `assets` vector of
|
||||
/// index `fee_asset_item`. The weight limit for fees is not provided and thus is unlimited,
|
||||
/// with all fees taken as needed from the asset.
|
||||
///
|
||||
/// - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
|
||||
/// - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send
|
||||
@@ -512,12 +512,12 @@ pub mod pallet {
|
||||
Self::do_teleport_assets(origin, dest, beneficiary, assets, fee_asset_item, None)
|
||||
}
|
||||
|
||||
/// Transfer some assets from the local chain to the sovereign account of a destination chain and forward
|
||||
/// a notification XCM.
|
||||
/// Transfer some assets from the local chain to the sovereign account of a destination
|
||||
/// chain and forward a notification XCM.
|
||||
///
|
||||
/// Fee payment on the destination side is made from the first asset listed in the `assets` vector and
|
||||
/// fee-weight is calculated locally and thus remote weights are assumed to be equal to
|
||||
/// local weights.
|
||||
/// Fee payment on the destination side is made from the asset in the `assets` vector of
|
||||
/// index `fee_asset_item`. The weight limit for fees is not provided and thus is unlimited,
|
||||
/// with all fees taken as needed from the asset.
|
||||
///
|
||||
/// - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
|
||||
/// - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send
|
||||
@@ -672,10 +672,13 @@ pub mod pallet {
|
||||
})
|
||||
}
|
||||
|
||||
/// Transfer some assets from the local chain to the sovereign account of a destination chain and forward
|
||||
/// a notification XCM.
|
||||
/// Transfer some assets from the local chain to the sovereign account of a destination
|
||||
/// chain and forward a notification XCM.
|
||||
///
|
||||
/// Fee payment on the destination side is made from the first asset listed in the `assets` vector.
|
||||
/// Fee payment on the destination side is made from the asset in the `assets` vector of
|
||||
/// index `fee_asset_item`, up to enough to pay for `weight_limit` of weight. If more weight
|
||||
/// is needed than `weight_limit`, then the operation will fail and the assets send may be
|
||||
/// at risk.
|
||||
///
|
||||
/// - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
|
||||
/// - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send
|
||||
@@ -719,7 +722,10 @@ pub mod pallet {
|
||||
|
||||
/// Teleport some assets from the local chain to some destination chain.
|
||||
///
|
||||
/// Fee payment on the destination side is made from the first asset listed in the `assets` vector.
|
||||
/// Fee payment on the destination side is made from the asset in the `assets` vector of
|
||||
/// index `fee_asset_item`, up to enough to pay for `weight_limit` of weight. If more weight
|
||||
/// is needed than `weight_limit`, then the operation will fail and the assets send may be
|
||||
/// at risk.
|
||||
///
|
||||
/// - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
|
||||
/// - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send
|
||||
|
||||
Reference in New Issue
Block a user