UNPKG

@harmoniclabs/buildooor

Version:

Cardano transaction builder in typescript

6 lines (5 loc) 409 B
import { ITxOutRef, IUTxO, TxOutRefStr } from "@harmoniclabs/cardano-ledger-ts"; export type CanResolveToUTxO = IUTxO | ITxOutRef | TxOutRefStr; export declare function canResolveToUTxO(stuff: any): stuff is CanResolveToUTxO; export declare function cloneCanResolveToUTxO(stuff: CanResolveToUTxO): CanResolveToUTxO; export declare function shouldResolveToUTxO(stuff: any): stuff is (ITxOutRef | TxOutRefStr);