@arkade-os/sdk
Version:
Bitcoin wallet SDK with Taproot and Ark integration
9 lines (8 loc) • 374 B
TypeScript
import { ArkTransaction, VirtualCoin } from "../wallet";
/**
* @param spendable - Vtxos that are spendable
* @param spent - Vtxos that are spent
* @param boardingBatchTxids - Set of boarding batch txids
* @returns Ark transactions
*/
export declare function vtxosToTxs(spendable: VirtualCoin[], spent: VirtualCoin[], boardingBatchTxids: Set<string>): ArkTransaction[];