pub trait CreateTransactionBase<LocalCall> {
    type Extrinsic: ExtrinsicLike + Encode;
    type RuntimeCall: From<LocalCall> + Encode;
}Expand description
Common interface for the CreateTransaction trait family to unify the Call type.
Required Associated Types§
Sourcetype Extrinsic: ExtrinsicLike + Encode
 
type Extrinsic: ExtrinsicLike + Encode
The extrinsic.
Sourcetype RuntimeCall: From<LocalCall> + Encode
 
type RuntimeCall: From<LocalCall> + Encode
The runtime’s call type.
This has additional bound to be able to be created from pallet-local Call types.