0xweb
Version:
Contract package manager and other web3 tools
10 lines (7 loc) • 305 B
text/typescript
import { TAddress } from '@dequanto/models/TAddress';
import { TPlatform } from '@dequanto/models/TPlatform';
export interface ITokenProvider {
getByAddress (platform: TPlatform, address: TAddress)
getBySymbol (platform: TPlatform, symbol: string)
redownloadTokens(): Promise<void | any>
}