UNPKG

@solarity/hardhat-migrate

Version:
21 lines 532 B
/** * Source: https://github.com/OpenZeppelin/openzeppelin-upgrades */ /** * The response body from an Etherscan API call. */ interface EtherscanResponseBody { status: string; message: string; result: any; } export declare const RESPONSE_OK = "1"; /** * Call the configured Etherscan API with the given parameters. */ export declare function callEtherscanApi(instance: { apiUrl: string; apiKey: string; }, params: any): Promise<EtherscanResponseBody>; export {}; //# sourceMappingURL=etherscan-api.d.ts.map