Type alias FinalizeTxProps

FinalizeTxProps: Omit<TxContext, "signingContext"> & {
    bodyCbor?: HexBlob;
    signingContext?: Partial<SignTransactionContext>;
    tx: TxBodyWithHash | TxCBOR;
}

If tx is the transaction CBOR, the auxiliary data, witness and isValid properties are ignored. If tx is Cardano.TxBodyWithHash, the transaction is reconstructed from along with the other provided properties.

Generated using TypeDoc