import { Locales } from "../CoinGecko"; import { ContractAddress, MilkomedaNetworkID } from "../primitives"; export declare type TokenInfoRequest = { contractAddress: ContractAddress; locale: Locales; networkID: MilkomedaNetworkID; }; export declare type TokenInfoResponse = { /** * @example "Wrapped ADA" */ name?: string; /** * @example 18 */ decimals?: number; /** * @example "WADA" */ ticker?: string; /** * @example "ADA Wrapped on the milkomeda EVM chain" */ description?: string; contract: ContractAddress; /** * @example "https://explorer-mainnet-cardano-evm.c1.milkomeda.com/address/0xae83571000af4499798d1e3b0fa0070eb3a3e3f9/transactions" */ url?: string; /** * @example "https://assets.coingecko.com/coins/images/24791/thumb/ezgif-2-07900fc0ac.jpg?1648922062" */ logo?: string; /** * The token standard type. * @example "ERC-20" */ type?: TokenType; }; export declare type BlockScoutTokenResponse = { message: string; result: { cataloged: boolean; contractAddress: ContractAddress; decimals: string; name: string; symbol: string; totalSupply: string; type: TokenType; }; status: "0" | "1"; }; declare type TokenType = "ERC-20" | "ERC-721"; export {};