bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
29 lines (28 loc) • 612 B
TypeScript
export interface CurrencyInterface {
code: string;
name: string;
symbol: string;
precision: number;
decimals: number;
plural: string;
alts: string;
minimum: number;
sanctioned: boolean;
displayCode?: string;
chain?: string;
maxSupply?: string;
}
export declare class Currency implements CurrencyInterface {
code: string;
name: string;
symbol: string;
precision: number;
decimals: number;
plural: string;
alts: string;
minimum: number;
sanctioned: boolean;
displayCode?: string;
chain?: string;
maxSupply?: string;
}