Interface MarketplaceFloorPrices

interface MarketplaceFloorPrices {
    bestMarketplace: string;
    lowestPrice: number;
    mint: string;
    priceDifference: number;
    prices: {
        marketplace: string;
        price: number;
        url: string;
    }[];
    savings: number;
}

Properties

bestMarketplace: string
lowestPrice: number
mint: string
priceDifference: number
prices: {
    marketplace: string;
    price: number;
    url: string;
}[]
savings: number