bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
27 lines (26 loc) • 662 B
TypeScript
import { CurrencyQrInterface } from './CurrencyQr';
/**
* The type Currencies.
*
* @see <a href="https://bitpay.com/api/#rest-api-resources-wallets">Wallets</a>
*/
export interface CurrenciesInterface {
code: string;
p2p?: boolean;
dappBrowser?: boolean;
payPro?: boolean;
qr?: CurrencyQrInterface;
image?: string;
withdrawalFee?: string;
walletConnect?: boolean;
}
export declare class Currencies implements CurrenciesInterface {
code: string;
p2p?: boolean;
dappBrowser?: boolean;
payPro?: boolean;
qr?: CurrencyQrInterface;
image?: string;
withdrawalFee?: string;
walletConnect?: boolean;
}