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"
|
2019-11-20 13:07:43 +00:00
|
|
|
"fmt"
|
2018-12-21 09:32:18 +00:00
|
|
|
|
2020-02-14 14:44:46 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/core"
|
2018-12-21 09:32:18 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/core/transaction"
|
2019-11-20 13:07:43 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto/keys"
|
2020-01-14 12:02:38 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/rpc/request"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/rpc/response"
|
2018-12-21 09:32:18 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/smartcontract"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
2018-03-25 16:21:00 +00:00
|
|
|
|
2019-09-03 15:14:19 +00:00
|
|
|
// getBlock returns a block by its hash or index/height. If verbose is true
|
2018-03-05 08:53:09 +00:00
|
|
|
// the response will contain a pretty Block object instead of the raw hex string.
|
2019-09-03 15:25:19 +00:00
|
|
|
// missing output wrapper at the moment, thus commented out
|
|
|
|
// func (c *Client) getBlock(indexOrHash interface{}, verbose bool) (*response, error) {
|
|
|
|
// var (
|
2020-01-14 12:02:38 +00:00
|
|
|
// params = request.NewRawParams(indexOrHash)
|
2019-09-03 15:25:19 +00:00
|
|
|
// resp = &response{}
|
|
|
|
// )
|
|
|
|
// if verbose {
|
2020-01-14 12:02:38 +00:00
|
|
|
// params = request.NewRawParams(indexOrHash, 1)
|
2019-09-03 15:25:19 +00:00
|
|
|
// }
|
|
|
|
// if err := c.performRequest("getblock", params, resp); err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// return resp, nil
|
|
|
|
// }
|
2018-03-05 08:53:09 +00:00
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// GetAccountState returns detailed information about a NEO account.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (c *Client) GetAccountState(address string) (*response.AccountState, error) {
|
2018-03-05 08:53:09 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
params = request.NewRawParams(address)
|
|
|
|
resp = &response.AccountState{}
|
2018-03-05 08:53:09 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("getaccountstate", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-11-19 17:15:32 +00:00
|
|
|
// GetUnspents returns UTXOs for the given NEO account.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (c *Client) GetUnspents(address string) (*response.Unspent, error) {
|
2019-11-19 17:15:32 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
params = request.NewRawParams(address)
|
|
|
|
resp = &response.Unspent{}
|
2019-11-19 17:15:32 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("getunspents", 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-01-14 12:02:38 +00:00
|
|
|
func (c *Client) InvokeScript(script string) (*response.InvokeScript, error) {
|
2018-03-05 08:53:09 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
params = request.NewRawParams(script)
|
|
|
|
resp = &response.InvokeScript{}
|
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-01-14 12:02:38 +00:00
|
|
|
func (c *Client) InvokeFunction(script, operation string, params []smartcontract.Parameter) (*response.InvokeScript, error) {
|
2018-03-25 16:21:00 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
p = request.NewRawParams(script, operation, params)
|
|
|
|
resp = &response.InvokeScript{}
|
2018-03-25 16:21:00 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("invokefunction", p, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Invoke returns the results after calling the smart contract scripthash
|
2018-11-26 15:57:53 +00:00
|
|
|
// with the given parameters.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (c *Client) Invoke(script string, params []smartcontract.Parameter) (*response.InvokeScript, error) {
|
2018-11-26 15:57:53 +00:00
|
|
|
var (
|
2020-01-14 12:02:38 +00:00
|
|
|
p = request.NewRawParams(script, params)
|
|
|
|
resp = &response.InvokeScript{}
|
2018-11-26 15:57:53 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("invoke", p, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:14:19 +00:00
|
|
|
// getRawTransaction queries a transaction by hash.
|
2019-09-03 15:25:19 +00:00
|
|
|
// missing output wrapper at the moment, thus commented out
|
|
|
|
// func (c *Client) getRawTransaction(hash string, verbose bool) (*response, error) {
|
|
|
|
// var (
|
2020-01-14 12:02:38 +00:00
|
|
|
// params = request.NewRawParams(hash, verbose)
|
2019-09-03 15:25:19 +00:00
|
|
|
// resp = &response{}
|
|
|
|
// )
|
|
|
|
// if err := c.performRequest("getrawtransaction", params, resp); err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// return resp, nil
|
|
|
|
// }
|
2018-06-27 05:48:39 +00:00
|
|
|
|
2019-09-03 15:14:19 +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-20 16:29:21 +00:00
|
|
|
func (c *Client) sendRawTransaction(rawTX *transaction.Transaction) (*response.SendRawTx, 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 16:29:21 +00:00
|
|
|
resp = &response.SendRawTx{}
|
2018-03-05 08:53:09 +00:00
|
|
|
)
|
|
|
|
if err := c.performRequest("sendrawtransaction", params, resp); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
2018-12-21 09:32:18 +00:00
|
|
|
|
|
|
|
// SendToAddress sends an amount of specific asset to a given address.
|
2019-02-12 19:03:21 +00:00
|
|
|
// This call requires open wallet. (`wif` key in client struct.)
|
2018-12-21 09:32:18 +00:00
|
|
|
// If response.Result is `true` then transaction was formed correctly and was written in blockchain.
|
2020-02-20 16:29:21 +00:00
|
|
|
func (c *Client) SendToAddress(asset util.Uint256, address string, amount util.Fixed8) (util.Uint256, error) {
|
2018-12-21 09:32:18 +00:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
rawTx *transaction.Transaction
|
2020-02-17 11:54:53 +00:00
|
|
|
txParams = request.ContractTxParams{
|
|
|
|
AssetID: asset,
|
|
|
|
Address: address,
|
|
|
|
Value: amount,
|
|
|
|
WIF: c.WIF(),
|
|
|
|
Balancer: c.Balancer(),
|
2018-12-21 09:32:18 +00:00
|
|
|
}
|
2020-02-20 16:29:21 +00:00
|
|
|
respRaw *response.SendRawTx
|
|
|
|
resp = util.Uint256{}
|
2018-12-21 09:32:18 +00:00
|
|
|
)
|
|
|
|
|
2020-02-17 11:54:53 +00:00
|
|
|
if rawTx, err = request.CreateRawContractTransaction(txParams); err != nil {
|
2020-02-20 16:29:21 +00:00
|
|
|
return resp, errors.Wrap(err, "failed to create raw transaction for `sendtoaddress`")
|
2018-12-21 09:32:18 +00:00
|
|
|
}
|
2020-01-14 12:02:38 +00:00
|
|
|
if respRaw, err = c.sendRawTransaction(rawTx); err != nil {
|
2020-02-20 16:29:21 +00:00
|
|
|
return resp, errors.Wrap(err, "failed to send raw transaction")
|
2019-01-22 12:14:40 +00:00
|
|
|
}
|
2020-02-20 16:29:21 +00:00
|
|
|
if respRaw.Result {
|
|
|
|
return rawTx.Hash(), nil
|
|
|
|
} else {
|
|
|
|
return resp, errors.New("failed to send raw transaction")
|
2019-01-22 12:14:40 +00:00
|
|
|
}
|
2018-12-21 09:32:18 +00:00
|
|
|
}
|
2019-11-20 13:07:43 +00:00
|
|
|
|
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.
|
|
|
|
func (c *Client) SignAndPushInvocationTx(script []byte, wif *keys.WIF, gas 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
|
|
|
|
2019-11-29 14:59:07 +00:00
|
|
|
tx := transaction.NewInvocationTX(script, gas)
|
2019-11-20 13:07:43 +00:00
|
|
|
|
|
|
|
fromAddress := wif.PrivateKey.Address()
|
|
|
|
|
2019-11-29 15:00:08 +00:00
|
|
|
if gas > 0 {
|
2020-02-17 11:54:53 +00:00
|
|
|
if err = request.AddInputsAndUnspentsToTx(tx, fromAddress, core.UtilityTokenID(), gas, c); err != nil {
|
2019-11-29 15:00:08 +00:00
|
|
|
return txHash, errors.Wrap(err, "failed to add inputs and unspents to transaction")
|
|
|
|
}
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 11:54:53 +00:00
|
|
|
if err = request.SignTx(tx, wif); err != nil {
|
2019-11-20 13:07:43 +00:00
|
|
|
return txHash, errors.Wrap(err, "failed to sign tx")
|
|
|
|
}
|
|
|
|
txHash = tx.Hash()
|
|
|
|
resp, err := c.sendRawTransaction(tx)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return txHash, errors.Wrap(err, "failed sendning tx")
|
|
|
|
}
|
|
|
|
if resp.Error != nil {
|
|
|
|
return txHash, fmt.Errorf("remote returned %d: %s", resp.Error.Code, resp.Error.Message)
|
|
|
|
}
|
|
|
|
return txHash, nil
|
|
|
|
}
|