import { TxComplete } from "https://deno.land/x/lucid@0.10.6/src/mod.ts";
Methods
assemble(witnesses: TransactionWitnesses[]): TxComplete
Sign the transaction with the given witnesses.
complete(): Promise<TxSigned>
partialSign(): Promise<TransactionWitnesses>
Sign the transaction and return the witnesses that were just made.
partialSignWithPrivateKey(privateKey: PrivateKey): TransactionWitnesses
Sign the transaction and return the witnesses that were just made. Add an extra signature from a private key.
sign(): TxComplete
signWithPrivateKey(privateKey: PrivateKey): TxComplete
Add an extra signature from a private key.
toHash(): TxHash
Return the transaction hash.
toString(): Transaction
Return the transaction in Hex encoded Cbor.