askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
19 lines (18 loc) • 493 B
TypeScript
import { WalletClient } from "../../../wallet/WalletClient.js";
/**
* Options for wallet commands with remote support
*/
export interface WalletCommandOptions {
wallet?: string;
remote?: boolean;
url?: string;
debug?: boolean;
[key: string]: any;
}
/**
* Create a wallet client based on command options
*
* @param options Command options
* @returns A wallet client instance
*/
export declare function createWalletClient(options: WalletCommandOptions): WalletClient;