constructor(chainId: ChainId, address: string, decimals: number, symbol?: string, name?: string)
The Token entity represents an ERC-20 token at a specific address on a specific chain.
import { ChainId, Token } from '@materia/sdk'const token = new Token(ChainId.MAINNET, '0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8', 18, 'WUSD', 'Wrapped USD')
chainId: ChainId
See ChainId.
address: string
decimals: number
symbol?: string
name?: string
equals(other: Token): boolean
Checks if the current instance is equal to another (has an identical chainId and address).
sortsBefore(other: Token): boolean
Checks if the current instance sorts before another, by address.