SignedTransactionData: {
    txHashHex: string;
    witnesses: Witness[];
    auxiliaryDataSupplement: TxAuxiliaryDataSupplement | null;
}

Result of signing a transaction.

See

Ada.signTransaction

Type declaration

  • txHashHex: string

    Hash of signed transaction. Callers should check that they serialize tx the same way

  • witnesses: Witness[]

    List of witnesses. Caller should assemble full transaction to be submitted to the network.

  • auxiliaryDataSupplement: TxAuxiliaryDataSupplement | null

    Additional information about auxiliary data serialized into the transaction, providing the caller with information needed to assemble the transaction containing these auxiliary data.

Generated using TypeDoc