UNPKG

pharos-agent-kit

Version:
14 lines 670 B
/** * Find the closest matching slug for a given ticker or name * @param ticker - The ticker or name to match against available slugs * @param category - The category to search in ("protocol" or "network") * @returns The best matching slug or empty string if no match found */ export declare function getSlugMatch(ticker: string, category: "protocol" | "network"): string[]; /** * Get Total Value Locked (TVL) for a specific protocol * @param slug - The protocol slug identifier * @returns Promise with TVL information as a formatted string */ export declare function getProtocolTvl(slug: string): Promise<string>; //# sourceMappingURL=get_protocol_tvl.d.ts.map