pub type Extrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, TxExtension>;Expand description
Unchecked extrinsic type as expected by this runtime.
Aliased Type§
struct Extrinsic {
    pub preamble: Preamble<CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, ((CheckNonce<Runtime>, CheckWeight<Runtime>), CheckSubstrateCall, CheckMetadataHash<Runtime>, WeightReclaim<Runtime>)>,
    pub function: RuntimeCall,
}Fields§
§preamble: Preamble<CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, ((CheckNonce<Runtime>, CheckWeight<Runtime>), CheckSubstrateCall, CheckMetadataHash<Runtime>, WeightReclaim<Runtime>)>Information regarding the type of extrinsic this is (inherent or transaction) as well as
associated extension (Extension) data if it’s a transaction and a possible signature.
function: RuntimeCallThe function that should be called.