pub trait ExtrinsicMetadata {
    type SignedExtensions: SignedExtension;

    const VERSION: u8;
}
Expand description

Implementor is an Extrinsic and provides metadata about this extrinsic.

Required Associated Types§

Signed extensions attached to this Extrinsic.

Required Associated Constants§

The format version of the Extrinsic.

By format is meant the encoded representation of the Extrinsic.

Implementors§