UNPKG

@melonproject/token-math

Version:

A small helper library to do precision safe calculations

9 lines (8 loc) 203 B
interface TokenInterface { readonly symbol: string; readonly address?: string; readonly decimals: number; readonly name?: string; [key: string]: any; } export default TokenInterface;