UNPKG

@bombearn/sdk

Version:

Interaction framework for the yearn protocol

17 lines (16 loc) 494 B
import { Address, TypedMap } from "../common"; /** * An URL pointing to an image/png file. */ export declare type Icon = string | undefined; export declare type IconMap<T extends Address> = TypedMap<T, Icon>; export interface Alias { name: string; symbol: string; address: Address; } export declare type AliasMap<T extends Address> = TypedMap<T, Alias>; export interface AssetServiceState { supported: Map<Address, string>; aliases: Map<Address, Alias>; }