btcpay-greenfield-node-client
Version:
## Installation
19 lines (18 loc) • 381 B
TypeScript
export declare type OnChainWalletUTXOData = {
/**
* A comment linked to this utxo
*/
comment?: string;
/**
* the value of this utxo
*/
amount?: string;
/**
* a link to the configured blockchain explorer to view the utxo
*/
link?: string;
/**
* outpoint of this utxo
*/
outpoint?: string;
};