export type AuctionsHistory = {
    txhash?: string | null;
    senderaddress?: string | null;
    bidamount?: number;
    created?: string;
    state?: string | null;
    returntxhash?: string | null;
};
