frequency_runtime

Type Alias UncheckedExtrinsic

Source
pub type UncheckedExtrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, TxExtension>;
Expand description

Unchecked extrinsic type as expected by this runtime.

Aliased Type§

struct UncheckedExtrinsic {
    pub preamble: Preamble<MultiAddress<AccountId32, ()>, UnifiedSignature, StorageWeightReclaim<Runtime, (CheckNonZeroSender<Runtime>, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>), CheckGenesis<Runtime>, CheckMortality<Runtime>, AsTransactionExtension<CheckNonce<Runtime>>, AsTransactionExtension<ChargeFrqTransactionPayment<Runtime>>, AsTransactionExtension<CheckFreeExtrinsicUse<Runtime>>, AsTransactionExtension<HandlesSignedExtension<Runtime>>, CheckMetadataHash<Runtime>, CheckWeight<Runtime>)>>,
    pub function: RuntimeCall,
}

Fields§

§preamble: Preamble<MultiAddress<AccountId32, ()>, UnifiedSignature, StorageWeightReclaim<Runtime, (CheckNonZeroSender<Runtime>, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>), CheckGenesis<Runtime>, CheckMortality<Runtime>, AsTransactionExtension<CheckNonce<Runtime>>, AsTransactionExtension<ChargeFrqTransactionPayment<Runtime>>, AsTransactionExtension<CheckFreeExtrinsicUse<Runtime>>, AsTransactionExtension<HandlesSignedExtension<Runtime>>, CheckMetadataHash<Runtime>, CheckWeight<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: RuntimeCall

The function that should be called.