Type alias SendTransactionOptionsType

SendTransactionOptionsType: {
    confirm?: boolean | number;
    onAccount: AccountBase;
    onNode: Node;
    verify?: boolean;
    waitMined?: boolean;
} & Parameters<typeof poll>[1] & Omit<Parameters<typeof waitForTxConfirm>[1], "confirm"> & Parameters<AccountBase["signTransaction"]>[1]

Type declaration

  • Optional confirm?: boolean | number

    Number of micro blocks that should be mined after tx get included

  • onAccount: AccountBase

    Account to use

  • onNode: Node

    Node to use

  • Optional verify?: boolean

    Verify transaction before broadcast, throw error if not

  • Optional waitMined?: boolean

    Ensure that transaction get into block

Generated using TypeDoc