UNPKG

deployment-tool

Version:

Tool to deploy and upgrade contracts on Ethereum Mainnet

12 lines 725 B
export declare const runCommand: (command: string) => Promise<boolean>; export declare const compileContract: (env: any) => Promise<boolean>; export declare const etherscanVerifyContract: (env: any, contractAddress: string) => Promise<boolean>; export declare const addToCommit: (filesToCommit: string) => Promise<boolean>; export declare const getLastCommit: () => Promise<{ success: boolean; commitId: string; }>; export declare const commitChanges: (commitComment: string, commitDescription: string, filesToCommit: string) => Promise<boolean>; export declare const pullFromGit: () => Promise<boolean>; export declare const pushToGit: (filesToCommit: string) => Promise<boolean>; //# sourceMappingURL=utils.d.ts.map