@solarity/hardhat-migrate
Version:
The simplest way to deploy smart contracts
21 lines • 532 B
TypeScript
/**
* 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