github.com/jimmyx0x/go-ethereum@v1.10.28/common/compiler/helpers.go (about)

     1  // Copyright 2019 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  // Package compiler wraps the Solidity and Vyper compiler executables (solc; vyper).
    18  package compiler
    19  
    20  // Contract contains information about a compiled contract, alongside its code and runtime code.
    21  type Contract struct {
    22  	Code        string            `json:"code"`
    23  	RuntimeCode string            `json:"runtime-code"`
    24  	Info        ContractInfo      `json:"info"`
    25  	Hashes      map[string]string `json:"hashes"`
    26  }
    27  
    28  // ContractInfo contains information about a compiled contract, including access
    29  // to the ABI definition, source mapping, user and developer docs, and metadata.
    30  //
    31  // Depending on the source, language version, compiler version, and compiler
    32  // options will provide information about how the contract was compiled.
    33  type ContractInfo struct {
    34  	Source          string      `json:"source"`
    35  	Language        string      `json:"language"`
    36  	LanguageVersion string      `json:"languageVersion"`
    37  	CompilerVersion string      `json:"compilerVersion"`
    38  	CompilerOptions string      `json:"compilerOptions"`
    39  	SrcMap          interface{} `json:"srcMap"`
    40  	SrcMapRuntime   string      `json:"srcMapRuntime"`
    41  	AbiDefinition   interface{} `json:"abiDefinition"`
    42  	UserDoc         interface{} `json:"userDoc"`
    43  	DeveloperDoc    interface{} `json:"developerDoc"`
    44  	Metadata        string      `json:"metadata"`
    45  }