2018-02-09 16:08:50 +00:00
|
|
|
package smartcontract
|
|
|
|
|
|
|
|
import (
|
2018-10-16 06:33:29 +00:00
|
|
|
"bytes"
|
2018-03-05 08:53:09 +00:00
|
|
|
"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-06-17 21:15:13 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/cli/options"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/compiler"
|
2020-06-11 08:45:17 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
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/request"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response/result"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
2020-06-09 13:12:58 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
2020-06-25 16:21:49 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/nef"
|
2020-03-03 14:21:42 +00:00
|
|
|
"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-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
|
|
|
|
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!")
|
|
|
|
}`
|
2020-06-11 08:45:17 +00:00
|
|
|
// cosignersSeparator is a special value which is used to distinguish
|
|
|
|
// parameters and cosigners for invoke* commands
|
|
|
|
cosignersSeparator = "--"
|
2018-02-24 09:10:45 +00:00
|
|
|
)
|
|
|
|
|
2019-10-19 20:58:45 +00:00
|
|
|
// NewCommands returns 'contract' command.
|
|
|
|
func NewCommands() []cli.Command {
|
2020-06-17 21:15:13 +00:00
|
|
|
testInvokeScriptFlags := []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "Input location of the .nef file that needs to be invoked",
|
2020-06-17 21:15:13 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
testInvokeScriptFlags = append(testInvokeScriptFlags, options.RPC...)
|
|
|
|
deployFlags := []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "in, i",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "Input file for the smart contract (*.nef)",
|
2020-06-17 21:15:13 +00:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Usage: "configuration input file (*.yml)",
|
|
|
|
},
|
|
|
|
walletFlag,
|
|
|
|
addressFlag,
|
|
|
|
gasFlag,
|
|
|
|
}
|
|
|
|
deployFlags = append(deployFlags, options.RPC...)
|
|
|
|
invokeFunctionFlags := []cli.Flag{
|
|
|
|
walletFlag,
|
|
|
|
addressFlag,
|
|
|
|
gasFlag,
|
|
|
|
}
|
|
|
|
invokeFunctionFlags = append(invokeFunctionFlags, options.RPC...)
|
2019-10-19 20:58:45 +00:00
|
|
|
return []cli.Command{{
|
2018-02-09 16:08:50 +00:00
|
|
|
Name: "contract",
|
|
|
|
Usage: "compile - debug - deploy smart contracts",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
{
|
|
|
|
Name: "compile",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "compile a smart contract to a .nef file",
|
2018-02-09 16:08:50 +00:00
|
|
|
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",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "deploy a smart contract (.nef with description)",
|
2020-03-11 17:32:06 +00:00
|
|
|
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,
|
2020-06-17 21:15:13 +00:00
|
|
|
Flags: deployFlags,
|
2019-11-29 15:59:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "invokefunction",
|
|
|
|
Usage: "invoke deployed contract on the blockchain",
|
2020-06-17 21:15:13 +00:00
|
|
|
UsageText: "neo-go contract invokefunction -r endpoint -w wallet [-a address] [-g gas] scripthash [method] [arguments...] [--] [cosigners...]",
|
2020-06-11 08:45:17 +00:00
|
|
|
Description: `Executes given (as a script hash) deployed script with the given method,
|
|
|
|
arguments and cosigners. See testinvokefunction documentation for the details
|
|
|
|
about parameters. It differs from testinvokefunction in that this command
|
|
|
|
sends an invocation transaction to the network.
|
2019-11-29 15:59:55 +00:00
|
|
|
`,
|
|
|
|
Action: invokeFunction,
|
2020-06-17 21:15:13 +00:00
|
|
|
Flags: invokeFunctionFlags,
|
2019-11-20 13:07:43 +00:00
|
|
|
},
|
2019-11-27 09:52:15 +00:00
|
|
|
{
|
|
|
|
Name: "testinvokefunction",
|
|
|
|
Usage: "invoke deployed contract on the blockchain (test mode)",
|
2020-06-17 21:15:13 +00:00
|
|
|
UsageText: "neo-go contract testinvokefunction -r endpoint scripthash [method] [arguments...] [--] [cosigners...]",
|
2020-06-11 08:45:17 +00:00
|
|
|
Description: `Executes given (as a script hash) deployed script with the given method,
|
|
|
|
arguments and cosigners. If no method is given "" is passed to the script, if
|
|
|
|
no arguments are given, an empty array is passed, if no cosigners are given,
|
|
|
|
no array will be 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).
|
2019-11-27 09:52:15 +00:00
|
|
|
|
|
|
|
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'
|
2020-06-11 08:45:17 +00:00
|
|
|
|
|
|
|
Cosigners represent a set of Uint160 hashes with witness scopes and are used
|
|
|
|
to verify hashes in System.Runtime.CheckWitness syscall. To specify cosigners
|
|
|
|
use cosigner[:scope] syntax where
|
|
|
|
* 'cosigner' is hex-encoded 160 bit (20 byte) LE value of cosigner's address,
|
|
|
|
which could have '0x' prefix.
|
|
|
|
* 'scope' is a comma-separated set of cosigner's scopes, which could be:
|
|
|
|
- 'Global' - allows this witness in all contexts. This cannot be combined
|
|
|
|
with other flags.
|
|
|
|
- 'CalledByEntry' - means that this condition must hold: EntryScriptHash
|
|
|
|
== CallingScriptHash. The witness/permission/signature
|
|
|
|
given on first invocation will automatically expire if
|
|
|
|
entering deeper internal invokes. This can be default
|
|
|
|
safe choice for native NEO/GAS.
|
|
|
|
- 'CustomContracts' - define valid custom contract hashes for witness check.
|
|
|
|
- 'CustomGroups' - define custom pubkey for group members.
|
|
|
|
|
|
|
|
If no scopes were specified, 'Global' used as default. If no cosigners were
|
|
|
|
specified, no array will be passed. Note that scopes are properly handled by
|
|
|
|
neo-go RPC server only. C# implementation does not support scopes capability.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
* '0000000009070e030d0f0e020d0c06050e030c02'
|
|
|
|
* '0x0000000009070e030d0f0e020d0c06050e030c02'
|
|
|
|
* '0x0000000009070e030d0f0e020d0c06050e030c02:Global'
|
|
|
|
* '0000000009070e030d0f0e020d0c06050e030c02:CalledByEntry,CustomGroups'
|
2019-11-27 09:52:15 +00:00
|
|
|
`,
|
|
|
|
Action: testInvokeFunction,
|
2020-06-17 21:15:13 +00:00
|
|
|
Flags: options.RPC,
|
2019-11-27 09:52:15 +00:00
|
|
|
},
|
2018-03-05 08:53:09 +00:00
|
|
|
{
|
2020-06-11 08:45:17 +00:00
|
|
|
Name: "testinvokescript",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "Invoke compiled AVM code in NEF format on the blockchain (test mode, not creating a transaction for it)",
|
|
|
|
UsageText: "neo-go contract testinvokescript -r endpoint -i input.nef [cosigners...]",
|
|
|
|
Description: `Executes given compiled AVM instructions in NEF format with the given set of
|
2020-06-11 08:45:17 +00:00
|
|
|
cosigners. See testinvokefunction documentation for the details about parameters.
|
|
|
|
`,
|
2019-11-26 14:00:43 +00:00
|
|
|
Action: testInvokeScript,
|
2020-06-17 21:15:13 +00:00
|
|
|
Flags: testInvokeScriptFlags,
|
2018-03-05 08:53:09 +00:00
|
|
|
},
|
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",
|
2020-06-25 16:21:49 +00:00
|
|
|
Usage: "input file of the program (either .go or .nef)",
|
2018-10-23 08:23:03 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
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)
|
|
|
|
}
|
|
|
|
|
2020-06-09 13:12:58 +00:00
|
|
|
m := ProjectConfig{
|
|
|
|
EntryPoint: manifest.Method{
|
|
|
|
Name: "Main",
|
|
|
|
Parameters: []manifest.Parameter{
|
|
|
|
manifest.NewParameter("Method", smartcontract.StringType),
|
|
|
|
manifest.NewParameter("Arguments", smartcontract.ArrayType),
|
|
|
|
},
|
|
|
|
ReturnType: smartcontract.ByteArrayType,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
b, err := yaml.Marshal(m)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(basePath, "neo-go.yml"), b, 0644); err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
2018-10-16 06:33:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2020-06-09 13:12:58 +00:00
|
|
|
o.ContractFeatures = conf.GetFeatures()
|
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-27 09:52:15 +00:00
|
|
|
func testInvokeFunction(ctx *cli.Context) error {
|
2020-06-10 08:31:01 +00:00
|
|
|
return invokeInternal(ctx, false)
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func invokeFunction(ctx *cli.Context) error {
|
2020-06-10 08:31:01 +00:00
|
|
|
return invokeInternal(ctx, true)
|
2019-11-29 15:59:55 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 08:31:01 +00:00
|
|
|
func invokeInternal(ctx *cli.Context, signAndPush bool) error {
|
2019-11-29 15:59:55 +00:00
|
|
|
var (
|
2020-06-11 08:45:17 +00:00
|
|
|
err error
|
|
|
|
gas util.Fixed8
|
|
|
|
operation string
|
|
|
|
params = make([]smartcontract.Parameter, 0)
|
|
|
|
paramsStart = 1
|
|
|
|
cosigners []transaction.Cosigner
|
|
|
|
cosignersStart = 0
|
|
|
|
resp *result.Invoke
|
|
|
|
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
|
|
|
args := ctx.Args()
|
|
|
|
if !args.Present() {
|
|
|
|
return cli.NewExitError(errNoScriptHash, 1)
|
|
|
|
}
|
|
|
|
script := args[0]
|
2020-06-10 08:31:01 +00:00
|
|
|
|
|
|
|
if len(args) <= 1 {
|
|
|
|
return cli.NewExitError(errNoMethod, 1)
|
2019-11-27 09:52:15 +00:00
|
|
|
}
|
2020-06-10 08:31:01 +00:00
|
|
|
operation = args[1]
|
|
|
|
paramsStart++
|
|
|
|
|
2019-11-28 16:40:13 +00:00
|
|
|
if len(args) > paramsStart {
|
|
|
|
for k, s := range args[paramsStart:] {
|
2020-06-11 08:45:17 +00:00
|
|
|
if s == cosignersSeparator {
|
|
|
|
cosignersStart = paramsStart + k + 1
|
|
|
|
break
|
|
|
|
}
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 08:45:17 +00:00
|
|
|
if len(args) >= cosignersStart && cosignersStart > 0 {
|
|
|
|
for i, c := range args[cosignersStart:] {
|
|
|
|
cosigner, err := parseCosigner(c)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(fmt.Errorf("failed to parse cosigner #%d: %v", i+cosignersStart+1, err), 1)
|
|
|
|
}
|
|
|
|
cosigners = append(cosigners, cosigner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-06-17 21:15:13 +00:00
|
|
|
gctx, cancel := options.GetTimeoutContext(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
c, err := options.GetRPCClient(gctx, ctx)
|
2019-11-27 09:52:15 +00:00
|
|
|
if err != nil {
|
2020-06-17 21:15:13 +00:00
|
|
|
return err
|
2019-11-27 09:52:15 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 08:45:17 +00:00
|
|
|
resp, err = c.InvokeFunction(script, operation, params, cosigners)
|
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)
|
|
|
|
}
|
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-06-25 16:21:49 +00:00
|
|
|
nefFile, err := nef.FileFromBytes(b)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(errors.Wrapf(err, "failed to restore .nef file"), 1)
|
|
|
|
}
|
2018-03-05 08:53:09 +00:00
|
|
|
|
2020-06-11 08:45:17 +00:00
|
|
|
args := ctx.Args()
|
|
|
|
var cosigners []transaction.Cosigner
|
|
|
|
if args.Present() {
|
|
|
|
for i, c := range args[:] {
|
|
|
|
cosigner, err := parseCosigner(c)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(fmt.Errorf("failed to parse cosigner #%d: %v", i+1, err), 1)
|
|
|
|
}
|
|
|
|
cosigners = append(cosigners, cosigner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 21:15:13 +00:00
|
|
|
gctx, cancel := options.GetTimeoutContext(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
c, err := options.GetRPCClient(gctx, ctx)
|
2018-03-05 08:53:09 +00:00
|
|
|
if err != nil {
|
2020-06-17 21:15:13 +00:00
|
|
|
return err
|
2018-03-05 08:53:09 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 16:21:49 +00:00
|
|
|
scriptHex := hex.EncodeToString(nefFile.Script)
|
2020-06-11 08:45:17 +00:00
|
|
|
resp, err := c.InvokeScript(scriptHex, cosigners)
|
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 {
|
2020-06-09 13:12:58 +00:00
|
|
|
HasStorage bool
|
|
|
|
IsPayable bool
|
|
|
|
EntryPoint manifest.Method
|
|
|
|
Methods []manifest.Method
|
|
|
|
Events []manifest.Event
|
2018-10-16 06:33:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 13:12:58 +00:00
|
|
|
// GetFeatures returns smartcontract features from the config.
|
|
|
|
func (p *ProjectConfig) GetFeatures() smartcontract.PropertyState {
|
|
|
|
var fs smartcontract.PropertyState
|
|
|
|
if p.IsPayable {
|
|
|
|
fs |= smartcontract.IsPayable
|
|
|
|
}
|
|
|
|
if p.HasStorage {
|
|
|
|
fs |= smartcontract.HasStorage
|
|
|
|
}
|
|
|
|
return fs
|
|
|
|
}
|
2018-10-16 06:33:29 +00:00
|
|
|
|
2020-06-09 13:12:58 +00:00
|
|
|
// ToManifest converts project config to the manifest.
|
2020-06-25 16:21:49 +00:00
|
|
|
func (p *ProjectConfig) ToManifest(file nef.File) *manifest.Manifest {
|
|
|
|
m := manifest.NewManifest(file.Header.ScriptHash)
|
2020-06-09 13:12:58 +00:00
|
|
|
m.Features = p.GetFeatures()
|
2020-06-25 16:21:49 +00:00
|
|
|
m.ABI.Hash = file.Header.ScriptHash
|
2020-06-09 13:12:58 +00:00
|
|
|
m.ABI.EntryPoint = p.EntryPoint
|
|
|
|
m.ABI.Methods = p.Methods
|
|
|
|
m.ABI.Events = p.Events
|
|
|
|
return m
|
2018-10-16 06:33:29 +00:00
|
|
|
}
|
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)
|
|
|
|
}
|
2020-06-25 16:21:49 +00:00
|
|
|
} else {
|
|
|
|
nefFile, err := nef.FileFromBytes(b)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(errors.Wrapf(err, "failed to restore .nef file"), 1)
|
|
|
|
}
|
|
|
|
b = nefFile.Script
|
2019-10-29 09:56:44 +00:00
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
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
|
|
|
}
|
2020-06-25 16:21:49 +00:00
|
|
|
f, err := ioutil.ReadFile(in)
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(err, 1)
|
|
|
|
}
|
2020-06-25 16:21:49 +00:00
|
|
|
nefFile, err := nef.FileFromBytes(f)
|
|
|
|
if err != nil {
|
|
|
|
return cli.NewExitError(errors.Wrapf(err, "failed to restore .nef file"), 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-06-17 21:15:13 +00:00
|
|
|
gctx, cancel := options.GetTimeoutContext(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
c, err := options.GetRPCClient(gctx, ctx)
|
2019-11-20 13:07:43 +00:00
|
|
|
if err != nil {
|
2020-06-17 21:15:13 +00:00
|
|
|
return err
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 16:21:49 +00:00
|
|
|
m := conf.ToManifest(nefFile)
|
|
|
|
txScript, sysfee, err := request.CreateDeploymentScript(nefFile.Script, m)
|
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
|
|
|
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
|
|
|
}
|
2020-06-25 16:21:49 +00:00
|
|
|
fmt.Printf("Sent deployment transaction %s for contract %s\n", txHash.StringLE(), nefFile.Header.ScriptHash.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
|
|
|
|
}
|
2020-06-11 08:45:17 +00:00
|
|
|
|
|
|
|
func parseCosigner(c string) (transaction.Cosigner, error) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
res = transaction.Cosigner{}
|
|
|
|
)
|
|
|
|
data := strings.SplitN(strings.ToLower(c), ":", 2)
|
|
|
|
s := data[0]
|
|
|
|
if len(s) == 2*util.Uint160Size+2 && s[0:2] == "0x" {
|
|
|
|
s = s[2:]
|
|
|
|
}
|
|
|
|
res.Account, err = util.Uint160DecodeStringLE(s)
|
|
|
|
if err != nil {
|
|
|
|
return res, err
|
|
|
|
}
|
|
|
|
if len(data) > 1 {
|
|
|
|
res.Scopes, err = transaction.ScopesFromString(data[1])
|
|
|
|
if err != nil {
|
|
|
|
return transaction.Cosigner{}, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|