Crates.io | pallet-ismp |
lib.rs | pallet-ismp |
version | 1.15.1 |
source | src |
created_at | 2024-05-02 13:46:40.566393 |
updated_at | 2024-10-15 11:25:30.112495 |
description | The substrate runtime implementation of the Interoperable State Machine Protocol |
homepage | https://docs.hyperbridge.network/developers/polkadot/integration |
repository | https://github.com/polytope-labs/hyperbridge |
max_upload_size | |
id | 1227755 |
size | 92,831 |
The interoperable state machine protocol implementation for substrate-based chains. This pallet provides the ability to
The ISMP Pallet provides calls which allow for:
To use it in your runtime, you need to implement the ismp
pallet_ismp::Config
. The supported dispatchable functions are documented in the
pallet_ismp::Call
enum.
handle
- Handles incoming ISMP messages.handle_unsigned
Unsigned variant for handling incoming messages, enabled by feature = ["unsigned"]
create_consensus_client
- Handles creation of various properties for a particular consensus client. Can only be called by the AdminOrigin
.update_consensus_state
- Updates consensus client properties in storage. Can only be called by the AdminOrigin
.fund_message
- In cases where the initially provided relayer fees have now become insufficient, due to a transaction fee spike on the destination chain. Allows a user to add more funds to the request to be used for delivery and execution. Should never be called on a completed request.Please refer to the Call
enum and its associated
variants for documentation on each function.
The following example shows how to configure pallet-ismp
in your runtime
use frame_support::parameter_types;
use frame_system::EnsureRoot;
use ismp::Error;
use pallet_ismp::NoOpMmrTree;
use ismp::host::StateMachine;
use ismp::module::IsmpModule;
use ismp::router::{IsmpRouter, Post, Response, Timeout};
parameter_types! {
// The hyperbridge parachain on Polkadot
pub const Coprocessor: Option<StateMachine> = Some(StateMachine::Polkadot(3367));
// The host state machine of this pallet
pub const HostStateMachine: StateMachine = StateMachine::Polkadot(1000); // your paraId here
}
impl pallet_ismp::Config for Runtime {
// configure the runtime event
type RuntimeEvent = RuntimeEvent;
// Permissioned origin who can create or update consensus clients
type AdminOrigin = EnsureRoot<AccountId>;
// The state machine identifier for this state machine
type HostStateMachine = HostStateMachine;
// The pallet_timestamp pallet
type TimestampProvider = Timestamp;
// The currency implementation that is offered to relayers
type Currency = Balances;
// The balance type for the currency implementation
type Balance = Balance;
// Router implementation for routing requests/responses to their respective modules
type Router = Router;
// Optional coprocessor for incoming requests/responses
type Coprocessor = Coprocessor;
// Supported consensus clients
type ConsensusClients = (
// as an example, the parachain consensus client
ismp_parachain::ParachainConsensusClient<Runtime, IsmpParachain>,
);
// Optional merkle mountain range overlay tree, for cheaper outgoing request proofs.
// You most likely don't need it, just use the `NoOpMmrTree`
type Mmr = NoOpMmrTree;
// Weight provider for local modules
type WeightProvider = ();
}
#[derive(Default)]
struct Router;
impl IsmpRouter for Router {
fn module_for_id(&self, id: Vec<u8>) -> Result<Box<dyn IsmpModule>, Error> {
let module = match id.as_slice() {
YOUR_MODULE_ID => Box::new(YourModule::default()),
_ => Err(Error::ModuleNotFound(id))?
};
Ok(module)
}
}
/// Some custom module capable of processing some incoming/request or response.
/// This could also be a pallet itself.
#[derive(Default)]
struct YourModule;
pub const YOUR_MODULE_ID: &'static [u8] = &[12, 24, 36, 48];
impl IsmpModule for YourModule {
/// Called by the ISMP hanlder, to notify module of a new POST request
/// the module may choose to respond immediately, or in a later block
fn on_accept(&self, request: Post) -> Result<(), Error> {
// do something useful with the request
Ok(())
}
/// Called by the ISMP hanlder, to notify module of a response to a previously
/// sent out request
fn on_response(&self, response: Response) -> Result<(), Error> {
// do something useful with the response
Ok(())
}
/// Called by the ISMP hanlder, to notify module of requests that were previously
/// sent but have now timed-out
fn on_timeout(&self, request: Timeout) -> Result<(), Error> {
// revert any state changes that were made prior to dispatching the request
Ok(())
}
}
This library is licensed under the Apache 2.0 License, Copyright (c) 2024 Polytope Labs.