import { Collection } from "./Collection"; export type NFTData = { id: string; name: string; index: number; collection?: Collection; description: string; uri: string; owner: string; properties: Record; } export type ResponseNFTsData = { data: Array; total: number; page: number; pageSize: number; } export type NFTActivitiesData = { version: number; type: string; from: string | null; to: string | null; timestamp: number; } export type ResponseNFTActivitiesData = { data: Array; total: number; page: number; pageSize: number; } export type NFTSTotalData = { total_collections: string; total_holders: string; total_nfts: string; total_transfers: string; }