Documentation ¶
Overview ¶
Package compiler wraps the Solidity compiler executable (solc).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CompileSolidity ¶
CompileSolidity compiles all given Solidity source files.
func CompileSolidityString ¶
CompileSolidityString builds and returns all the contracts contained within a source string.
Types ¶
type Contract ¶
type Contract struct { Code string `json:"code"` Info ContractInfo `json:"info"` }
type ContractInfo ¶
type ContractInfo struct { Source string `json:"source"` Language string `json:"language"` LanguageVersion string `json:"languageVersion"` CompilerVersion string `json:"compilerVersion"` CompilerOptions string `json:"compilerOptions"` AbiDefinition interface{} `json:"abiDefinition"` UserDoc interface{} `json:"userDoc"` DeveloperDoc interface{} `json:"developerDoc"` }
Click to show internal directories.
Click to hide internal directories.