5 stable releases
new 15.1.1 | Jan 13, 2025 |
---|---|
15.0.0 | Jan 10, 2025 |
1.15.3 | Dec 10, 2024 |
1.15.1 | Oct 15, 2024 |
#600 in Magic Beans
324 downloads per month
275KB
4.5K
SLoC
Pallet Token Gateway
This allows polkadot-sdk chains make cross-chain asset transfers to and from each other as well EVM chains using Hyperbridge.
Overview
The Pallet allows the AdminOrigin
configured in pallet-ismp
to dispatch calls for setting token gateway addresses.
This enables receiving assets from those configured chains. Assets can also be received with a runtime call to be dispatched. This call must be signed by the beneficiary of the incoming assets. Assets can also be sent with some calldata, this calldata is an opaque blob of bytes
whose interpretation is left up to the recipient token gateway implementation. For polkadot-sdk chains, it must be a scale-encoded runtime call, for EVM chains it must be an abi-encoded contract call.
Adding to Runtime
The first step is to implement the pallet config for the runtime.
use frame_support::parameter_types;
use ismp::module::IsmpModule;
use ismp::router::IsmpRouter;
parameter_types! {
// A constant that should represent the native asset id
pub const NativeAssetId: u32 = 0;
// Set the correct precision for the native currency
pub const Decimals: u8 = 12;
}
/// Should provide an account that is funded and can be used to pay for asset creation
pub struct AssetAdmin;
impl Get<AccountId> for AssetAdmin {
fn get() -> AccountId {
Treasury::account_id()
}
}
impl pallet_token_gateway::Config for Runtime {
// configure the runtime event
type RuntimeEvent = RuntimeEvent;
// pallet_ismp or pallet_hyperbridge
type Dispatcher = pallet_hyperbridge::Pallet<Runtime>;
// Pallet Assets
type Assets = Assets;
// Pallet balances
type Currency = Balances;
// AssetAdmin account
type AssetAdmin = AssetAdmin;
// The Native asset Id
type NativeAssetId = NativeAssetId;
// A type that provides a function for creating unique asset ids
// A concrete implementation for your specific runtime is required
type AssetIdFactory = ();
// The precision of the native asset
type Decimals = Decimals;
}
// Add the pallet to your ISMP router to receive assets from external chains
#[derive(Default)]
struct Router;
impl IsmpRouter for Router {
fn module_for_id(&self, id: Vec<u8>) -> Result<Box<dyn IsmpModule>, anyhow::Error> {
let module = match id.as_slice() {
id if TokenGateway::is_token_gateway(&id) => Box::new(TokenGateway::default()),
_ => Err(Error::ModuleNotFound(id))?
};
Ok(module)
}
}
Setting up
The pallet requires some setting up before the teleport function is available for use in the runtime.
- Register your native assets directly on
Hyperbridge
by dispatchingcreate_erc6160_asset
. - Set token gateway addresses for the EVM chains of interest by dispatching the
set_token_gateway_addresses
extrinsic. These addresses are used to validate incoming messages.
Dispatchable Functions
teleport
- This function is used to bridge assets through Hyperbridge.set_token_gateway_addresses
- This call allows theAdminOrigin
origin to set the token gateway address for supported chains.create_erc6160_asset
- This call dispatches a request to Hyperbridge to create multi chain native assets on token gateway deploymentsupdate_erc6160_asset
- This priviledged call dispatches a request to Hyperbridge to update multi chain native assets on token gateway deployments
License
This library is licensed under the Apache 2.0 License, Copyright (c) 2025 Polytope Labs.
Dependencies
~24–39MB
~659K SLoC