pub type Extrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
Expand description

Unchecked extrinsic type as expected by this runtime.

Aliased Type§

struct Extrinsic {
    pub signature: Option<(CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, (CheckNonce<Runtime>, CheckWeight<Runtime>, CheckSubstrateCall, CheckMetadataHash<Runtime>))>,
    pub function: RuntimeCall,
}

Fields§

§signature: Option<(CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, (CheckNonce<Runtime>, CheckWeight<Runtime>, CheckSubstrateCall, CheckMetadataHash<Runtime>))>

The signature, address, number of extrinsics have come before from the same signer and an era describing the longevity of this transaction, if this is a signed extrinsic.

None if it is unsigned or an inherent.

§function: RuntimeCall

The function that should be called.