referrerpolicy=no-referrer-when-downgrade

Trait sp_runtime::traits::ExtrinsicMetadata

source ·
pub trait ExtrinsicMetadata {
    type TransactionExtensions;

    const VERSIONS: &'static [u8];
}
Expand description

Implementor is an Extrinsic and provides metadata about this extrinsic.

Required Associated Types§

source

type TransactionExtensions

Transaction extensions attached to this Extrinsic.

Required Associated Constants§

source

const VERSIONS: &'static [u8]

The format versions of the Extrinsic.

By format we mean the encoded representation of the Extrinsic.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Address, Call: Dispatchable, Signature, Extension: TransactionExtension<Call>> ExtrinsicMetadata for UncheckedExtrinsic<Address, Call, Signature, Extension>

source§

const VERSIONS: &'static [u8] = _

§

type TransactionExtensions = Extension