aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorAntonio Salazar Cardozo <savedfastcool@gmail.com>2018-06-05 18:22:02 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-06-05 18:22:02 +0800
commit4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64 (patch)
tree1f591dcd56056315203a26a60cd087624bef8a4d /cmd
parent0029a869f04e9beb6741e591ebde07327458e64f (diff)
downloadgo-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar.gz
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar.bz2
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar.lz
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar.xz
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.tar.zst
go-tangerine-4cf2b4110e9942bdcba1b9b1d82b3ca8ff552f64.zip
cmd/abigen: support for reading solc output from stdin (#16683)
Allow the --abi flag to be given - to indicate that it should read the ABI information from standard input. It expects to read the solc output with the --combined-json flag providing bin, abi, userdoc, devdoc, and metadata, and works very similarly to the internal invocation of solc, except it allows external invocation of solc. This facilitates integration with more complex solc invocations, such as invocations that require path remapping or --allow-paths tweaks. Simple usage example: solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
Diffstat (limited to 'cmd')
-rw-r--r--cmd/abigen/main.go32
1 files changed, 26 insertions, 6 deletions
diff --git a/cmd/abigen/main.go b/cmd/abigen/main.go
index 3a1ae6f4c..3ac37ba7a 100644
--- a/cmd/abigen/main.go
+++ b/cmd/abigen/main.go
@@ -29,7 +29,7 @@ import (
)
var (
- abiFlag = flag.String("abi", "", "Path to the Ethereum contract ABI json to bind")
+ abiFlag = flag.String("abi", "", "Path to the Ethereum contract ABI json to bind, - for STDIN")
binFlag = flag.String("bin", "", "Path to the Ethereum contract bytecode (generate deploy method)")
typFlag = flag.String("type", "", "Struct name for the binding (default = package name)")
@@ -75,16 +75,27 @@ func main() {
bins []string
types []string
)
- if *solFlag != "" {
+ if *solFlag != "" || *abiFlag == "-" {
// Generate the list of types to exclude from binding
exclude := make(map[string]bool)
for _, kind := range strings.Split(*excFlag, ",") {
exclude[strings.ToLower(kind)] = true
}
- contracts, err := compiler.CompileSolidity(*solcFlag, *solFlag)
- if err != nil {
- fmt.Printf("Failed to build Solidity contract: %v\n", err)
- os.Exit(-1)
+
+ var contracts map[string]*compiler.Contract
+ var err error
+ if *solFlag != "" {
+ contracts, err = compiler.CompileSolidity(*solcFlag, *solFlag)
+ if err != nil {
+ fmt.Printf("Failed to build Solidity contract: %v\n", err)
+ os.Exit(-1)
+ }
+ } else {
+ contracts, err = contractsFromStdin()
+ if err != nil {
+ fmt.Printf("Failed to read input ABIs from STDIN: %v\n", err)
+ os.Exit(-1)
+ }
}
// Gather all non-excluded contract for binding
for name, contract := range contracts {
@@ -138,3 +149,12 @@ func main() {
os.Exit(-1)
}
}
+
+func contractsFromStdin() (map[string]*compiler.Contract, error) {
+ bytes, err := ioutil.ReadAll(os.Stdin)
+ if err != nil {
+ return nil, err
+ }
+
+ return compiler.ParseCombinedJSON(bytes, "", "", "", "")
+}