UNPKG

@admin-jigsaw/jigsaw-sdk

Version:

Returns predefined data for Jigsaw platform and exposes functionality to retrieve the necessary data

47 lines (46 loc) 1.12 kB
import { Address } from "viem"; import { PendleStrategies } from "../../types/types"; export declare const PROTOCOLS_DATA: { [p: string]: { name: string; icon: string; }; }; export declare const AAVE_STRATEGIES: { [key: string]: { stratAddress: Address; }; }; export declare const NUCLEUS_STRATEGIES: { [key: string]: { [key: string]: { stratAddress: Address; pairSymbol: string; }; }; }; export declare const RESERVOIR_STRATEGIES: { [key: string]: { apy: string; stratAddress: Address; }; }; export declare const DINERO_STRATEGIES: { [key: string]: { apy: string; stratAddress: Address; }; }; export declare const PENDLE_STRATEGIES: PendleStrategies; export declare const generateProtocolStrategyMap: () => { [protocol: string]: string[]; }; export declare const PROTOCOLS_ASSETS: { name: string; icon: string; assets: string[]; }[]; export declare const PROTOCOL_STRATEGY_MAP: { [protocol: string]: string[]; }; export declare const PENDLE_MARKETS: string[];