export type BuyerInfo = {
    auctionAddress: string;
    buyerAddress: string;
    participated: boolean;
    claimed: boolean;
    whitelisted: boolean;
    blacklisted: boolean;
};
