btcpay-greenfield-node-client
Version:
## Installation
23 lines (22 loc) • 566 B
TypeScript
export declare type OnChainPaymentMethodData = {
/**
* Whether the payment method is enabled
*/
enabled?: boolean;
/**
* Crypto code of the payment method
*/
cryptoCode?: string;
/**
* The derivation scheme
*/
derivationScheme?: string;
/**
* A label that will be shown in the UI
*/
label?: string;
/**
* The wallet fingerprint followed by the keypath to derive the account key used for signing operation or creating PSBTs
*/
accountKeyPath?: string;
};