referrerpolicy=no-referrer-when-downgrade
pub trait SignaturePayload {
    type SignatureAddress: TypeInfo;
    type Signature: TypeInfo;
    type SignatureExtra: TypeInfo;
}
Expand description

Something that acts like a SignaturePayload of an Extrinsic.

Required Associated Types§

source

type SignatureAddress: TypeInfo

The type of the address that signed the extrinsic.

Particular to a signed extrinsic.

source

type Signature: TypeInfo

The signature type of the extrinsic.

Particular to a signed extrinsic.

source

type SignatureExtra: TypeInfo

The additional data that is specific to the signed extrinsic.

Particular to a signed extrinsic.

Implementations on Foreign Types§

source§

impl SignaturePayload for ()

source§

impl<Address, Signature, Extension> SignaturePayload for (Address, Signature, Extension)
where Address: TypeInfo, Signature: TypeInfo, Extension: TypeInfo,

§

type SignatureAddress = Address

§

type Signature = Signature

§

type SignatureExtra = Extension

Implementors§