Trait sp_runtime::traits::SignaturePayload
source · 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§
sourcetype SignatureAddress: TypeInfo
type SignatureAddress: TypeInfo
The type of the address that signed the extrinsic.
Particular to a signed extrinsic.
sourcetype Signature: TypeInfo
type Signature: TypeInfo
The signature type of the extrinsic.
Particular to a signed extrinsic.
sourcetype SignatureExtra: TypeInfo
type SignatureExtra: TypeInfo
The additional data that is specific to the signed extrinsic.
Particular to a signed extrinsic.