UNPKG

@admin-jigsaw/jigsaw-sdk

Version:

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

14 lines (13 loc) 288 B
import { Address } from "viem"; export type Coin = { name: string; symbol: string; icon: string; address: Address | null; id: string; decimals?: number; }; export declare const COLLATERALS: { [key: string]: Coin; }; export declare const SYMBOLS_ALL: string[];