helpers.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. // Package compiler wraps the Solidity and Vyper compiler executables (solc; vyper).
  17. package compiler
  18. // Contract contains information about a compiled contract, alongside its code and runtime code.
  19. type Contract struct {
  20. Code string `json:"code"`
  21. RuntimeCode string `json:"runtime-code"`
  22. Info ContractInfo `json:"info"`
  23. Hashes map[string]string `json:"hashes"`
  24. }
  25. // ContractInfo contains information about a compiled contract, including access
  26. // to the ABI definition, source mapping, user and developer docs, and metadata.
  27. //
  28. // Depending on the source, language version, compiler version, and compiler
  29. // options will provide information about how the contract was compiled.
  30. type ContractInfo struct {
  31. Source string `json:"source"`
  32. Language string `json:"language"`
  33. LanguageVersion string `json:"languageVersion"`
  34. CompilerVersion string `json:"compilerVersion"`
  35. CompilerOptions string `json:"compilerOptions"`
  36. SrcMap interface{} `json:"srcMap"`
  37. SrcMapRuntime string `json:"srcMapRuntime"`
  38. AbiDefinition interface{} `json:"abiDefinition"`
  39. UserDoc interface{} `json:"userDoc"`
  40. DeveloperDoc interface{} `json:"developerDoc"`
  41. Metadata string `json:"metadata"`
  42. }