2020-02-17 12:01:57 +00:00
|
|
|
package client
|
2018-03-05 08:53:09 +00:00
|
|
|
|
2018-12-21 09:32:18 +00:00
|
|
|
import (
|
|
|
|
"encoding/hex"
|
2020-06-01 20:27:03 +00:00
|
|
|
"strconv"
|
2018-12-21 09:32:18 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core"
|
2020-03-03 17:26:56 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2020-06-09 09:12:56 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
2020-06-25 07:55:45 +00:00
|
|
|
"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 17:26:56 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
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"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/wallet"
|
2018-12-21 09:32:18 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
2018-03-25 16:21:00 +00:00
|
|
|
|
2020-03-11 14:14:05 +00:00
|
|
|
// GetApplicationLog returns the contract log based on the specified txid.
|
|
|
|
func (c *Client) GetApplicationLog(hash util.Uint256) (*result.ApplicationLog, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE())
|
|
|
|
resp = &result.ApplicationLog{}
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getapplicationlog", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBestBlockHash returns the hash of the tallest block in the main chain.
|
|
|
|
func (c *Client) GetBestBlockHash() (util.Uint256, error) {
|
|
|
|
var resp = util.Uint256{}
|
|
|
|
if err := c.performRequest("getbestblockhash", request.NewRawParams(), &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockCount returns the number of blocks in the main chain.
|
|
|
|
func (c *Client) GetBlockCount() (uint32, error) {
|
|
|
|
var resp uint32
|
|
|
|
if err := c.performRequest("getblockcount", request.NewRawParams(), &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-03 17:26:56 +00:00
|
|
|
// GetBlockByIndex returns a block by its height.
|
|
|
|
func (c *Client) GetBlockByIndex(index uint32) (*block.Block, error) {
|
|
|
|
return c.getBlock(request.NewRawParams(index))
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockByHash returns a block by its hash.
|
|
|
|
func (c *Client) GetBlockByHash(hash util.Uint256) (*block.Block, error) {
|
|
|
|
return c.getBlock(request.NewRawParams(hash.StringLE()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) getBlock(params request.RawParams) (*block.Block, error) {
|
|
|
|
var (
|
|
|
|
resp string
|
|
|
|
err error
|
|
|
|
b *block.Block
|
|
|
|
)
|
|
|
|
if err = c.performRequest("getblock", params, &resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
blockBytes, err := hex.DecodeString(resp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r := io.NewBinReaderFromBuf(blockBytes)
|
2020-06-18 09:00:51 +00:00
|
|
|
b = block.New(c.opts.Network)
|
2020-03-03 17:26:56 +00:00
|
|
|
b.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, r.Err
|
|
|
|
}
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockByIndexVerbose returns a block wrapper with additional metadata by
|
|
|
|
// its height.
|
2020-03-23 14:31:28 +00:00
|
|
|
// NOTE: to get transaction.ID and transaction.Size, use t.Hash() and io.GetVarSize(t) respectively.
|
2020-03-03 17:26:56 +00:00
|
|
|
func (c *Client) GetBlockByIndexVerbose(index uint32) (*result.Block, error) {
|
|
|
|
return c.getBlockVerbose(request.NewRawParams(index, 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockByHashVerbose returns a block wrapper with additional metadata by
|
|
|
|
// its hash.
|
|
|
|
func (c *Client) GetBlockByHashVerbose(hash util.Uint256) (*result.Block, error) {
|
|
|
|
return c.getBlockVerbose(request.NewRawParams(hash.StringLE(), 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) getBlockVerbose(params request.RawParams) (*result.Block, error) {
|
|
|
|
var (
|
|
|
|
resp = &result.Block{}
|
|
|
|
err error
|
|
|
|
)
|
2020-06-18 09:00:51 +00:00
|
|
|
resp.Network = c.opts.Network
|
2020-03-24 17:11:49 +00:00
|
|
|
if err = c.performRequest("getblock", params, resp); err != nil {
|
2020-03-03 17:26:56 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-11 14:14:05 +00:00
|
|
|
// GetBlockHash returns the hash value of the corresponding block, based on the specified index.
|
|
|
|
func (c *Client) GetBlockHash(index uint32) (util.Uint256, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(index)
|
|
|
|
resp = util.Uint256{}
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getblockhash", params, &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockHeader returns the corresponding block header information from serialized hex string
|
|
|
|
// according to the specified script hash.
|
|
|
|
func (c *Client) GetBlockHeader(hash util.Uint256) (*block.Header, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE())
|
|
|
|
resp string
|
|
|
|
h *block.Header
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getblockheader", params, &resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
headerBytes, err := hex.DecodeString(resp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r := io.NewBinReaderFromBuf(headerBytes)
|
|
|
|
h = new(block.Header)
|
2020-06-18 09:00:51 +00:00
|
|
|
h.Network = c.opts.Network
|
2020-03-11 14:14:05 +00:00
|
|
|
h.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, r.Err
|
|
|
|
}
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockHeaderVerbose returns the corresponding block header information from Json format string
|
|
|
|
// according to the specified script hash.
|
|
|
|
func (c *Client) GetBlockHeaderVerbose(hash util.Uint256) (*result.Header, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE(), 1)
|
|
|
|
resp = &result.Header{}
|
|
|
|
)
|
2020-03-24 17:11:49 +00:00
|
|
|
if err := c.performRequest("getblockheader", params, resp); err != nil {
|
2020-03-11 14:14:05 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockSysFee returns the system fees of the block, based on the specified index.
|
|
|
|
func (c *Client) GetBlockSysFee(index uint32) (util.Fixed8, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(index)
|
|
|
|
resp util.Fixed8
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getblocksysfee", params, &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetConnectionCount returns the current number of connections for the node.
|
|
|
|
func (c *Client) GetConnectionCount() (int, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams()
|
|
|
|
resp int
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getconnectioncount", params, &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetContractState queries contract information, according to the contract script hash.
|
2020-06-09 09:12:56 +00:00
|
|
|
func (c *Client) GetContractState(hash util.Uint160) (*state.Contract, error) {
|
2020-03-11 14:14:05 +00:00
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE())
|
2020-06-09 09:12:56 +00:00
|
|
|
resp = &state.Contract{}
|
2020-03-11 14:14:05 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("getcontractstate", params, resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 11:50:06 +00:00
|
|
|
// GetNEP5Balances is a wrapper for getnep5balances RPC.
|
|
|
|
func (c *Client) GetNEP5Balances(address util.Uint160) (*result.NEP5Balances, error) {
|
|
|
|
params := request.NewRawParams(address.StringLE())
|
|
|
|
resp := new(result.NEP5Balances)
|
|
|
|
if err := c.performRequest("getnep5balances", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:16:03 +00:00
|
|
|
// GetNEP5Transfers is a wrapper for getnep5transfers RPC.
|
|
|
|
func (c *Client) GetNEP5Transfers(address string) (*result.NEP5Transfers, error) {
|
|
|
|
params := request.NewRawParams(address)
|
|
|
|
resp := new(result.NEP5Transfers)
|
|
|
|
if err := c.performRequest("getnep5transfers", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-11 14:14:05 +00:00
|
|
|
// GetPeers returns the list of nodes that the node is currently connected/disconnected from.
|
|
|
|
func (c *Client) GetPeers() (*result.GetPeers, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams()
|
|
|
|
resp = &result.GetPeers{}
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getpeers", params, resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRawMemPool returns the list of unconfirmed transactions in memory.
|
|
|
|
func (c *Client) GetRawMemPool() ([]util.Uint256, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams()
|
|
|
|
resp = new([]util.Uint256)
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getrawmempool", params, resp); err != nil {
|
|
|
|
return *resp, err
|
|
|
|
}
|
|
|
|
return *resp, nil
|
|
|
|
}
|
|
|
|
|
2020-03-03 17:43:57 +00:00
|
|
|
// GetRawTransaction returns a transaction by hash.
|
|
|
|
func (c *Client) GetRawTransaction(hash util.Uint256) (*transaction.Transaction, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE())
|
|
|
|
resp string
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if err = c.performRequest("getrawtransaction", params, &resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
txBytes, err := hex.DecodeString(resp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-18 09:00:51 +00:00
|
|
|
tx, err := transaction.NewTransactionFromBytes(c.opts.Network, txBytes)
|
2020-04-13 09:02:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-03-03 17:43:57 +00:00
|
|
|
}
|
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRawTransactionVerbose returns a transaction wrapper with additional
|
|
|
|
// metadata by transaction's hash.
|
2020-03-23 14:31:28 +00:00
|
|
|
// NOTE: to get transaction.ID and transaction.Size, use t.Hash() and io.GetVarSize(t) respectively.
|
2020-03-03 17:43:57 +00:00
|
|
|
func (c *Client) GetRawTransactionVerbose(hash util.Uint256) (*result.TransactionOutputRaw, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE(), 1)
|
|
|
|
resp = &result.TransactionOutputRaw{}
|
|
|
|
err error
|
|
|
|
)
|
2020-06-18 09:00:51 +00:00
|
|
|
resp.Network = c.opts.Network
|
2020-03-24 17:11:49 +00:00
|
|
|
if err = c.performRequest("getrawtransaction", params, resp); err != nil {
|
2020-03-03 17:43:57 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-06-23 14:27:23 +00:00
|
|
|
// GetStorageByID returns the stored value, according to the contract ID and the stored key.
|
|
|
|
func (c *Client) GetStorageByID(id int32, key []byte) ([]byte, error) {
|
|
|
|
return c.getStorage(request.NewRawParams(id, hex.EncodeToString(key)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStorageByHash returns the stored value, according to the contract script hash and the stored key.
|
|
|
|
func (c *Client) GetStorageByHash(hash util.Uint160, key []byte) ([]byte, error) {
|
|
|
|
return c.getStorage(request.NewRawParams(hash.StringLE(), hex.EncodeToString(key)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) getStorage(params request.RawParams) ([]byte, error) {
|
|
|
|
var resp string
|
2020-03-11 14:14:05 +00:00
|
|
|
if err := c.performRequest("getstorage", params, &resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
res, err := hex.DecodeString(resp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransactionHeight returns the block index in which the transaction is found.
|
|
|
|
func (c *Client) GetTransactionHeight(hash util.Uint256) (uint32, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(hash.StringLE())
|
|
|
|
resp uint32
|
|
|
|
)
|
|
|
|
if err := c.performRequest("gettransactionheight", params, &resp); err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:27:03 +00:00
|
|
|
// GetUnclaimedGas returns unclaimed GAS amount for the specified address.
|
|
|
|
func (c *Client) GetUnclaimedGas(address string) (util.Fixed8, error) {
|
2020-03-11 14:14:05 +00:00
|
|
|
var (
|
|
|
|
params = request.NewRawParams(address)
|
2020-06-01 20:27:03 +00:00
|
|
|
resp string
|
2020-03-11 14:14:05 +00:00
|
|
|
)
|
2020-06-01 20:27:03 +00:00
|
|
|
if err := c.performRequest("getunclaimedgas", params, &resp); err != nil {
|
|
|
|
return 0, err
|
2020-03-11 14:14:05 +00:00
|
|
|
}
|
2020-06-01 20:27:03 +00:00
|
|
|
i, err := strconv.ParseInt(resp, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return util.Fixed8(i), nil
|
2020-03-11 14:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetValidators returns the current NEO consensus nodes information and voting status.
|
|
|
|
func (c *Client) GetValidators() ([]result.Validator, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams()
|
|
|
|
resp = new([]result.Validator)
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getvalidators", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return *resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetVersion returns the version information about the queried node.
|
|
|
|
func (c *Client) GetVersion() (*result.Version, error) {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams()
|
|
|
|
resp = &result.Version{}
|
|
|
|
)
|
|
|
|
if err := c.performRequest("getversion", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// InvokeScript returns the result of the given script after running it true the VM.
|
|
|
|
// NOTE: This is a test invoke and will not affect the blockchain.
|
2020-06-11 08:45:17 +00:00
|
|
|
func (c *Client) InvokeScript(script string, cosigners []transaction.Cosigner) (*result.Invoke, error) {
|
2018-03-05 08:53:09 +00:00
|
|
|
var (
|
2020-06-11 08:45:17 +00:00
|
|
|
params request.RawParams
|
2020-03-03 10:08:34 +00:00
|
|
|
resp = &result.Invoke{}
|
2018-03-05 08:53:09 +00:00
|
|
|
)
|
2020-06-11 08:45:17 +00:00
|
|
|
if cosigners != nil {
|
|
|
|
params = request.NewRawParams(script, cosigners)
|
|
|
|
} else {
|
|
|
|
params = request.NewRawParams(script)
|
|
|
|
}
|
2018-03-05 08:53:09 +00:00
|
|
|
if err := c.performRequest("invokescript", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// InvokeFunction returns the results after calling the smart contract scripthash
|
2018-03-25 16:21:00 +00:00
|
|
|
// with the given operation and parameters.
|
|
|
|
// NOTE: this is test invoke and will not affect the blockchain.
|
2020-06-11 08:45:17 +00:00
|
|
|
func (c *Client) InvokeFunction(script, operation string, params []smartcontract.Parameter, cosigners []transaction.Cosigner) (*result.Invoke, error) {
|
2018-03-25 16:21:00 +00:00
|
|
|
var (
|
2020-06-11 08:45:17 +00:00
|
|
|
p request.RawParams
|
2020-03-03 10:08:34 +00:00
|
|
|
resp = &result.Invoke{}
|
2018-03-25 16:21:00 +00:00
|
|
|
)
|
2020-06-11 08:45:17 +00:00
|
|
|
if cosigners != nil {
|
|
|
|
p = request.NewRawParams(script, operation, params, cosigners)
|
|
|
|
} else {
|
|
|
|
p = request.NewRawParams(script, operation, params)
|
2018-03-25 16:21:00 +00:00
|
|
|
}
|
|
|
|
if err := c.performRequest("invokefunction", p, resp); err != nil {
|
2018-11-26 15:57:53 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2020-02-27 07:58:46 +00:00
|
|
|
// SendRawTransaction broadcasts a transaction over the NEO network.
|
2018-03-05 08:53:09 +00:00
|
|
|
// The given hex string needs to be signed with a keypair.
|
|
|
|
// When the result of the response object is true, the TX has successfully
|
|
|
|
// been broadcasted to the network.
|
2020-02-27 07:58:46 +00:00
|
|
|
func (c *Client) SendRawTransaction(rawTX *transaction.Transaction) error {
|
2018-03-05 08:53:09 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
params = request.NewRawParams(hex.EncodeToString(rawTX.Bytes()))
|
2020-02-20 18:08:22 +00:00
|
|
|
resp bool
|
2018-03-05 08:53:09 +00:00
|
|
|
)
|
2020-02-20 18:08:22 +00:00
|
|
|
if err := c.performRequest("sendrawtransaction", params, &resp); err != nil {
|
|
|
|
return err
|
2018-03-05 08:53:09 +00:00
|
|
|
}
|
2020-02-20 18:08:22 +00:00
|
|
|
if !resp {
|
|
|
|
return errors.New("sendrawtransaction returned false")
|
|
|
|
}
|
|
|
|
return nil
|
2018-03-05 08:53:09 +00:00
|
|
|
}
|
2018-12-21 09:32:18 +00:00
|
|
|
|
2020-03-11 14:14:05 +00:00
|
|
|
// SubmitBlock broadcasts a raw block over the NEO network.
|
|
|
|
func (c *Client) SubmitBlock(b block.Block) error {
|
|
|
|
var (
|
|
|
|
params request.RawParams
|
|
|
|
resp bool
|
|
|
|
)
|
|
|
|
buf := io.NewBufBinWriter()
|
|
|
|
b.EncodeBinary(buf.BinWriter)
|
|
|
|
if err := buf.Err; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
params = request.NewRawParams(hex.EncodeToString(buf.Bytes()))
|
|
|
|
|
|
|
|
if err := c.performRequest("submitblock", params, &resp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !resp {
|
|
|
|
return errors.New("submitblock returned false")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-29 14:59:07 +00:00
|
|
|
// SignAndPushInvocationTx signs and pushes given script as an invocation
|
|
|
|
// transaction using given wif to sign it and spending the amount of gas
|
|
|
|
// specified. It returns a hash of the invocation transaction and an error.
|
2020-06-23 14:15:35 +00:00
|
|
|
func (c *Client) SignAndPushInvocationTx(script []byte, acc *wallet.Account, sysfee int64, netfee util.Fixed8) (util.Uint256, error) {
|
2019-11-20 13:07:43 +00:00
|
|
|
var txHash util.Uint256
|
2019-11-29 14:59:07 +00:00
|
|
|
var err error
|
2019-11-20 13:07:43 +00:00
|
|
|
|
2020-06-18 09:00:51 +00:00
|
|
|
tx := transaction.New(c.opts.Network, script, sysfee)
|
2020-05-08 17:54:24 +00:00
|
|
|
tx.SystemFee = sysfee
|
|
|
|
|
2020-04-15 06:50:13 +00:00
|
|
|
validUntilBlock, err := c.CalculateValidUntilBlock()
|
|
|
|
if err != nil {
|
|
|
|
return txHash, errors.Wrap(err, "failed to add validUntilBlock to transaction")
|
|
|
|
}
|
|
|
|
tx.ValidUntilBlock = validUntilBlock
|
|
|
|
|
2020-04-16 14:10:42 +00:00
|
|
|
addr, err := address.StringToUint160(acc.Address)
|
|
|
|
if err != nil {
|
|
|
|
return txHash, errors.Wrap(err, "failed to get address")
|
|
|
|
}
|
|
|
|
tx.Sender = addr
|
|
|
|
|
2020-05-08 17:54:24 +00:00
|
|
|
err = c.AddNetworkFee(tx, acc)
|
|
|
|
if err != nil {
|
|
|
|
return txHash, errors.Wrapf(err, "failed to add network fee")
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:11:51 +00:00
|
|
|
if err = acc.SignTx(tx); err != nil {
|
2019-11-20 13:07:43 +00:00
|
|
|
return txHash, errors.Wrap(err, "failed to sign tx")
|
|
|
|
}
|
|
|
|
txHash = tx.Hash()
|
2020-02-27 07:58:46 +00:00
|
|
|
err = c.SendRawTransaction(tx)
|
2019-11-20 13:07:43 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return txHash, errors.Wrap(err, "failed sendning tx")
|
|
|
|
}
|
|
|
|
return txHash, nil
|
|
|
|
}
|
2020-03-11 14:14:05 +00:00
|
|
|
|
|
|
|
// ValidateAddress verifies that the address is a correct NEO address.
|
|
|
|
func (c *Client) ValidateAddress(address string) error {
|
|
|
|
var (
|
|
|
|
params = request.NewRawParams(address)
|
|
|
|
resp = &result.ValidateAddress{}
|
|
|
|
)
|
|
|
|
|
2020-03-24 17:11:49 +00:00
|
|
|
if err := c.performRequest("validateaddress", params, resp); err != nil {
|
2020-03-11 14:14:05 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !resp.IsValid {
|
|
|
|
return errors.New("validateaddress returned false")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-15 06:50:13 +00:00
|
|
|
|
|
|
|
// CalculateValidUntilBlock calculates ValidUntilBlock field for tx as
|
|
|
|
// current blockchain height + number of validators. Number of validators
|
|
|
|
// is the length of blockchain validators list got from GetValidators()
|
|
|
|
// method. Validators count is being cached and updated every 100 blocks.
|
|
|
|
func (c *Client) CalculateValidUntilBlock() (uint32, error) {
|
|
|
|
var (
|
|
|
|
result uint32
|
|
|
|
validatorsCount uint32
|
|
|
|
)
|
|
|
|
blockCount, err := c.GetBlockCount()
|
|
|
|
if err != nil {
|
|
|
|
return result, errors.Wrapf(err, "cannot get block count")
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.cache.calculateValidUntilBlock.expiresAt > blockCount {
|
|
|
|
validatorsCount = c.cache.calculateValidUntilBlock.validatorsCount
|
|
|
|
} else {
|
|
|
|
validators, err := c.GetValidators()
|
|
|
|
if err != nil {
|
|
|
|
return result, errors.Wrapf(err, "cannot get validators")
|
|
|
|
}
|
|
|
|
validatorsCount = uint32(len(validators))
|
|
|
|
c.cache.calculateValidUntilBlock = calculateValidUntilBlockCache{
|
|
|
|
validatorsCount: validatorsCount,
|
|
|
|
expiresAt: blockCount + cacheTimeout,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return blockCount + validatorsCount, nil
|
|
|
|
}
|
2020-05-08 17:54:24 +00:00
|
|
|
|
|
|
|
// AddNetworkFee adds network fee for each witness script to transaction.
|
|
|
|
func (c *Client) AddNetworkFee(tx *transaction.Transaction, acc *wallet.Account) error {
|
|
|
|
size := io.GetVarSize(tx)
|
|
|
|
if acc.Contract != nil {
|
|
|
|
netFee, sizeDelta := core.CalculateNetworkFee(acc.Contract.Script)
|
|
|
|
tx.NetworkFee += netFee
|
|
|
|
size += sizeDelta
|
|
|
|
}
|
|
|
|
for _, cosigner := range tx.Cosigners {
|
2020-06-25 07:55:45 +00:00
|
|
|
script := acc.Contract.Script
|
|
|
|
if !cosigner.Account.Equals(hash.Hash160(acc.Contract.Script)) {
|
|
|
|
contract, err := c.GetContractState(cosigner.Account)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if contract == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
script = contract.Script
|
2020-05-08 17:54:24 +00:00
|
|
|
}
|
2020-06-25 07:55:45 +00:00
|
|
|
netFee, sizeDelta := core.CalculateNetworkFee(script)
|
2020-05-08 17:54:24 +00:00
|
|
|
tx.NetworkFee += netFee
|
|
|
|
size += sizeDelta
|
|
|
|
}
|
2020-06-16 12:46:28 +00:00
|
|
|
fee, err := c.GetFeePerByte()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-23 14:15:35 +00:00
|
|
|
tx.NetworkFee += int64(size) * fee
|
2020-05-08 17:54:24 +00:00
|
|
|
return nil
|
|
|
|
}
|