UNPKG

@mutants/cardano-tx-builder

Version:

A package that provides utility functions to build and destructure a cardano transaction

14 lines 451 B
import { Value } from "./types"; /** * This function makes sure we create a valid UTxO from a value, * respecting the min UTxO value. */ export declare const fromValueToUTxO: (address: string, value: Value, datumInlined?: string) => { value: { coin: number; assets?: import("./types").AssetMap | null | undefined; }; address: string; datumInlined: string | undefined; }; //# sourceMappingURL=fromValueToUTxO.d.ts.map