import { EthereumProtocol } from '../../EthereumProtocol'; import { EthereumTransactionCursor, EthereumTransactionResult } from '../../EthereumTypes'; import { EthereumInfoClient } from './InfoClient'; export declare class EtherscanInfoClient extends EthereumInfoClient { constructor(baseURL?: string); fetchTransactions(protocol: EthereumProtocol, address: string, limit: any, cursor?: EthereumTransactionCursor): Promise; fetchContractTransactions(protocol: EthereumProtocol, contractAddress: string, address: string, limit: number, cursor?: EthereumTransactionCursor): Promise; }