export interface IBucket {
    active: boolean;
    createdAt: number;
    id: string;
    tokenId: string;
    updatedAt: number;
}
