UNPKG

@mayaprotocol/zcash-js

Version:

Zcash JavaScript library for Maya Protocol - Build and sign Zcash transparent transactions with memo support

5 lines (4 loc) 319 B
import { Config, UTXO } from './types'; export declare function getUTXOS(from: string, config: Config): Promise<UTXO[]>; export declare function waitForTransaction(txid: string, config: Config, maxAttempts?: number): Promise<void>; export declare function sendRawTransaction(txb: Buffer, config: Config): Promise<any>;