/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ import { FetchTokenTxResult, FetchTokenTxs } from '../../../main/erc20/interface'; export declare const ERC20_ABI: ({ constant: boolean; inputs: { name: string; type: string; }[]; name: string; outputs: { name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; anonymous?: undefined; } | { payable: boolean; stateMutability: string; type: string; constant?: undefined; inputs?: undefined; name?: undefined; outputs?: undefined; anonymous?: undefined; } | { anonymous: boolean; inputs: { indexed: boolean; name: string; type: string; }[]; name: string; type: string; constant?: undefined; outputs?: undefined; payable?: undefined; stateMutability?: undefined; })[]; export declare const KIP_ABI: ({ constant: boolean; inputs: { name: string; type: string; }[]; name: string; outputs: { name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; anonymous?: undefined; } | { inputs: { name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; constant?: undefined; name?: undefined; outputs?: undefined; anonymous?: undefined; } | { anonymous: boolean; inputs: { indexed: boolean; name: string; type: string; }[]; name: string; type: string; constant?: undefined; outputs?: undefined; payable?: undefined; stateMutability?: undefined; })[]; export declare const SINGLE_CALL_BALANCES_ADDRESS = "0xb1f8e55c7f64d203c1400b9d8555d050f94adf39"; export declare const SINGLE_CALL_BALANCES_ADDRESS_RINKEBY = "0x9f510b19f1ad66f0dcf6e45559fab0d6752c1db7"; export declare const SINGLE_CALL_BALANCES_ADDRESS_ROPSTEN = "0xb8e671734ce5c8d7dfbbea5574fa4cf39f7a54a4"; export declare const SINGLE_CALL_BALANCES_ADDRESS_KOVAN = "0xb1d3fbb2f83aecd196f474c16ca5d9cffa0d0ffc"; export declare const SINGLE_CALL_BALANCES_ABI: ({ constant: boolean; inputs: { name: string; type: string; }[]; name: string; outputs: { name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; } | { payable: boolean; stateMutability: string; type: string; constant?: undefined; inputs?: undefined; name?: undefined; outputs?: undefined; })[]; declare const _default: { fetchTokenTxsFromEtherscan: (dto: FetchTokenTxs) => Promise; fetchKlaytnTokenTxs: (address: string, chainId: number, contractAddress: string, fromTimestamp: number) => Promise; getAbi: (contractAddress: string, url: string, chainId: number) => Promise; }; export default _default;