/**
 *
 * @export
 * @interface TransactionHash
 */
export interface TransactionHash {
    /**
     * TX hash of successful transaction.
     * @type {string}
     * @memberof TransactionHash
     */
    txId: string;
}
