Requests that the user track the specified token in NeoLine. Returns a boolean indicating if the token was successfully added. Introduced by .
Params
interface WatchAssetParameters {
type: string // The asset's interface, e.g. 'ERC20'
options: {
address: string // The hexadecimal Ethereum address of the token contract
symbol?: string // A ticker symbol or shorthand, up to 5 alphanumerical characters
decimals?: number // The number of asset decimals
image?: string // A string url of the token logo
}
}