9 releases (4 breaking)

new 0.10.0 Apr 17, 2024
0.9.1 Apr 9, 2024
0.8.0 Mar 18, 2024
0.7.0 Jan 29, 2024
0.0.0 Nov 22, 2022

#1125 in Magic Beans

Download history 25/week @ 2024-01-29 71/week @ 2024-02-05 65/week @ 2024-02-12 110/week @ 2024-02-19 80/week @ 2024-02-26 1/week @ 2024-03-04 92/week @ 2024-03-11 277/week @ 2024-03-18 45/week @ 2024-03-25 127/week @ 2024-04-01 243/week @ 2024-04-08 146/week @ 2024-04-15

562 downloads per month

Apache-2.0 and GPL-3.0-only

230KB
5.5K SLoC

Xtokens Module

Overview

The xtokens module provides cross-chain token transfer functionality, by cross-consensus messages(XCM).

The xtokens module provides functions for

  • Token transfer from parachains to relay chain.
  • Token transfer between parachains, including relay chain tokens like DOT, KSM, and parachain tokens like ACA, aUSD, USDT.

Notes

Integration tests

Integration tests could be done manually after integrating xtokens into a runtime. To cover the full features, set up at least 4 relay chain validators and 3 collators of different parachains, and use dispatchable calls to include all these scenarios:

  • Transfer relay chain tokens to relay chain.
  • Transfer tokens issued by parachain A, from parachain A to parachain B.
    • Sending the tx from parachain A.
    • Set the destination as Parachain B.
    • Set the currency ID as parachain A token.
  • Transfer tokens issued by parachain B, from parachain A to parachain B.
    • Sending the tx from parachain A.
    • Set the destination as Parachain B.
    • Set the currency ID as parachain B token.
  • Transfer tokens issued by parachain C, from parachain A to parachain B.
    • Sending the tx from parachain A.
    • Set the destination as Parachain B.
    • Set the currency ID as parachain C token.

Transfer multiple currencies

  • Transfer relay chain tokens to relay chain, and use relay chain token as fee
  • Transfer relay chain tokens to parachain, and use relay chain token as fee
  • Transfer tokens issued by parachain A, from parachain A to parachain B, and use parachain A token as a fee
  • Transfer tokens issued by parachain B, from parachain A to parachain B, and use parachain B token as a fee
  • Transfer tokens issued by parachain C, from parachain A to parachain B, and use parachain C token as a fee
  • Transfer tokens issued by parachain B, from parachain A to parachain B, and use relay chain token as fee

Notice, in the case of parachain A transfer parachain B token to parachain B, and use relay chain token as fee. Because fee asset is relaychain token, and non fee asset is parachain B token, this is two different chain. We call chain of fee asset as fee_reserve, and chain of non fee asset as non_fee_reserve. And in this case fee_reserve location is also refer to destination parachain.

The current implementation sends two XCM from a sender parachain. First XCM is sent to the fee reserve chain which will also route the XCM message to the destination parachain. Second XCM directly sent to destination parachain.

The fee amount in fee asset is split into two parts:

  1. Fee asset sent to fee reserve chain = fee_amount - min_xcm_fee
  2. Fee asset sent to dest reserve chain = min_xcm_fee

Parachains should implement config MinXcmFee in xtokens module config:

parameter_type_with_key! {
	pub MinXcmReserveFee: |location: Location| -> Option<u128> {
		#[allow(clippy::match_ref_pats)] // false positive
		match (location.parents, location.first_interior()) {
			(1, Some(Parachain(parachains::statemine::ID))) => Some(4_000_000_000),
			_ => None,
		}
	};
}

If Parachain don't want have this case, can simply return None. A default implementation is provided by DisabledParachainFee in xcm-support.

parameter_type_with_key! {
	pub ParachainMinFee: |_location: Location| -> Option<u128> {
		None
	};
}

Notice the implementation for now also relies on SelfLocation which is already in xtokens config. The SelfLocation can be set to the absolute view (1, Parachain(THIS_PARACHAIN_ID)) and refers to the sender parachain. The alternative is to set SelfLocation to relative view (0, Here) to adhere to Polkadot guidelines.

We use SelfLocation to fund fee to sender's parachain sovereign account on destination parachain, which asset is originated from sender account on sender parachain. This means if user setup too much fee, the fee will not returned to user, instead deposit to sibling parachain sovereign account on destination parachain.

Dependencies

~20–35MB
~571K SLoC