import { ChainId, Token } from '@warpgatex/warp-sdk-core'; import { ICache } from './cache'; import { ProviderConfig } from './provider'; import { ITokenFeeFetcher, TokenFeeResult } from './token-fee-fetcher'; import { TokenValidationResult } from './token-validator-provider'; export declare const DEFAULT_TOKEN_PROPERTIES_RESULT: TokenPropertiesResult; export declare const POSITIVE_CACHE_ENTRY_TTL = 600; export declare const NEGATIVE_CACHE_ENTRY_TTL = 600; declare type Address = string; export declare type TokenPropertiesResult = { tokenFeeResult?: TokenFeeResult; tokenValidationResult?: TokenValidationResult; }; export declare type TokenPropertiesMap = Record
; export interface ITokenPropertiesProvider { getTokensProperties(tokens: Token[], providerConfig?: ProviderConfig): Promise