export type ResponseCollectionsData = { data: Array; total: number; page: number; pageSize: number; } export type Collection = { created_at: number; creator: string; current_supply: number; description: string; holders: string; id: string; last_transaction_hash: string; last_transaction_version: number; max_supply: number; name: string; royalty?: { payee_address: string; percent: string; }; transfers: string; total_minted: number; uri: string; } export type CollectionHistory = { from: string; to: string; timestamp: number; token: { id: string; index: number; name: string; uri: string; }; type: string; version: number; } export type CollectionHolder = { address: string; balance: string; }