Interface YieldOpportunity

interface YieldOpportunity {
    apy: number;
    pool: string;
    protocol: string;
    risk: "low" | "medium" | "high";
    tokens: string[];
    tvl: number;
    url?: string;
}

Properties

apy: number
pool: string
protocol: string
risk: "low" | "medium" | "high"
tokens: string[]
tvl: number
url?: string