@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
20 lines (19 loc) • 382 B
TypeScript
/**
*
* @export
* @interface TxHash
*/
export interface TxHash {
/**
* TX hash of successful transaction.
* @type {string}
* @memberof TxHash
*/
txId: string;
/**
* Whethet withdrawal was completed in Tatum's internal ledger. If not, it must be done manually.
* @type {boolean}
* @memberof TxHash
*/
completed: boolean;
}