Enum xcm::v2::Instruction[][src]

pub enum Instruction<Call> {
Show 28 variants WithdrawAsset(MultiAssets), ReserveAssetDeposited(MultiAssets), ReceiveTeleportedAsset(MultiAssets), QueryResponse { query_id: QueryId, response: Response, max_weight: u64, }, TransferAsset { assets: MultiAssets, beneficiary: MultiLocation, }, TransferReserveAsset { assets: MultiAssets, dest: MultiLocation, xcm: Xcm<()>, }, Transact { origin_type: OriginKind, require_weight_at_most: u64, call: DoubleEncoded<Call>, }, HrmpNewChannelOpenRequest { sender: u32, max_message_size: u32, max_capacity: u32, }, HrmpChannelAccepted { recipient: u32, }, HrmpChannelClosing { initiator: u32, sender: u32, recipient: u32, }, ClearOrigin, DescendOrigin(InteriorMultiLocation), ReportError { query_id: QueryId, dest: MultiLocation, max_response_weight: u64, }, DepositAsset { assets: MultiAssetFilter, max_assets: u32, beneficiary: MultiLocation, }, DepositReserveAsset { assets: MultiAssetFilter, max_assets: u32, dest: MultiLocation, xcm: Xcm<()>, }, ExchangeAsset { give: MultiAssetFilter, receive: MultiAssets, }, InitiateReserveWithdraw { assets: MultiAssetFilter, reserve: MultiLocation, xcm: Xcm<()>, }, InitiateTeleport { assets: MultiAssetFilter, dest: MultiLocation, xcm: Xcm<()>, }, QueryHolding { query_id: QueryId, dest: MultiLocation, assets: MultiAssetFilter, max_response_weight: u64, }, BuyExecution { fees: MultiAsset, weight_limit: WeightLimit, }, RefundSurplus, SetErrorHandler(Xcm<Call>), SetAppendix(Xcm<Call>), ClearError, ClaimAsset { assets: MultiAssets, ticket: MultiLocation, }, Trap(u64), SubscribeVersion { query_id: QueryId, max_response_weight: u64, }, UnsubscribeVersion,
}
Expand description

Cross-Consensus Message: A message from one consensus system to another.

Consensus systems that may send and receive messages include blockchains and smart contracts.

All messages are delivered from a known origin, expressed as a MultiLocation.

This is the inner XCM format and is version-sensitive. Messages are typically passed using the outer XCM format, known as VersionedXcm.

Variants

WithdrawAsset(MultiAssets)

Withdraw asset(s) (assets) from the ownership of origin and place them into the Holding Register.

Kind: Instruction.

Errors:

Tuple Fields of WithdrawAsset

0: MultiAssets
ReserveAssetDeposited(MultiAssets)

Asset(s) (assets) have been received into the ownership of this system on the origin system and equivalent derivatives should be placed into the Holding Register.

Safety: origin must be trusted to have received and be storing assets such that they may later be withdrawn should this system send a corresponding message.

Kind: Trusted Indication.

Errors:

Tuple Fields of ReserveAssetDeposited

0: MultiAssets
ReceiveTeleportedAsset(MultiAssets)

Asset(s) (assets) have been destroyed on the origin system and equivalent assets should be created and placed into the Holding Register.

Safety: origin must be trusted to have irrevocably destroyed the corresponding assets prior as a consequence of sending this message.

Kind: Trusted Indication.

Errors:

Tuple Fields of ReceiveTeleportedAsset

0: MultiAssets
QueryResponse

Respond with information that the local system is expecting.

Safety: No concerns.

Kind: Information.

Errors:

Fields of QueryResponse

query_id: QueryIdresponse: Responsemax_weight: u64
TransferAsset

Withdraw asset(s) (assets) from the ownership of origin and place equivalent assets under the ownership of beneficiary.

Safety: No concerns.

Kind: Instruction.

Errors:

Fields of TransferAsset

assets: MultiAssetsbeneficiary: MultiLocation
TransferReserveAsset

Withdraw asset(s) (assets) from the ownership of origin and place equivalent assets under the ownership of dest within this consensus system (i.e. its sovereign account).

Send an onward XCM message to dest of ReserveAssetDeposited with the given xcm.

Safety: No concerns.

Kind: Instruction.

Errors:

Fields of TransferReserveAsset

assets: MultiAssetsdest: MultiLocationxcm: Xcm<()>
Transact

Apply the encoded transaction call, whose dispatch-origin should be origin as expressed by the kind of origin origin_type.

Safety: No concerns.

Kind: Instruction.

Errors:

Fields of Transact

origin_type: OriginKindrequire_weight_at_most: u64call: DoubleEncoded<Call>
HrmpNewChannelOpenRequest

A message to notify about a new incoming HRMP channel. This message is meant to be sent by the relay-chain to a para.

Safety: The message should originate directly from the relay-chain.

Kind: System Notification

Fields of HrmpNewChannelOpenRequest

sender: u32max_message_size: u32max_capacity: u32
HrmpChannelAccepted

A message to notify about that a previously sent open channel request has been accepted by the recipient. That means that the channel will be opened during the next relay-chain session change. This message is meant to be sent by the relay-chain to a para.

Safety: The message should originate directly from the relay-chain.

Kind: System Notification

Errors:

Fields of HrmpChannelAccepted

recipient: u32
HrmpChannelClosing

A message to notify that the other party in an open channel decided to close it. In particular, initiator is going to close the channel opened from sender to the recipient. The close will be enacted at the next relay-chain session change. This message is meant to be sent by the relay-chain to a para.

Safety: The message should originate directly from the relay-chain.

Kind: System Notification

Errors:

Fields of HrmpChannelClosing

initiator: u32sender: u32recipient: u32
ClearOrigin

Clear the origin.

This may be used by the XCM author to ensure that later instructions cannot command the authority of the origin (e.g. if they are being relayed from an untrusted source, as often the case with ReserveAssetDeposited).

Safety: No concerns.

Kind: Instruction.

Errors:

DescendOrigin(InteriorMultiLocation)

Mutate the origin to some interior location.

Kind: Instruction

Errors:

Tuple Fields of DescendOrigin

0: InteriorMultiLocation
ReportError

Immediately report the contents of the Error Register to the given destination via XCM.

A QueryResponse message of type ExecutionOutcome is sent to dest with the given query_id and the outcome of the XCM.

Kind: Instruction

Errors:

Fields of ReportError

query_id: QueryIddest: MultiLocationmax_response_weight: u64
DepositAsset

Remove the asset(s) (assets) from the Holding Register and place equivalent assets under the ownership of beneficiary within this consensus system.

Kind: Instruction

Errors:

Fields of DepositAsset

assets: MultiAssetFiltermax_assets: u32beneficiary: MultiLocation
DepositReserveAsset

Remove the asset(s) (assets) from the Holding Register and place equivalent assets under the ownership of dest within this consensus system (i.e. deposit them into its sovereign account).

Send an onward XCM message to dest of ReserveAssetDeposited with the given effects.

Kind: Instruction

Errors:

Fields of DepositReserveAsset

assets: MultiAssetFiltermax_assets: u32dest: MultiLocationxcm: Xcm<()>
ExchangeAsset

Remove the asset(s) (give) from the Holding Register and replace them with alternative assets.

The minimum amount of assets to be received into the Holding Register for the order not to fail may be stated.

Kind: Instruction

Errors:

Fields of ExchangeAsset

give: MultiAssetFilterreceive: MultiAssets
InitiateReserveWithdraw

Remove the asset(s) (assets) from holding and send a WithdrawAsset XCM message to a reserve location.

Kind: Instruction

Errors:

Fields of InitiateReserveWithdraw

assets: MultiAssetFilterreserve: MultiLocationxcm: Xcm<()>
InitiateTeleport

Remove the asset(s) (assets) from holding and send a ReceiveTeleportedAsset XCM message to a dest location.

NOTE: The dest location MUST respect this origin as a valid teleportation origin for all assets. If it does not, then the assets may be lost.

Kind: Instruction

Errors:

Fields of InitiateTeleport

assets: MultiAssetFilterdest: MultiLocationxcm: Xcm<()>
QueryHolding

Send a Balances XCM message with the assets value equal to the holding contents, or a portion thereof.

Kind: Instruction

Errors:

Fields of QueryHolding

query_id: QueryIddest: MultiLocationassets: MultiAssetFiltermax_response_weight: u64
BuyExecution

Pay for the execution of some XCM xcm and orders with up to weight picoseconds of execution time, paying for this with up to fees from the Holding Register.

Kind: Instruction

Errors:

Fields of BuyExecution

fees: MultiAssetweight_limit: WeightLimit
RefundSurplus

Refund any surplus weight previously bought with BuyExecution.

Kind: Instruction

Errors: None.

SetErrorHandler(Xcm<Call>)

Set the Error Handler Register. This is code that should be called in the case of an error happening.

An error occurring within execution of this code will NOT result in the error register being set, nor will an error handler be called due to it. The error handler and appendix may each still be set.

The apparent weight of this instruction is inclusive of the inner Xcm; the executing weight however includes only the difference between the previous handler and the new handler, which can reasonably be negative, which would result in a surplus.

Kind: Instruction

Errors: None.

Tuple Fields of SetErrorHandler

0: Xcm<Call>
SetAppendix(Xcm<Call>)

Set the Appendix Register. This is code that should be called after code execution (including the error handler if any) is finished. This will be called regardless of whether an error occurred.

Any error occurring due to execution of this code will result in the error register being set, and the error handler (if set) firing.

The apparent weight of this instruction is inclusive of the inner Xcm; the executing weight however includes only the difference between the previous appendix and the new appendix, which can reasonably be negative, which would result in a surplus.

Kind: Instruction

Errors: None.

Tuple Fields of SetAppendix

0: Xcm<Call>
ClearError

Clear the Error Register.

Kind: Instruction

Errors: None.

ClaimAsset

Create some assets which are being held on behalf of the origin.

Kind: Instruction

Errors:

Fields of ClaimAsset

assets: MultiAssetsticket: MultiLocation
Trap(u64)

Always throws an error of type Trap.

Kind: Instruction

Errors:

Tuple Fields of Trap

0: u64
SubscribeVersion

Ask the destination system to respond with the most recent version of XCM that they support in a QueryResponse instruction. Any changes to this should also elicit similar responses when they happen.

Kind: Instruction

Fields of SubscribeVersion

query_id: QueryIdmax_response_weight: u64
UnsubscribeVersion

Cancel the effect of a previous SubscribeVersion instruction.

Kind: Instruction

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Attempt to deserialise the value from input.

Attempt to skip the encoded value from input. Read more

Returns the fixed encoded size of the type. Read more

Convert self to a slice and append it to the destination.

If possible give a hint of expected size of the encoding. Read more

Convert self to an owned vector.

Convert self to a slice and then invoke the given closure with it.

Calculates the encoded size. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type identifying for which type info is provided. Read more

Returns the static type identifier for Self.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Converts self into T using Into<T>. Read more

Converts self into a target type. Read more

Decode Self and consume all of the given input data. Read more

Decode Self and consume all of the given input data. Read more

Decode Self and advance input by the number of bytes consumed. Read more

Decode Self with the given maximum recursion depth. Read more

Causes self to use its Binary implementation when Debug-formatted.

Causes self to use its Display implementation when Debug-formatted. Read more

Causes self to use its LowerExp implementation when Debug-formatted. Read more

Causes self to use its LowerHex implementation when Debug-formatted. Read more

Causes self to use its Octal implementation when Debug-formatted.

Causes self to use its Pointer implementation when Debug-formatted. Read more

Causes self to use its UpperExp implementation when Debug-formatted. Read more

Causes self to use its UpperHex implementation when Debug-formatted. Read more

Performs the conversion.

Performs the conversion.

Return an encoding of Self prepended by given slice.

Pipes by value. This is generally the method you want to use. Read more

Borrows self and passes that borrow into the pipe function. Read more

Mutably borrows self and passes that borrow into the pipe function. Read more

Borrows self, then passes self.borrow() into the pipe function. Read more

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more

Borrows self, then passes self.as_ref() into the pipe function.

Mutably borrows self, then passes self.as_mut() into the pipe function. Read more

Borrows self, then passes self.deref() into the pipe function.

Mutably borrows self, then passes self.deref_mut() into the pipe function. Read more

Pipes a value into a function that cannot ordinarily be called in suffix position. Read more

Pipes a trait borrow into a function that cannot normally be called in suffix position. Read more

Pipes a trait mutable borrow into a function that cannot normally be called in suffix position. Read more

Pipes a trait borrow into a function that cannot normally be called in suffix position. Read more

Pipes a trait mutable borrow into a function that cannot normally be called in suffix position. Read more

Pipes a dereference into a function that cannot normally be called in suffix position. Read more

Pipes a mutable dereference into a function that cannot normally be called in suffix position. Read more

Pipes a reference into a function that cannot ordinarily be called in suffix position. Read more

Pipes a mutable reference into a function that cannot ordinarily be called in suffix position. Read more

Immutable access to a value. Read more

Mutable access to a value. Read more

Immutable access to the Borrow<B> of a value. Read more

Mutable access to the BorrowMut<B> of a value. Read more

Immutable access to the AsRef<R> view of a value. Read more

Mutable access to the AsMut<R> view of a value. Read more

Immutable access to the Deref::Target of a value. Read more

Mutable access to the Deref::Target of a value. Read more

Calls .tap() only in debug builds, and is erased in release builds.

Calls .tap_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref_mut() only in debug builds, and is erased in release builds. Read more

Provides immutable access for inspection. Read more

Calls tap in debug builds, and does nothing in release builds.

Provides mutable access for modification. Read more

Calls tap_mut in debug builds, and does nothing in release builds.

Provides immutable access to the reference for inspection.

Calls tap_ref in debug builds, and does nothing in release builds.

Provides mutable access to the reference for modification.

Calls tap_ref_mut in debug builds, and does nothing in release builds.

Provides immutable access to the borrow for inspection. Read more

Calls tap_borrow in debug builds, and does nothing in release builds.

Provides mutable access to the borrow for modification.

Calls tap_borrow_mut in debug builds, and does nothing in release builds. Read more

Immutably dereferences self for inspection.

Calls tap_deref in debug builds, and does nothing in release builds.

Mutably dereferences self for modification.

Calls tap_deref_mut in debug builds, and does nothing in release builds. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Attempts to convert self into T using TryInto<T>. Read more

Attempts to convert self into a target type. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.