← back to Wine Finder Next
src/data/topAuctionWines.ts
68 lines
/**
* Top Auction Wines - Premium brands frequently available at auctions
* Organized by category for easy discovery
*/
export interface TopWine {
name: string;
brand: string;
category: 'Ultra-Premium' | 'Premium Napa' | 'Premium Bordeaux' | 'Champagne' | 'Cult Wines';
avgAuctionPrice: string;
region: string;
}
export const TOP_AUCTION_WINES: TopWine[] = [
// Ultra-Premium Cult Wines
{ name: 'Screaming Eagle', brand: 'Screaming Eagle', category: 'Ultra-Premium', avgAuctionPrice: '$2,500-$4,000', region: 'Napa Valley' },
{ name: 'Harlan Estate', brand: 'Harlan Estate', category: 'Ultra-Premium', avgAuctionPrice: '$600-$1,200', region: 'Napa Valley' },
{ name: 'Dominus', brand: 'Dominus Estate', category: 'Ultra-Premium', avgAuctionPrice: '$150-$300', region: 'Napa Valley' },
// Premium Napa Cabernets
{ name: 'Opus One', brand: 'Opus One', category: 'Premium Napa', avgAuctionPrice: '$250-$450', region: 'Napa Valley' },
{ name: 'Caymus Cabernet', brand: 'Caymus', category: 'Premium Napa', avgAuctionPrice: '$80-$150', region: 'Napa Valley' },
{ name: 'Silver Oak Alexander Valley', brand: 'Silver Oak', category: 'Premium Napa', avgAuctionPrice: '$100-$180', region: 'Alexander Valley' },
{ name: 'Stags Leap Artemis', brand: "Stag's Leap", category: 'Premium Napa', avgAuctionPrice: '$70-$120', region: 'Napa Valley' },
{ name: 'Joseph Phelps Insignia', brand: 'Joseph Phelps', category: 'Premium Napa', avgAuctionPrice: '$150-$280', region: 'Napa Valley' },
{ name: 'Shafer Hillside Select', brand: 'Shafer', category: 'Premium Napa', avgAuctionPrice: '$200-$350', region: 'Napa Valley' },
{ name: 'Ridge Monte Bello', brand: 'Ridge', category: 'Premium Napa', avgAuctionPrice: '$130-$220', region: 'Santa Cruz Mountains' },
// Premium Bordeaux
{ name: 'Château Margaux', brand: 'Château Margaux', category: 'Premium Bordeaux', avgAuctionPrice: '$400-$800', region: 'Bordeaux' },
{ name: 'Château Lafite Rothschild', brand: 'Lafite Rothschild', category: 'Premium Bordeaux', avgAuctionPrice: '$500-$1,000', region: 'Pauillac' },
{ name: 'Château Latour', brand: 'Château Latour', category: 'Premium Bordeaux', avgAuctionPrice: '$450-$900', region: 'Pauillac' },
{ name: 'Château Mouton Rothschild', brand: 'Mouton Rothschild', category: 'Premium Bordeaux', avgAuctionPrice: '$400-$750', region: 'Pauillac' },
// Champagne
{ name: 'Dom Pérignon', brand: 'Dom Pérignon', category: 'Champagne', avgAuctionPrice: '$180-$350', region: 'Champagne, France' },
{ name: 'Krug Grande Cuvée', brand: 'Krug', category: 'Champagne', avgAuctionPrice: '$200-$400', region: 'Champagne, France' },
{ name: 'Louis Roederer Cristal', brand: 'Louis Roederer', category: 'Champagne', avgAuctionPrice: '$250-$500', region: 'Champagne, France' },
// Other Cult Wines
{ name: 'Penfolds Grange', brand: 'Penfolds', category: 'Cult Wines', avgAuctionPrice: '$300-$600', region: 'South Australia' },
{ name: 'Sassicaia', brand: 'Tenuta San Guido', category: 'Cult Wines', avgAuctionPrice: '$150-$300', region: 'Tuscany, Italy' },
{ name: 'Ornellaia', brand: 'Ornellaia', category: 'Cult Wines', avgAuctionPrice: '$120-$250', region: 'Tuscany, Italy' },
];
// Top 10 by auction frequency and arbitrage potential
export const TOP_10_AUCTION_WINES = [
'Caymus Cabernet',
'Opus One',
'Silver Oak',
'Dom Pérignon',
'Screaming Eagle',
'Château Margaux',
'Joseph Phelps Insignia',
'Shafer Hillside Select',
'Penfolds Grange',
'Harlan Estate',
];
// Group by brand for quick access
export const WINES_BY_BRAND = TOP_AUCTION_WINES.reduce((acc, wine) => {
if (!acc[wine.brand]) {
acc[wine.brand] = [];
}
acc[wine.brand].push(wine);
return acc;
}, {} as Record<string, TopWine[]>);