Type Alias PluginConfig

PluginConfig: {
    IGNORE_TRANSACTION_SUBMITTER?: boolean;
    TRANSACTION_SUBMITTER?: TransactionSubmitter;
}

Config for plugins. This can be used to override certain client behavior.

Type declaration

  • OptionalIGNORE_TRANSACTION_SUBMITTER?: boolean

    If true, we won't use the TRANSACTION_SUBMITTER if set.

  • OptionalTRANSACTION_SUBMITTER?: TransactionSubmitter

    If given, this will be used for submitting transactions instead of the default implementation (which submits transactions directly via a node).