UNPKG

@solarity/hardhat-gobind

Version:

Generation of smart contract bindings for Golang

15 lines (12 loc) 324 B
export interface DlGoBindConfig { outdir: string; deployable: boolean; runOnCompile: boolean; abigenVersion: abigenVersionType; verbose: boolean; onlyFiles: string[]; skipFiles: string[]; abigenPath: string; } export type DlGoBindUserConfig = Partial<DlGoBindConfig>; type abigenVersionType = "v1" | "v2";