/**
 *
 * The HashData structure describes basic information for a hash data.
 */
export interface HashData {
    /**
     * Transaction hash
     */
    readonly data?: string;
}
