@mutants/cardano-tx-builder
Version:
A package that provides utility functions to build and destructure a cardano transaction
15 lines • 422 B
TypeScript
import { TxIn, TxOut } from "./types";
export declare class TransactionReader {
private body;
private inputs;
private outputs;
private requiredSigners;
constructor(tx: string);
private decodeInputs;
private decodeOutputs;
private decodeRequiredSigners;
getOutputs(): TxOut[];
getInputs(): TxIn[];
getRequiredSigners(): string[];
}
//# sourceMappingURL=transactionReader.d.ts.map