@celo-tools/celo-ethers-wrapper
Version:
A minimal wrapper to make Ethers.JS compatible with the Celo network.
7 lines (6 loc) • 317 B
TypeScript
import { BlockTag, EtherscanProvider, Networkish } from "ethers";
export declare class CeloscanProvider extends EtherscanProvider {
constructor(networkish?: Networkish, apiKey?: string);
getBaseUrl(): string;
getHistory(address: string, startBlock?: BlockTag, endBlock?: BlockTag): Promise<Array<any>>;
}