bsv-sdk
Version:
bsv sdk
15 lines (14 loc) • 323 B
TypeScript
import { Utxo } from "@sensible-contract/abstract-provider";
export declare type Receiver = {
address: string;
amount: number;
};
export declare type TransferResp = {
txid: string;
txHex: string;
utxos: Utxo[];
};
export declare type signer = {
satotxApiPrefix: string;
satotxPubKey: string;
};