UNPKG

bitmask-core

Version:

Core functionality for the BitMask wallet

9 lines 847 B
import { NextAddressResponse, NextUtxoResponse, WatcherRequest, WatcherResponse, WatcherStatusResponse } from "./rgb"; export declare const recoverWatcher: (nostrHexSk: string, request: WatcherRequest) => Promise<WatcherResponse>; export declare const destroyRecover: (nostrHexSk: string) => Promise<WatcherResponse>; export declare const createWatcher: (nostrHexSk: string, request: WatcherRequest) => Promise<WatcherResponse>; export declare const destroyWatcher: (nostrHexSk: string) => Promise<WatcherResponse>; export declare const checkWatcher: (nostrHexSk: string) => Promise<WatcherStatusResponse>; export declare const nextAddress: (nostrHexSk: string, request: string) => Promise<NextAddressResponse>; export declare const nextUtxo: (nostrHexSk: string, request: string) => Promise<NextUtxoResponse>; //# sourceMappingURL=wallet.d.ts.map