UNPKG

btcpay-greenfield-node-client

Version:
21 lines (20 loc) 586 B
import type { ApplicationServerInfoSyncStatusData } from './ApplicationServerInfoSyncStatusData'; export declare type ApplicationServerInfoData = { /** * BTCPay Server version */ version?: string; /** * The Tor hostname */ onion?: string; /** * The payment methods this server supports */ supportedPaymentMethods?: Array<string>; /** * True if the instance is fully synchronized, according to NBXplorer */ fullySynched?: boolean; syncStatus?: Array<ApplicationServerInfoSyncStatusData>; };