mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 03:31:05 +00:00
24d6e46ad0
* Fixes
* Removes unused import
* Uses Block and removes BlockNumber/Header from Chain
* Fixes bridges
* Fixes
* Removes unused import
* Fixes build
* Uses correct RelayBlock
* Minor fix
* Fixes glutton-kusama
* Uses correct RelayBlock
* Minor fix
* Fixes benchmark for pallet-bridge-parachains
* Adds appropriate constraints
* Minor fixes
* Removes unused import
* Fixes integrity tests
* Minor fixes
* Updates trait bounds
* Uses custom bound for AsPrimitive
* Fixes trait bounds
* Revert "Fixes trait bounds"
This reverts commit 0b0f42f583f3a616a88afe45fcd06d31e7d9a06f.
* Revert "Uses custom bound for AsPrimitive"
This reverts commit 838e5281adf8b6e9632a2abb9cd550db4ae24126.
* No AsPrimitive trait bound for now
* Removes bounds on Number
* update lockfile for {"substrate", "polkadot"}
* Formatting
* ".git/.scripts/commands/fmt/fmt.sh"
* Minor fix
---------
Co-authored-by: parity-processbot <>
359 lines
12 KiB
Rust
359 lines
12 KiB
Rust
// Copyright 2019-2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Bridges Common.
|
|
|
|
// Parity Bridges Common is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity Bridges Common is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use codec::{Decode, Encode, MaxEncodedLen};
|
|
use frame_support::{weights::Weight, Parameter};
|
|
use num_traits::{Bounded, CheckedSub, SaturatingAdd, Zero};
|
|
use sp_runtime::{
|
|
traits::{
|
|
AtLeast32Bit, AtLeast32BitUnsigned, Block as BlockT, Hash as HashT, Header as HeaderT,
|
|
HeaderProvider, MaybeDisplay, MaybeSerialize, MaybeSerializeDeserialize, Member,
|
|
SimpleBitOps, Verify,
|
|
},
|
|
FixedPointOperand,
|
|
};
|
|
use sp_std::{convert::TryFrom, fmt::Debug, hash::Hash, vec, vec::Vec};
|
|
|
|
/// Chain call, that is either SCALE-encoded, or decoded.
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
pub enum EncodedOrDecodedCall<ChainCall> {
|
|
/// The call that is SCALE-encoded.
|
|
///
|
|
/// This variant is used when we the chain runtime is not bundled with the relay, but
|
|
/// we still need the represent call in some RPC calls or transactions.
|
|
Encoded(Vec<u8>),
|
|
/// The decoded call.
|
|
Decoded(ChainCall),
|
|
}
|
|
|
|
impl<ChainCall: Clone + Decode> EncodedOrDecodedCall<ChainCall> {
|
|
/// Returns decoded call.
|
|
pub fn to_decoded(&self) -> Result<ChainCall, codec::Error> {
|
|
match self {
|
|
Self::Encoded(ref encoded_call) =>
|
|
ChainCall::decode(&mut &encoded_call[..]).map_err(Into::into),
|
|
Self::Decoded(ref decoded_call) => Ok(decoded_call.clone()),
|
|
}
|
|
}
|
|
|
|
/// Converts self to decoded call.
|
|
pub fn into_decoded(self) -> Result<ChainCall, codec::Error> {
|
|
match self {
|
|
Self::Encoded(encoded_call) =>
|
|
ChainCall::decode(&mut &encoded_call[..]).map_err(Into::into),
|
|
Self::Decoded(decoded_call) => Ok(decoded_call),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<ChainCall> From<ChainCall> for EncodedOrDecodedCall<ChainCall> {
|
|
fn from(call: ChainCall) -> EncodedOrDecodedCall<ChainCall> {
|
|
EncodedOrDecodedCall::Decoded(call)
|
|
}
|
|
}
|
|
|
|
impl<ChainCall: Decode> Decode for EncodedOrDecodedCall<ChainCall> {
|
|
fn decode<I: codec::Input>(input: &mut I) -> Result<Self, codec::Error> {
|
|
// having encoded version is better than decoded, because decoding isn't required
|
|
// everywhere and for mocked calls it may lead to **unneeded** errors
|
|
match input.remaining_len()? {
|
|
Some(remaining_len) => {
|
|
let mut encoded_call = vec![0u8; remaining_len];
|
|
input.read(&mut encoded_call)?;
|
|
Ok(EncodedOrDecodedCall::Encoded(encoded_call))
|
|
},
|
|
None => Ok(EncodedOrDecodedCall::Decoded(ChainCall::decode(input)?)),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<ChainCall: Encode> Encode for EncodedOrDecodedCall<ChainCall> {
|
|
fn encode(&self) -> Vec<u8> {
|
|
match *self {
|
|
Self::Encoded(ref encoded_call) => encoded_call.clone(),
|
|
Self::Decoded(ref decoded_call) => decoded_call.encode(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Minimal Substrate-based chain representation that may be used from no_std environment.
|
|
pub trait Chain: Send + Sync + 'static {
|
|
/// A type that fulfills the abstract idea of what a Substrate hash is.
|
|
// Constraits come from the associated Hash type of `sp_runtime::traits::Header`
|
|
// See here for more info:
|
|
// https://crates.parity.io/sp_runtime/traits/trait.Header.html#associatedtype.Hash
|
|
type Hash: Parameter
|
|
+ Member
|
|
+ MaybeSerializeDeserialize
|
|
+ Hash
|
|
+ Ord
|
|
+ Copy
|
|
+ MaybeDisplay
|
|
+ Default
|
|
+ SimpleBitOps
|
|
+ AsRef<[u8]>
|
|
+ AsMut<[u8]>
|
|
+ MaxEncodedLen;
|
|
|
|
/// A type that fulfills the abstract idea of what a Substrate hasher (a type
|
|
/// that produces hashes) is.
|
|
// Constraits come from the associated Hashing type of `sp_runtime::traits::Header`
|
|
// See here for more info:
|
|
// https://crates.parity.io/sp_runtime/traits/trait.Header.html#associatedtype.Hashing
|
|
type Hasher: HashT<Output = Self::Hash>;
|
|
|
|
/// A type that fulfills the abstract idea of what a Substrate block is.
|
|
// See here for more info:
|
|
// https://crates.parity.io/sp_runtime/traits/trait.Block.html
|
|
type Block: Parameter + BlockT<Hash = Self::Hash> + MaybeSerialize;
|
|
|
|
/// The user account identifier type for the runtime.
|
|
type AccountId: Parameter
|
|
+ Member
|
|
+ MaybeSerializeDeserialize
|
|
+ Debug
|
|
+ MaybeDisplay
|
|
+ Ord
|
|
+ MaxEncodedLen;
|
|
/// Balance of an account in native tokens.
|
|
///
|
|
/// The chain may support multiple tokens, but this particular type is for token that is used
|
|
/// to pay for transaction dispatch, to reward different relayers (headers, messages), etc.
|
|
type Balance: AtLeast32BitUnsigned
|
|
+ FixedPointOperand
|
|
+ Parameter
|
|
+ Member
|
|
+ MaybeSerializeDeserialize
|
|
+ Clone
|
|
+ Copy
|
|
+ Bounded
|
|
+ CheckedSub
|
|
+ PartialOrd
|
|
+ SaturatingAdd
|
|
+ Zero
|
|
+ TryFrom<sp_core::U256>
|
|
+ MaxEncodedLen;
|
|
/// Index of a transaction used by the chain.
|
|
type Index: Parameter
|
|
+ Member
|
|
+ MaybeSerialize
|
|
+ Debug
|
|
+ Default
|
|
+ MaybeDisplay
|
|
+ MaybeSerializeDeserialize
|
|
+ AtLeast32Bit
|
|
+ Copy
|
|
+ MaxEncodedLen;
|
|
/// Signature type, used on this chain.
|
|
type Signature: Parameter + Verify;
|
|
|
|
/// Get the maximum size (in bytes) of a Normal extrinsic at this chain.
|
|
fn max_extrinsic_size() -> u32;
|
|
/// Get the maximum weight (compute time) that a Normal extrinsic at this chain can use.
|
|
fn max_extrinsic_weight() -> Weight;
|
|
}
|
|
|
|
/// A trait that provides the type of the underlying chain.
|
|
pub trait UnderlyingChainProvider {
|
|
/// Underlying chain type.
|
|
type Chain: Chain;
|
|
}
|
|
|
|
impl<T> Chain for T
|
|
where
|
|
T: Send + Sync + 'static + UnderlyingChainProvider,
|
|
{
|
|
type Hash = <T::Chain as Chain>::Hash;
|
|
type Hasher = <T::Chain as Chain>::Hasher;
|
|
type Block = <T::Chain as Chain>::Block;
|
|
type AccountId = <T::Chain as Chain>::AccountId;
|
|
type Balance = <T::Chain as Chain>::Balance;
|
|
type Index = <T::Chain as Chain>::Index;
|
|
type Signature = <T::Chain as Chain>::Signature;
|
|
|
|
fn max_extrinsic_size() -> u32 {
|
|
<T::Chain as Chain>::max_extrinsic_size()
|
|
}
|
|
|
|
fn max_extrinsic_weight() -> Weight {
|
|
<T::Chain as Chain>::max_extrinsic_weight()
|
|
}
|
|
}
|
|
|
|
/// Minimal parachain representation that may be used from no_std environment.
|
|
pub trait Parachain: Chain {
|
|
/// Parachain identifier.
|
|
const PARACHAIN_ID: u32;
|
|
}
|
|
|
|
impl<T> Parachain for T
|
|
where
|
|
T: Chain + UnderlyingChainProvider,
|
|
<T as UnderlyingChainProvider>::Chain: Parachain,
|
|
{
|
|
const PARACHAIN_ID: u32 = <<T as UnderlyingChainProvider>::Chain as Parachain>::PARACHAIN_ID;
|
|
}
|
|
|
|
/// Adapter for `Get<u32>` to access `PARACHAIN_ID` from `trait Parachain`
|
|
pub struct ParachainIdOf<Para>(sp_std::marker::PhantomData<Para>);
|
|
impl<Para: Parachain> frame_support::traits::Get<u32> for ParachainIdOf<Para> {
|
|
fn get() -> u32 {
|
|
Para::PARACHAIN_ID
|
|
}
|
|
}
|
|
|
|
/// Underlying chain type.
|
|
pub type UnderlyingChainOf<C> = <C as UnderlyingChainProvider>::Chain;
|
|
|
|
/// Block number used by the chain.
|
|
pub type BlockNumberOf<C> = <<<C as Chain>::Block as HeaderProvider>::HeaderT as HeaderT>::Number;
|
|
|
|
/// Hash type used by the chain.
|
|
pub type HashOf<C> = <C as Chain>::Hash;
|
|
|
|
/// Hasher type used by the chain.
|
|
pub type HasherOf<C> = <C as Chain>::Hasher;
|
|
|
|
/// Header type used by the chain.
|
|
pub type HeaderOf<C> = <<C as Chain>::Block as HeaderProvider>::HeaderT;
|
|
|
|
/// Account id type used by the chain.
|
|
pub type AccountIdOf<C> = <C as Chain>::AccountId;
|
|
|
|
/// Balance type used by the chain.
|
|
pub type BalanceOf<C> = <C as Chain>::Balance;
|
|
|
|
/// Transaction index type used by the chain.
|
|
pub type IndexOf<C> = <C as Chain>::Index;
|
|
|
|
/// Signature type used by the chain.
|
|
pub type SignatureOf<C> = <C as Chain>::Signature;
|
|
|
|
/// Account public type used by the chain.
|
|
pub type AccountPublicOf<C> = <SignatureOf<C> as Verify>::Signer;
|
|
|
|
/// Transaction era used by the chain.
|
|
pub type TransactionEraOf<C> = crate::TransactionEra<BlockNumberOf<C>, HashOf<C>>;
|
|
|
|
/// Convenience macro that declares bridge finality runtime apis and related constants for a chain.
|
|
/// This includes:
|
|
/// - chain-specific bridge runtime APIs:
|
|
/// - `<ThisChain>FinalityApi`
|
|
/// - constants that are stringified names of runtime API methods:
|
|
/// - `BEST_FINALIZED_<THIS_CHAIN>_HEADER_METHOD`
|
|
/// The name of the chain has to be specified in snake case (e.g. `rialto_parachain`).
|
|
#[macro_export]
|
|
macro_rules! decl_bridge_finality_runtime_apis {
|
|
($chain: ident) => {
|
|
bp_runtime::paste::item! {
|
|
mod [<$chain _finality_api>] {
|
|
use super::*;
|
|
|
|
/// Name of the `<ThisChain>FinalityApi::best_finalized` runtime method.
|
|
pub const [<BEST_FINALIZED_ $chain:upper _HEADER_METHOD>]: &str =
|
|
stringify!([<$chain:camel FinalityApi_best_finalized>]);
|
|
|
|
sp_api::decl_runtime_apis! {
|
|
/// API for querying information about the finalized chain headers.
|
|
///
|
|
/// This API is implemented by runtimes that are receiving messages from this chain, not by this
|
|
/// chain's runtime itself.
|
|
pub trait [<$chain:camel FinalityApi>] {
|
|
/// Returns number and hash of the best finalized header known to the bridge module.
|
|
fn best_finalized() -> Option<bp_runtime::HeaderId<Hash, BlockNumber>>;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub use [<$chain _finality_api>]::*;
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Convenience macro that declares bridge messages runtime apis and related constants for a chain.
|
|
/// This includes:
|
|
/// - chain-specific bridge runtime APIs:
|
|
/// - `To<ThisChain>OutboundLaneApi`
|
|
/// - `From<ThisChain>InboundLaneApi`
|
|
/// - constants that are stringified names of runtime API methods:
|
|
/// - `FROM_<THIS_CHAIN>_MESSAGE_DETAILS_METHOD`,
|
|
/// The name of the chain has to be specified in snake case (e.g. `rialto_parachain`).
|
|
#[macro_export]
|
|
macro_rules! decl_bridge_messages_runtime_apis {
|
|
($chain: ident) => {
|
|
bp_runtime::paste::item! {
|
|
mod [<$chain _messages_api>] {
|
|
use super::*;
|
|
|
|
/// Name of the `To<ThisChain>OutboundLaneApi::message_details` runtime method.
|
|
pub const [<TO_ $chain:upper _MESSAGE_DETAILS_METHOD>]: &str =
|
|
stringify!([<To $chain:camel OutboundLaneApi_message_details>]);
|
|
|
|
/// Name of the `From<ThisChain>InboundLaneApi::message_details` runtime method.
|
|
pub const [<FROM_ $chain:upper _MESSAGE_DETAILS_METHOD>]: &str =
|
|
stringify!([<From $chain:camel InboundLaneApi_message_details>]);
|
|
|
|
sp_api::decl_runtime_apis! {
|
|
/// Outbound message lane API for messages that are sent to this chain.
|
|
///
|
|
/// This API is implemented by runtimes that are receiving messages from this chain, not by this
|
|
/// chain's runtime itself.
|
|
pub trait [<To $chain:camel OutboundLaneApi>] {
|
|
/// Returns dispatch weight, encoded payload size and delivery+dispatch fee of all
|
|
/// messages in given inclusive range.
|
|
///
|
|
/// If some (or all) messages are missing from the storage, they'll also will
|
|
/// be missing from the resulting vector. The vector is ordered by the nonce.
|
|
fn message_details(
|
|
lane: LaneId,
|
|
begin: MessageNonce,
|
|
end: MessageNonce,
|
|
) -> Vec<OutboundMessageDetails>;
|
|
}
|
|
|
|
/// Inbound message lane API for messages sent by this chain.
|
|
///
|
|
/// This API is implemented by runtimes that are receiving messages from this chain, not by this
|
|
/// chain's runtime itself.
|
|
///
|
|
/// Entries of the resulting vector are matching entries of the `messages` vector. Entries of the
|
|
/// `messages` vector may (and need to) be read using `To<ThisChain>OutboundLaneApi::message_details`.
|
|
pub trait [<From $chain:camel InboundLaneApi>] {
|
|
/// Return details of given inbound messages.
|
|
fn message_details(
|
|
lane: LaneId,
|
|
messages: Vec<(MessagePayload, OutboundMessageDetails)>,
|
|
) -> Vec<InboundMessageDetails>;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub use [<$chain _messages_api>]::*;
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Convenience macro that declares bridge finality runtime apis, bridge messages runtime apis
|
|
/// and related constants for a chain.
|
|
/// The name of the chain has to be specified in snake case (e.g. `rialto_parachain`).
|
|
#[macro_export]
|
|
macro_rules! decl_bridge_runtime_apis {
|
|
($chain: ident) => {
|
|
bp_runtime::decl_bridge_finality_runtime_apis!($chain);
|
|
bp_runtime::decl_bridge_messages_runtime_apis!($chain);
|
|
};
|
|
}
|