@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
33 lines (32 loc) • 826 B
TypeScript
/**
*
* @export
* @interface BroadcastWithdrawal
*/
export declare class BroadcastWithdrawal {
/**
* Currency of signed transaction to be broadcast, BTC, LTC, BCH, ETH, XRP, ERC20
* @type {string}
* @memberof BroadcastWithdrawal
*/
currency: string;
/**
* Raw signed transaction to be published to network.
* @type {string}
* @memberof BroadcastWithdrawal
*/
txData: string;
/**
* Withdrawal ID to be completed by transaction broadcast
* @type {string}
* @memberof BroadcastWithdrawal
*/
withdrawalId?: string;
/**
* Signature ID to be completed by transaction broadcast
* This signatureID is the database blockchainSignature Id
* @type {string}
* @memberof BroadcastWithdrawal
*/
signatureId?: string;
}