@simbachain/hardhat
Version:
Simba Chain plugin for hardhat
11 lines • 767 B
TypeScript
import { HardhatRuntimeEnvironment } from "hardhat/types";
/**
* export contract to simbachain.com (can also be thought of as "importing" contract to simbachain.com)
* @param hre - hre is optional here to make testing more convenient
* @param interactive - export from prompts if true
* @param primary - optional param specifying which contract to export. if not present, contract is selected from prompts
* @param savemode - if 'new' we do a post request for new contract design; if 'update' we do a put request and update contract design
* @returns
*/
export declare const exportContract: (hre?: HardhatRuntimeEnvironment, interactive?: boolean, primary?: string, savemode?: string) => Promise<Error | undefined>;
//# sourceMappingURL=exportcontract.d.ts.map