UNPKG

@renex/renex

Version:

The official RenEx Software Development Kit in typescript.

5 lines (4 loc) 291 B
import RenExSDK from "../index"; import { BalanceDetails, TokenDetails } from "../types"; export declare const getTokenDetails: (sdk: RenExSDK, token: string) => Promise<TokenDetails>; export declare const balances: (sdk: RenExSDK, tokens: string[]) => Promise<Map<string, BalanceDetails>>;