bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
14 lines (13 loc) • 392 B
TypeScript
import { BitPayClient } from './BitPayClient';
import { WalletInterface } from '../Model/Wallet/Wallet';
export declare class WalletClient {
private bitPayClient;
constructor(bitPayClient: BitPayClient);
/**
* Retrieve all supported wallets.
*
* @returns Wallet[]
* @throws WalletQueryException
*/
getSupportedWallets(): Promise<WalletInterface[]>;
}