From 3246b8d44f85456864680c74d5d787423f058ba6 Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Thu, 23 Jun 2022 11:24:33 +0800 Subject: [PATCH] Update native-bindings.md --- docs/_dapp/native-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_dapp/native-bindings.md b/docs/_dapp/native-bindings.md index 29759c51fe..e7e1457fe7 100644 --- a/docs/_dapp/native-bindings.md +++ b/docs/_dapp/native-bindings.md @@ -352,7 +352,7 @@ $ abigen --combined-json combined.json --pkg main --type token --out token.go Even you can combine these two steps together as a pipeline ``` -solc token.sol --combined-json abi,bin | abigen --pkg contract --out contract.go --combined-json - +solc token.sol --combined-json abi,bin | abigen --pkg main --type token --out token.go --combined-json - ``` ### Project integration (i.e. `go generate`)