Interface InputTransactionPluginData

interface InputTransactionPluginData {
    pluginParams?: Record<string, any>;
    transactionSubmitter?: null | TransactionSubmitter;
}

Properties

pluginParams?: Record<string, any>

Additional parameters that will be passed to the transaction submitter plugin if configured.

transactionSubmitter?: null | TransactionSubmitter

You can set this to override the configured transaction submitter (if any). Conversely you can set this to null to ignore any configured transaction submitter.