2018-02-09 16:08:50 +00:00
|
|
|
package smartcontract
|
|
|
|
|
|
|
|
import (
|
2018-10-16 06:33:29 +00:00
|
|
|
"bufio"
|
|
|
|
"bytes"
|
2018-03-05 08:53:09 +00:00
|
|
|
"context"
|
|
|
|
"encoding/hex"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2018-08-25 14:40:15 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-03-11 18:11:51 +00:00
|
|
|
"strings"
|
|
|
|
"syscall"
|
2018-03-05 08:53:09 +00:00
|
|
|
|
2019-11-20 09:29:37 +00:00
|
|
|
"github.com/go-yaml/yaml"
|
2020-03-11 18:11:51 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/cli/flags"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/compiler"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
2020-03-11 18:11:51 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/client"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/request"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response/result"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
2020-03-11 18:11:51 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/wallet"
|
2019-10-29 09:56:44 +00:00
|
|
|
"github.com/pkg/errors"
|
2018-02-09 16:08:50 +00:00
|
|
|
"github.com/urfave/cli"
|
2020-03-11 18:11:51 +00:00
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
2018-02-09 16:08:50 +00:00
|
|
|
)
|
|
|
|
|
2018-08-25 14:40:15 +00:00
|
|
|
var (
|
2019-10-29 13:32:49 +00:00
|
|
|
errNoEndpoint = errors.New("no RPC endpoint specified, use option '--endpoint' or '-e'")
|
2019-10-18 15:34:58 +00:00
|
|
|
errNoInput = errors.New("no input file was found, specify an input file with the '--in or -i' flag")
|
2019-11-20 13:07:43 +00:00
|
|
|
errNoConfFile = errors.New("no config file was found, specify a config file with the '--config' or '-c' flag")
|
2020-04-13 08:19:37 +00:00
|
|
|
errNoMethod = errors.New("no method specified for function invocation command")
|
2020-03-11 18:11:51 +00:00
|
|
|
errNoWallet = errors.New("no wallet parameter found, specify it with the '--wallet or -w' flag")
|
2019-11-27 09:52:15 +00:00
|
|
|
errNoScriptHash = errors.New("no smart contract hash was provided, specify one as the first argument")
|
2019-10-18 15:34:58 +00:00
|
|
|
errNoSmartContractName = errors.New("no name was provided, specify the '--name or -n' flag")
|
2018-08-25 14:40:15 +00:00
|
|
|
errFileExist = errors.New("A file with given smart-contract name already exists")
|
2019-11-29 15:16:46 +00:00
|
|
|
|
|
|
|
endpointFlag = cli.StringFlag{
|
|
|
|
Name: "endpoint, e",
|
|
|
|
Usage: "trusted RPC endpoint address (like 'http://localhost:20331')",
|
|
|
|
}
|
2020-03-11 18:11:51 +00:00
|
|
|
walletFlag = cli.StringFlag{
|
|
|
|
Name: "wallet, w",
|
|
|
|
Usage: "wallet to use to get the key for transaction signing",
|
|
|
|
}
|
|
|
|
addressFlag = flags.AddressFlag{
|
|
|
|
Name: "address, a",
|
|
|
|
Usage: "address to use as transaction signee (and gas source)",
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
2020-03-12 16:41:54 +00:00
|
|
|
gasFlag = flags.Fixed8Flag{
|
2019-11-29 15:59:55 +00:00
|
|
|
Name: "gas, g",
|
2020-03-11 17:32:06 +00:00
|
|
|
Usage: "gas to add to the transaction",
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
2018-08-25 14:40:15 +00:00
|
|
|
)
|
|
|
|
|
2019-11-29 15:11:49 +00:00
|
|
|
const (
|
2018-08-25 14:40:15 +00:00
|
|
|
// smartContractTmpl is written to a file when used with `init` command.
|
|
|
|
// %s is parsed to be the smartContractName
|
|
|
|
smartContractTmpl = `package %s
|
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
2018-08-25 14:40:15 +00:00
|
|
|
|
|
|
|
func Main(op string, args []interface{}) {
|
|
|
|
runtime.Notify("Hello world!")
|
|
|
|
}`
|
2018-02-24 09:10:45 +00:00
|
|
|
)
|
|
|
|
|
2019-10-19 20:58:45 +00:00
|
|
|
// NewCommands returns 'contract' command.
|
|
|
|
func NewCommands() []cli.Command {
|
|
|
|
return []cli.Command{{
|
2018-02-09 16:08:50 +00:00
|
|
|
Name: "contract",
|
|
|
|
Usage: "compile - debug - deploy smart contracts",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
{
|
|
|
|
Name: "compile",
|
|
|
|
Usage: "compile a smart contract to a .avm file",
|
|
|
|
Action: contractCompile,
|
2018-02-15 15:35:49 +00:00
|
|
|
Flags: []cli.Flag{
|
2018-02-24 09:10:45 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
|
|
|
Usage: "Input file for the smart contract to be compiled",
|
|
|
|
},
|
2018-02-15 15:35:49 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "out, o",
|
|
|
|
Usage: "Output of the compiled contract",
|
|
|
|
},
|
2018-03-25 16:21:00 +00:00
|
|
|
cli.BoolFlag{
|
2020-04-06 12:32:06 +00:00
|
|
|
Name: "verbose, v",
|
|
|
|
Usage: "Print out additional information after a compiling",
|
2018-03-25 16:21:00 +00:00
|
|
|
},
|
2020-04-02 12:38:53 +00:00
|
|
|
cli.StringFlag{
|
2020-04-08 10:11:44 +00:00
|
|
|
Name: "debug, d",
|
2020-04-02 12:38:53 +00:00
|
|
|
Usage: "Emit debug info in a separate file",
|
|
|
|
},
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "abi, a",
|
|
|
|
Usage: "Emit application binary interface (.abi.json) file into separate file using configuration input file (*.yml)",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Usage: "Configuration input file (*.yml)",
|
|
|
|
},
|
2018-02-15 15:35:49 +00:00
|
|
|
},
|
2018-02-09 16:08:50 +00:00
|
|
|
},
|
2019-11-20 13:07:43 +00:00
|
|
|
{
|
2020-03-11 17:32:06 +00:00
|
|
|
Name: "deploy",
|
|
|
|
Usage: "deploy a smart contract (.avm with description)",
|
|
|
|
Description: `Deploys given contract into the chain. The gas parameter is for additional
|
|
|
|
gas to be added as a network fee to prioritize the transaction. It may also
|
|
|
|
be required to add that to satisfy chain's policy regarding transaction size
|
|
|
|
and the minimum size fee (so if transaction send fails, try adding 0.001 GAS
|
|
|
|
to it).
|
|
|
|
`,
|
2019-11-20 13:07:43 +00:00
|
|
|
Action: contractDeploy,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
|
|
|
Usage: "Input file for the smart contract (*.avm)",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Usage: "configuration input file (*.yml)",
|
|
|
|
},
|
2019-11-29 15:16:46 +00:00
|
|
|
endpointFlag,
|
2020-03-11 18:11:51 +00:00
|
|
|
walletFlag,
|
|
|
|
addressFlag,
|
2019-11-29 15:59:55 +00:00
|
|
|
gasFlag,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "invoke",
|
|
|
|
Usage: "invoke deployed contract on the blockchain",
|
2020-03-11 18:11:51 +00:00
|
|
|
UsageText: "neo-go contract invoke -e endpoint -w wallet [-a address] [-g gas] scripthash [arguments...]",
|
2019-11-29 15:59:55 +00:00
|
|
|
Description: `Executes given (as a script hash) deployed script with the given arguments.
|
|
|
|
See testinvoke documentation for the details about parameters. It differs
|
|
|
|
from testinvoke in that this command sends an invocation transaction to
|
|
|
|
the network.
|
|
|
|
`,
|
|
|
|
Action: invoke,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
endpointFlag,
|
2020-03-11 18:11:51 +00:00
|
|
|
walletFlag,
|
|
|
|
addressFlag,
|
2019-11-29 15:59:55 +00:00
|
|
|
gasFlag,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "invokefunction",
|
|
|
|
Usage: "invoke deployed contract on the blockchain",
|
2020-03-11 18:11:51 +00:00
|
|
|
UsageText: "neo-go contract invokefunction -e endpoint -w wallet [-a address] [-g gas] scripthash [method] [arguments...]",
|
2019-11-29 15:59:55 +00:00
|
|
|
Description: `Executes given (as a script hash) deployed script with the given method and
|
|
|
|
and arguments. See testinvokefunction documentation for the details about
|
|
|
|
parameters. It differs from testinvokefunction in that this command sends an
|
|
|
|
invocation transaction to the network.
|
|
|
|
`,
|
|
|
|
Action: invokeFunction,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
endpointFlag,
|
2020-03-11 18:11:51 +00:00
|
|
|
walletFlag,
|
|
|
|
addressFlag,
|
2019-11-29 15:59:55 +00:00
|
|
|
gasFlag,
|
2019-11-20 13:07:43 +00:00
|
|
|
},
|
|
|
|
},
|
2019-11-28 16:40:13 +00:00
|
|
|
{
|
|
|
|
Name: "testinvoke",
|
|
|
|
Usage: "invoke deployed contract on the blockchain (test mode)",
|
|
|
|
UsageText: "neo-go contract testinvoke -e endpoint scripthash [arguments...]",
|
|
|
|
Description: `Executes given (as a script hash) deployed script with the given arguments.
|
|
|
|
It's very similar to the tesinvokefunction command, but differs in the way
|
|
|
|
arguments are being passed. This invoker does not accept method parameter
|
|
|
|
and it passes all given parameters as plain values to the contract, not
|
|
|
|
wrapping them them into array like testinvokefunction does. For arguments
|
|
|
|
syntax please refer to the testinvokefunction command help.
|
|
|
|
|
|
|
|
Most of the time (if your contract follows the standard convention of
|
|
|
|
method with array of values parameters) you want to use testinvokefunction
|
|
|
|
command instead of testinvoke.
|
|
|
|
`,
|
|
|
|
Action: testInvoke,
|
|
|
|
Flags: []cli.Flag{
|
2019-11-29 15:16:46 +00:00
|
|
|
endpointFlag,
|
2019-11-28 16:40:13 +00:00
|
|
|
},
|
|
|
|
},
|
2019-11-27 09:52:15 +00:00
|
|
|
{
|
|
|
|
Name: "testinvokefunction",
|
|
|
|
Usage: "invoke deployed contract on the blockchain (test mode)",
|
|
|
|
UsageText: "neo-go contract testinvokefunction -e endpoint scripthash [method] [arguments...]",
|
|
|
|
Description: `Executes given (as a script hash) deployed script with the given method and
|
|
|
|
arguments. If no method is given "" is passed to the script, if no arguments
|
|
|
|
are given, an empty array is passed. All of the given arguments are
|
|
|
|
encapsulated into array before invoking the script. The script thus should
|
|
|
|
follow the regular convention of smart contract arguments (method string and
|
|
|
|
an array of other arguments).
|
|
|
|
|
|
|
|
Arguments always do have regular Neo smart contract parameter types, either
|
|
|
|
specified explicitly or being inferred from the value. To specify the type
|
|
|
|
manually use "type:value" syntax where the type is one of the following:
|
|
|
|
'signature', 'bool', 'int', 'hash160', 'hash256', 'bytes', 'key' or 'string'.
|
|
|
|
Array types are not currently supported.
|
|
|
|
|
|
|
|
Given values are type-checked against given types with the following
|
|
|
|
restrictions applied:
|
|
|
|
* 'signature' type values should be hex-encoded and have a (decoded)
|
|
|
|
length of 64 bytes.
|
|
|
|
* 'bool' type values are 'true' and 'false'.
|
|
|
|
* 'int' values are decimal integers that can be successfully converted
|
|
|
|
from the string.
|
|
|
|
* 'hash160' values are Neo addresses and hex-encoded 20-bytes long (after
|
|
|
|
decoding) strings.
|
|
|
|
* 'hash256' type values should be hex-encoded and have a (decoded)
|
|
|
|
length of 32 bytes.
|
|
|
|
* 'bytes' type values are any hex-encoded things.
|
|
|
|
* 'key' type values are hex-encoded marshalled public keys.
|
|
|
|
* 'string' type values are any valid UTF-8 strings. In the value's part of
|
|
|
|
the string the colon looses it's special meaning as a separator between
|
|
|
|
type and value and is taken literally.
|
|
|
|
|
|
|
|
If no type is explicitly specified, it is inferred from the value using the
|
|
|
|
following logic:
|
|
|
|
- anything that can be interpreted as a decimal integer gets
|
|
|
|
an 'int' type
|
|
|
|
- 'true' and 'false' strings get 'bool' type
|
|
|
|
- valid Neo addresses and 20 bytes long hex-encoded strings get 'hash160'
|
|
|
|
type
|
|
|
|
- valid hex-encoded public keys get 'key' type
|
|
|
|
- 32 bytes long hex-encoded values get 'hash256' type
|
|
|
|
- 64 bytes long hex-encoded values get 'signature' type
|
|
|
|
- any other valid hex-encoded values get 'bytes' type
|
|
|
|
- anything else is a 'string'
|
|
|
|
|
|
|
|
Backslash character is used as an escape character and allows to use colon in
|
|
|
|
an implicitly typed string. For any other characters it has no special
|
|
|
|
meaning, to get a literal backslash in the string use the '\\' sequence.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
* 'int:42' is an integer with a value of 42
|
|
|
|
* '42' is an integer with a value of 42
|
|
|
|
* 'bad' is a string with a value of 'bad'
|
|
|
|
* 'dead' is a byte array with a value of 'dead'
|
|
|
|
* 'string:dead' is a string with a value of 'dead'
|
|
|
|
* 'AK2nJJpJr6o664CWJKi1QRXjqeic2zRp8y' is a hash160 with a value
|
|
|
|
of '23ba2703c53263e8d6e522dc32203339dcd8eee9'
|
|
|
|
* '\4\2' is an integer with a value of 42
|
|
|
|
* '\\4\2' is a string with a value of '\42'
|
|
|
|
* 'string:string' is a string with a value of 'string'
|
|
|
|
* 'string\:string' is a string with a value of 'string:string'
|
|
|
|
* '03b209fd4f53a7170ea4444e0cb0a6bb6a53c2bd016926989cf85f9b0fba17a70c' is a
|
|
|
|
key with a value of '03b209fd4f53a7170ea4444e0cb0a6bb6a53c2bd016926989cf85f9b0fba17a70c'
|
|
|
|
`,
|
|
|
|
Action: testInvokeFunction,
|
|
|
|
Flags: []cli.Flag{
|
2019-11-29 15:16:46 +00:00
|
|
|
endpointFlag,
|
2019-11-27 09:52:15 +00:00
|
|
|
},
|
|
|
|
},
|
2018-03-05 08:53:09 +00:00
|
|
|
{
|
2019-11-26 14:00:43 +00:00
|
|
|
Name: "testinvokescript",
|
|
|
|
Usage: "Invoke compiled AVM code on the blockchain (test mode, not creating a transaction for it)",
|
|
|
|
Action: testInvokeScript,
|
2018-03-05 08:53:09 +00:00
|
|
|
Flags: []cli.Flag{
|
2019-11-29 15:16:46 +00:00
|
|
|
endpointFlag,
|
2018-03-05 08:53:09 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
|
|
|
Usage: "Input location of the avm file that needs to be invoked",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-08-25 14:40:15 +00:00
|
|
|
{
|
|
|
|
Name: "init",
|
|
|
|
Usage: "initialize a new smart-contract in a directory with boiler plate code",
|
|
|
|
Action: initSmartContract,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "name, n",
|
|
|
|
Usage: "name of the smart-contract to be initialized",
|
|
|
|
},
|
2018-10-16 06:33:29 +00:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "skip-details, skip",
|
|
|
|
Usage: "skip filling in the projects and contract details",
|
|
|
|
},
|
2018-08-25 14:40:15 +00:00
|
|
|
},
|
|
|
|
},
|
2018-10-23 08:23:03 +00:00
|
|
|
{
|
|
|
|
Name: "inspect",
|
|
|
|
Usage: "creates a user readable dump of the program instructions",
|
|
|
|
Action: inspect,
|
|
|
|
Flags: []cli.Flag{
|
2019-10-29 09:56:44 +00:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "compile, c",
|
|
|
|
Usage: "compile input file (it should be go code then)",
|
|
|
|
},
|
2018-10-23 08:23:03 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
|
|
|
Usage: "input file of the program",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-02-09 16:08:50 +00:00
|
|
|
},
|
2019-10-19 20:58:45 +00:00
|
|
|
}}
|
2018-02-09 16:08:50 +00:00
|
|
|
}
|
|
|
|
|
2018-08-25 14:40:15 +00:00
|
|
|
// initSmartContract initializes a given directory with some boiler plate code.
|
|
|
|
func initSmartContract(ctx *cli.Context) error {
|
2018-10-16 06:33:29 +00:00
|
|
|
contractName := ctx.String("name")
|
|
|
|
if contractName == "" {
|
2018-08-25 14:40:15 +00:00
|
|
|
return cli.NewExitError(errNoSmartContractName, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the file already exists, if yes, exit
|
2018-10-16 06:33:29 +00:00
|
|
|
if _, err := os.Stat(contractName); err == nil {
|
2018-08-25 14:40:15 +00:00
|
|
|
return cli.NewExitError(errFileExist, 1)
|
|
|
|
}
|
|
|
|
|
2018-10-16 06:33:29 +00:00
|
|
|
basePath := contractName
|
2018-08-25 14:40:15 +00:00
|
|
|
fileName := "main.go"
|
|
|
|
|
|
|
|
// create base directory
|
2018-10-16 06:33:29 +00:00
|
|
|
if err := os.Mkdir(basePath, os.ModePerm); err != nil {
|
2018-08-25 14:40:15 +00:00
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
2019-08-15 16:51:07 +00:00
|
|
|
// Ask contract information and write a neo-go.yml file unless the -skip-details flag is set.
|
|
|
|
// TODO: Fix the missing neo-go.yml file with the `init` command when the package manager is in place.
|
2018-10-16 06:33:29 +00:00
|
|
|
if !ctx.Bool("skip-details") {
|
|
|
|
details := parseContractDetails()
|
2020-02-21 14:34:18 +00:00
|
|
|
details.ReturnType = smartcontract.ByteArrayType
|
|
|
|
details.Parameters = make([]smartcontract.ParamType, 2)
|
|
|
|
details.Parameters[0] = smartcontract.StringType
|
|
|
|
details.Parameters[1] = smartcontract.ArrayType
|
2019-11-20 09:29:37 +00:00
|
|
|
|
|
|
|
project := &ProjectConfig{Contract: details}
|
|
|
|
b, err := yaml.Marshal(project)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(basePath, "neo-go.yml"), b, 0644); err != nil {
|
2018-10-16 06:33:29 +00:00
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data := []byte(fmt.Sprintf(smartContractTmpl, contractName))
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(basePath, fileName), data, 0644); err != nil {
|
2018-08-25 14:40:15 +00:00
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2018-10-16 06:33:29 +00:00
|
|
|
|
|
|
|
fmt.Printf("Successfully initialized smart contract [%s]\n", contractName)
|
|
|
|
|
2018-08-25 14:40:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-09 16:08:50 +00:00
|
|
|
func contractCompile(ctx *cli.Context) error {
|
2018-02-24 09:10:45 +00:00
|
|
|
src := ctx.String("in")
|
|
|
|
if len(src) == 0 {
|
2018-03-05 08:53:09 +00:00
|
|
|
return cli.NewExitError(errNoInput, 1)
|
2018-02-15 15:35:49 +00:00
|
|
|
}
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
abi := ctx.String("abi")
|
|
|
|
confFile := ctx.String("config")
|
|
|
|
if len(abi) != 0 && len(confFile) == 0 {
|
|
|
|
return cli.NewExitError(errNoConfFile, 1)
|
|
|
|
}
|
2018-02-15 15:35:49 +00:00
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
o := &compiler.Options{
|
|
|
|
Outfile: ctx.String("out"),
|
2020-04-02 12:38:53 +00:00
|
|
|
|
2020-04-08 10:11:44 +00:00
|
|
|
DebugInfo: ctx.String("debug"),
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
ABIInfo: abi,
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(confFile) != 0 {
|
|
|
|
conf, err := parseContractConfig(confFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
o.ContractDetails = &conf.Contract
|
2018-02-15 15:35:49 +00:00
|
|
|
}
|
|
|
|
|
2019-11-22 14:16:52 +00:00
|
|
|
result, err := compiler.CompileAndSave(src, o)
|
|
|
|
if err != nil {
|
2018-02-24 09:10:45 +00:00
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2020-04-06 12:33:44 +00:00
|
|
|
if ctx.Bool("verbose") {
|
|
|
|
fmt.Println(hex.EncodeToString(result))
|
|
|
|
}
|
2018-03-25 16:21:00 +00:00
|
|
|
|
2018-02-24 09:10:45 +00:00
|
|
|
return nil
|
2018-02-09 16:08:50 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 16:40:13 +00:00
|
|
|
func testInvoke(ctx *cli.Context) error {
|
2019-11-29 15:59:55 +00:00
|
|
|
return invokeInternal(ctx, false, false)
|
2019-11-28 16:40:13 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 09:52:15 +00:00
|
|
|
func testInvokeFunction(ctx *cli.Context) error {
|
2019-11-29 15:59:55 +00:00
|
|
|
return invokeInternal(ctx, true, false)
|
2019-11-28 16:40:13 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 15:59:55 +00:00
|
|
|
func invoke(ctx *cli.Context) error {
|
|
|
|
return invokeInternal(ctx, false, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func invokeFunction(ctx *cli.Context) error {
|
|
|
|
return invokeInternal(ctx, true, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func invokeInternal(ctx *cli.Context, withMethod bool, signAndPush bool) error {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
gas util.Fixed8
|
|
|
|
operation string
|
|
|
|
params = make([]smartcontract.Parameter, 0)
|
|
|
|
paramsStart = 1
|
2020-03-03 10:08:34 +00:00
|
|
|
resp *result.Invoke
|
2020-03-11 18:11:51 +00:00
|
|
|
acc *wallet.Account
|
2019-11-29 15:59:55 +00:00
|
|
|
)
|
2019-11-28 16:40:13 +00:00
|
|
|
|
2019-11-27 09:52:15 +00:00
|
|
|
endpoint := ctx.String("endpoint")
|
|
|
|
if len(endpoint) == 0 {
|
|
|
|
return cli.NewExitError(errNoEndpoint, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
args := ctx.Args()
|
|
|
|
if !args.Present() {
|
|
|
|
return cli.NewExitError(errNoScriptHash, 1)
|
|
|
|
}
|
|
|
|
script := args[0]
|
2020-04-13 08:19:37 +00:00
|
|
|
if withMethod {
|
|
|
|
if len(args) <= 1 {
|
|
|
|
return cli.NewExitError(errNoMethod, 1)
|
|
|
|
}
|
2019-11-27 09:52:15 +00:00
|
|
|
operation = args[1]
|
2019-11-28 16:40:13 +00:00
|
|
|
paramsStart++
|
2019-11-27 09:52:15 +00:00
|
|
|
}
|
2019-11-28 16:40:13 +00:00
|
|
|
if len(args) > paramsStart {
|
|
|
|
for k, s := range args[paramsStart:] {
|
2019-11-27 09:52:15 +00:00
|
|
|
param, err := smartcontract.NewParameterFromString(s)
|
|
|
|
if err != nil {
|
2019-11-28 16:40:13 +00:00
|
|
|
return cli.NewExitError(fmt.Errorf("failed to parse argument #%d: %v", k+paramsStart+1, err), 1)
|
2019-11-27 09:52:15 +00:00
|
|
|
}
|
|
|
|
params = append(params, *param)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-29 15:59:55 +00:00
|
|
|
if signAndPush {
|
2020-03-12 16:41:54 +00:00
|
|
|
gas = flags.Fixed8FromContext(ctx, "gas")
|
2020-03-11 18:11:51 +00:00
|
|
|
acc, err = getAccFromContext(ctx)
|
2019-11-29 15:59:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-02-17 12:01:57 +00:00
|
|
|
c, err := client.New(context.TODO(), endpoint, client.Options{})
|
2019-11-27 09:52:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
2019-11-28 16:40:13 +00:00
|
|
|
if withMethod {
|
2020-02-17 12:01:57 +00:00
|
|
|
resp, err = c.InvokeFunction(script, operation, params)
|
2019-11-28 16:40:13 +00:00
|
|
|
} else {
|
2020-02-17 12:01:57 +00:00
|
|
|
resp, err = c.Invoke(script, params)
|
2019-11-28 16:40:13 +00:00
|
|
|
}
|
2019-11-27 09:52:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2019-11-29 15:59:55 +00:00
|
|
|
if signAndPush {
|
2020-02-20 18:08:22 +00:00
|
|
|
if len(resp.Script) == 0 {
|
2019-11-29 15:59:55 +00:00
|
|
|
return cli.NewExitError(errors.New("no script returned from the RPC node"), 1)
|
|
|
|
}
|
2020-02-20 18:08:22 +00:00
|
|
|
script, err := hex.DecodeString(resp.Script)
|
2019-11-29 15:59:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(fmt.Errorf("bad script returned from the RPC node: %v", err), 1)
|
|
|
|
}
|
2020-03-11 18:11:51 +00:00
|
|
|
txHash, err := c.SignAndPushInvocationTx(script, acc, 0, gas)
|
2019-11-29 15:59:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(fmt.Errorf("failed to push invocation tx: %v", err), 1)
|
|
|
|
}
|
2019-11-27 09:23:18 +00:00
|
|
|
fmt.Printf("Sent invocation transaction %s\n", txHash.StringLE())
|
2019-11-29 15:59:55 +00:00
|
|
|
} else {
|
2020-02-20 18:08:22 +00:00
|
|
|
b, err := json.MarshalIndent(resp, "", " ")
|
2019-11-29 15:59:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2019-11-27 09:52:15 +00:00
|
|
|
|
2019-11-29 15:59:55 +00:00
|
|
|
fmt.Println(string(b))
|
2019-11-27 09:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-26 14:00:43 +00:00
|
|
|
func testInvokeScript(ctx *cli.Context) error {
|
2018-03-05 08:53:09 +00:00
|
|
|
src := ctx.String("in")
|
|
|
|
if len(src) == 0 {
|
|
|
|
return cli.NewExitError(errNoInput, 1)
|
|
|
|
}
|
2019-10-29 13:32:49 +00:00
|
|
|
endpoint := ctx.String("endpoint")
|
|
|
|
if len(endpoint) == 0 {
|
|
|
|
return cli.NewExitError(errNoEndpoint, 1)
|
|
|
|
}
|
2018-03-25 16:21:00 +00:00
|
|
|
|
2018-03-05 08:53:09 +00:00
|
|
|
b, err := ioutil.ReadFile(src)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
2020-02-17 12:01:57 +00:00
|
|
|
c, err := client.New(context.TODO(), endpoint, client.Options{})
|
2018-03-05 08:53:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
scriptHex := hex.EncodeToString(b)
|
2020-02-17 12:01:57 +00:00
|
|
|
resp, err := c.InvokeScript(scriptHex)
|
2018-03-05 08:53:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
2020-02-20 18:08:22 +00:00
|
|
|
b, err = json.MarshalIndent(resp, "", " ")
|
2018-03-05 08:53:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(string(b))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-20 09:29:37 +00:00
|
|
|
// ProjectConfig contains project metadata.
|
|
|
|
type ProjectConfig struct {
|
|
|
|
Version uint
|
2020-04-29 10:45:01 +00:00
|
|
|
Contract smartcontract.ContractDetails `yaml:"project"`
|
2018-10-16 06:33:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 10:45:01 +00:00
|
|
|
func parseContractDetails() smartcontract.ContractDetails {
|
|
|
|
details := smartcontract.ContractDetails{}
|
2018-10-16 06:33:29 +00:00
|
|
|
reader := bufio.NewReader(os.Stdin)
|
|
|
|
|
|
|
|
fmt.Print("Author: ")
|
|
|
|
details.Author, _ = reader.ReadString('\n')
|
|
|
|
|
|
|
|
fmt.Print("Email: ")
|
|
|
|
details.Email, _ = reader.ReadString('\n')
|
|
|
|
|
|
|
|
fmt.Print("Version: ")
|
|
|
|
details.Version, _ = reader.ReadString('\n')
|
|
|
|
|
|
|
|
fmt.Print("Project name: ")
|
|
|
|
details.ProjectName, _ = reader.ReadString('\n')
|
|
|
|
|
|
|
|
fmt.Print("Description: ")
|
|
|
|
details.Description, _ = reader.ReadString('\n')
|
|
|
|
|
|
|
|
return details
|
|
|
|
}
|
2018-10-23 08:23:03 +00:00
|
|
|
|
|
|
|
func inspect(ctx *cli.Context) error {
|
2019-10-29 09:56:44 +00:00
|
|
|
in := ctx.String("in")
|
|
|
|
compile := ctx.Bool("compile")
|
|
|
|
if len(in) == 0 {
|
2018-10-23 08:23:03 +00:00
|
|
|
return cli.NewExitError(errNoInput, 1)
|
|
|
|
}
|
2019-10-29 09:56:44 +00:00
|
|
|
b, err := ioutil.ReadFile(in)
|
|
|
|
if err != nil {
|
2019-08-14 17:29:32 +00:00
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2019-10-29 09:56:44 +00:00
|
|
|
if compile {
|
2019-10-29 10:02:54 +00:00
|
|
|
b, err = compiler.Compile(bytes.NewReader(b))
|
2019-10-29 09:56:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(errors.Wrap(err, "failed to compile"), 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
v := vm.New()
|
|
|
|
v.LoadScript(b)
|
|
|
|
v.PrintOps()
|
|
|
|
|
2018-10-23 08:23:03 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-11-20 13:07:43 +00:00
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
func getAccFromContext(ctx *cli.Context) (*wallet.Account, error) {
|
|
|
|
var addr util.Uint160
|
|
|
|
|
|
|
|
wPath := ctx.String("wallet")
|
|
|
|
if len(wPath) == 0 {
|
|
|
|
return nil, cli.NewExitError(errNoWallet, 1)
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
wall, err := wallet.NewWalletFromFile(wPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
addrFlag := ctx.Generic("address").(*flags.Address)
|
|
|
|
if addrFlag.IsSet {
|
|
|
|
addr = addrFlag.Uint160()
|
|
|
|
} else {
|
|
|
|
addr = wall.GetChangeAddress()
|
|
|
|
}
|
|
|
|
acc := wall.GetAccount(addr)
|
|
|
|
if acc == nil {
|
|
|
|
return nil, cli.NewExitError(fmt.Errorf("wallet contains no account for '%s'", address.Uint160ToString(addr)), 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Enter account %s password > ", address.Uint160ToString(addr))
|
|
|
|
rawPass, err := terminal.ReadPassword(syscall.Stdin)
|
|
|
|
fmt.Println()
|
|
|
|
if err != nil {
|
|
|
|
return nil, cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
pass := strings.TrimRight(string(rawPass), "\n")
|
|
|
|
err = acc.Decrypt(pass)
|
2019-11-29 15:59:55 +00:00
|
|
|
if err != nil {
|
2020-03-11 18:11:51 +00:00
|
|
|
return nil, cli.NewExitError(err, 1)
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
2020-03-11 18:11:51 +00:00
|
|
|
return acc, nil
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 13:07:43 +00:00
|
|
|
// contractDeploy deploys contract.
|
|
|
|
func contractDeploy(ctx *cli.Context) error {
|
|
|
|
in := ctx.String("in")
|
|
|
|
if len(in) == 0 {
|
|
|
|
return cli.NewExitError(errNoInput, 1)
|
|
|
|
}
|
|
|
|
confFile := ctx.String("config")
|
|
|
|
if len(confFile) == 0 {
|
|
|
|
return cli.NewExitError(errNoConfFile, 1)
|
|
|
|
}
|
|
|
|
endpoint := ctx.String("endpoint")
|
|
|
|
if len(endpoint) == 0 {
|
|
|
|
return cli.NewExitError(errNoEndpoint, 1)
|
|
|
|
}
|
2020-03-12 16:41:54 +00:00
|
|
|
gas := flags.Fixed8FromContext(ctx, "gas")
|
2019-11-20 13:07:43 +00:00
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
acc, err := getAccFromContext(ctx)
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
2019-11-29 15:59:55 +00:00
|
|
|
return err
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|
|
|
|
avm, err := ioutil.ReadFile(in)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
conf, err := parseContractConfig(confFile)
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
return err
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 12:01:57 +00:00
|
|
|
c, err := client.New(context.TODO(), endpoint, client.Options{})
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
2020-02-17 11:54:53 +00:00
|
|
|
txScript, err := request.CreateDeploymentScript(avm, &conf.Contract)
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
2019-11-29 14:59:07 +00:00
|
|
|
return cli.NewExitError(fmt.Errorf("failed to create deployment script: %v", err), 1)
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
sysfee := smartcontract.GetDeploymentPrice(request.DetailsToSCProperties(&conf.Contract))
|
2020-03-11 17:32:06 +00:00
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
txHash, err := c.SignAndPushInvocationTx(txScript, acc, sysfee, gas)
|
2019-11-29 14:59:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(fmt.Errorf("failed to push invocation tx: %v", err), 1)
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|
2019-11-27 09:23:18 +00:00
|
|
|
fmt.Printf("Sent deployment transaction %s for contract %s\n", txHash.StringLE(), hash.Hash160(avm).StringLE())
|
2019-11-20 13:07:43 +00:00
|
|
|
return nil
|
|
|
|
}
|
compiler: add ability to generate .abi.json file
A part of integration with NEO Blockchain Toolkit (see #902). To be
able to deploy smart-contract compiled with neo-go compiler via NEO
Express, we have to generate additional .abi.json file. This file
contains the following information:
- hash of the compiled contract
- smart-contract metadata (title, description, version, author,
email, has-storage, has-dynamic-invoke, is-payable)
- smart-contract entry point
- functions
- events
However, this .abi.json file is slightly different from the one,
described in manifest.go, so we have to add auxilaury stractures for
json marshalling. The .abi.json format used by NEO-Express is described
[here](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.MSIL/FuncExport.cs#L66).
2020-04-28 16:39:01 +00:00
|
|
|
|
|
|
|
func parseContractConfig(confFile string) (ProjectConfig, error) {
|
|
|
|
conf := ProjectConfig{}
|
|
|
|
confBytes, err := ioutil.ReadFile(confFile)
|
|
|
|
if err != nil {
|
|
|
|
return conf, cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = yaml.Unmarshal(confBytes, &conf)
|
|
|
|
if err != nil {
|
|
|
|
return conf, cli.NewExitError(fmt.Errorf("bad config: %v", err), 1)
|
|
|
|
}
|
|
|
|
return conf, nil
|
|
|
|
}
|