export type Auction = {
    domain: string;
    owner: string;
    price: number;
    bids: number;
    date: number;
};
