@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
18 lines (17 loc) • 339 B
TypeScript
/**
*
* @export
* @interface DogeUTXO
*/
import { DogeTxOutputs } from './DogeTx';
export interface DogeUTXO extends DogeTxOutputs {
confirmations: number;
/**
* Coinbase transaction - miner fee.
* @type {boolean}
* @memberof DogeUTXO
*/
coinbase: boolean;
bestblock: string;
version: number;
}