import { ChainsInterface } from "../interfaces"; type stringMappingType = { [key: string]: string; }; type numberMappingType = { [key: number]: string; }; type stringToNumberMappingType = { [key: string]: number; }; export declare const rpcUrls: stringMappingType; export declare const explorerApiUrls: stringMappingType; export declare const blockchainNameFromChainId: numberMappingType; export declare enum ChainIds { ETH = 1, BSC = 56, POLYGON = 137 } export declare const CHAINS_NAMES: stringToNumberMappingType; export declare const multicallAddresses: { eth: string; bsc: string; polygon: string; }; export declare const interfaceIds: { erc20: string; erc721: string; erc1155: string; }; export declare const TRANSFER_TOPICS: { ERC20: string; ERC721: string; ERC1155SafeTransferFrom: string; ERC1155SafeBatchTransferFrom: string; }; export declare const EIP155_SIGNING_METHODS: { PERSONAL_SIGN: string; ETH_SIGN: string; ETH_SIGN_TRANSACTION: string; ETH_SIGN_TYPED_DATA: string; ETH_SIGN_TYPED_DATA_V3: string; ETH_SIGN_TYPED_DATA_V4: string; ETH_SEND_RAW_TRANSACTION: string; ETH_SEND_TRANSACTION: string; }; export declare const CHAINS: ChainsInterface; export {};