2020-02-17 12:17:02 +00:00
|
|
|
package server
|
2018-03-23 20:36:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-02-20 17:39:32 +00:00
|
|
|
"encoding/hex"
|
2020-01-14 12:02:38 +00:00
|
|
|
"encoding/json"
|
2018-03-23 20:36:59 +00:00
|
|
|
"fmt"
|
2020-03-05 12:39:53 +00:00
|
|
|
"math"
|
2020-03-10 11:56:18 +00:00
|
|
|
"net"
|
2018-03-23 20:36:59 +00:00
|
|
|
"net/http"
|
2019-01-25 11:20:35 +00:00
|
|
|
"strconv"
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/config"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core"
|
2020-03-02 17:01:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
2020-03-05 14:48:30 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/network"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/request"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response/result"
|
2020-03-11 12:07:14 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-03-05 12:39:53 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/emit"
|
2019-02-08 08:04:38 +00:00
|
|
|
"github.com/pkg/errors"
|
2019-12-30 08:44:52 +00:00
|
|
|
"go.uber.org/zap"
|
2018-03-23 20:36:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// Server represents the JSON-RPC 2.0 server.
|
|
|
|
Server struct {
|
|
|
|
*http.Server
|
|
|
|
chain core.Blockchainer
|
2019-11-01 10:23:46 +00:00
|
|
|
config config.RPCConfig
|
2018-03-23 20:36:59 +00:00
|
|
|
coreServer *network.Server
|
2019-12-30 08:44:52 +00:00
|
|
|
log *zap.Logger
|
2020-03-10 11:56:18 +00:00
|
|
|
https *http.Server
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-03-13 07:29:49 +00:00
|
|
|
var rpcHandlers = map[string]func(*Server, request.Params) (interface{}, error){
|
|
|
|
"getaccountstate": (*Server).getAccountState,
|
|
|
|
"getapplicationlog": (*Server).getApplicationLog,
|
|
|
|
"getassetstate": (*Server).getAssetState,
|
|
|
|
"getbestblockhash": (*Server).getBestBlockHash,
|
|
|
|
"getblock": (*Server).getBlock,
|
|
|
|
"getblockcount": (*Server).getBlockCount,
|
|
|
|
"getblockhash": (*Server).getBlockHash,
|
|
|
|
"getblockheader": (*Server).getBlockHeader,
|
|
|
|
"getblocksysfee": (*Server).getBlockSysFee,
|
|
|
|
"getclaimable": (*Server).getClaimable,
|
|
|
|
"getconnectioncount": (*Server).getConnectionCount,
|
|
|
|
"getcontractstate": (*Server).getContractState,
|
|
|
|
"getnep5balances": (*Server).getNEP5Balances,
|
|
|
|
"getnep5transfers": (*Server).getNEP5Transfers,
|
|
|
|
"getpeers": (*Server).getPeers,
|
|
|
|
"getrawmempool": (*Server).getRawMempool,
|
|
|
|
"getrawtransaction": (*Server).getrawtransaction,
|
|
|
|
"getstorage": (*Server).getStorage,
|
|
|
|
"gettransactionheight": (*Server).getTransactionHeight,
|
|
|
|
"gettxout": (*Server).getTxOut,
|
|
|
|
"getunclaimed": (*Server).getUnclaimed,
|
|
|
|
"getunspents": (*Server).getUnspents,
|
|
|
|
"getvalidators": (*Server).getValidators,
|
|
|
|
"getversion": (*Server).getVersion,
|
|
|
|
"invoke": (*Server).invoke,
|
|
|
|
"invokefunction": (*Server).invokeFunction,
|
|
|
|
"invokescript": (*Server).invokescript,
|
|
|
|
"sendrawtransaction": (*Server).sendrawtransaction,
|
|
|
|
"submitblock": (*Server).submitBlock,
|
|
|
|
"validateaddress": (*Server).validateAddress,
|
|
|
|
}
|
|
|
|
|
2019-11-21 13:42:51 +00:00
|
|
|
var invalidBlockHeightError = func(index int, height int) error {
|
|
|
|
return errors.Errorf("Param at index %d should be greater than or equal to 0 and less then or equal to current block height, got: %d", index, height)
|
|
|
|
}
|
2018-03-25 10:13:47 +00:00
|
|
|
|
2020-02-17 12:17:02 +00:00
|
|
|
// New creates a new Server struct.
|
|
|
|
func New(chain core.Blockchainer, conf config.RPCConfig, coreServer *network.Server, log *zap.Logger) Server {
|
2019-11-01 10:23:46 +00:00
|
|
|
httpServer := &http.Server{
|
|
|
|
Addr: conf.Address + ":" + strconv.FormatUint(uint64(conf.Port), 10),
|
|
|
|
}
|
|
|
|
|
2020-03-10 11:56:18 +00:00
|
|
|
var tlsServer *http.Server
|
|
|
|
if cfg := conf.TLSConfig; cfg.Enabled {
|
|
|
|
tlsServer = &http.Server{
|
|
|
|
Addr: net.JoinHostPort(cfg.Address, strconv.FormatUint(uint64(cfg.Port), 10)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:36:59 +00:00
|
|
|
return Server{
|
2019-11-01 10:23:46 +00:00
|
|
|
Server: httpServer,
|
2018-03-23 20:36:59 +00:00
|
|
|
chain: chain,
|
2019-11-01 10:23:46 +00:00
|
|
|
config: conf,
|
2018-03-23 20:36:59 +00:00
|
|
|
coreServer: coreServer,
|
2019-12-30 08:44:52 +00:00
|
|
|
log: log,
|
2020-03-10 11:56:18 +00:00
|
|
|
https: tlsServer,
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start creates a new JSON-RPC server
|
|
|
|
// listening on the configured port.
|
|
|
|
func (s *Server) Start(errChan chan error) {
|
2019-11-01 10:23:46 +00:00
|
|
|
if !s.config.Enabled {
|
2019-12-30 08:44:52 +00:00
|
|
|
s.log.Info("RPC server is not enabled")
|
2019-11-01 10:23:46 +00:00
|
|
|
return
|
|
|
|
}
|
2018-03-23 20:36:59 +00:00
|
|
|
s.Handler = http.HandlerFunc(s.requestHandler)
|
2019-12-30 08:44:52 +00:00
|
|
|
s.log.Info("starting rpc-server", zap.String("endpoint", s.Addr))
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2020-03-10 11:56:18 +00:00
|
|
|
if cfg := s.config.TLSConfig; cfg.Enabled {
|
|
|
|
s.https.Handler = http.HandlerFunc(s.requestHandler)
|
|
|
|
s.log.Info("starting rpc-server (https)", zap.String("endpoint", s.https.Addr))
|
|
|
|
go func() {
|
|
|
|
err := s.https.ListenAndServeTLS(cfg.CertFile, cfg.KeyFile)
|
|
|
|
if err != nil {
|
|
|
|
s.log.Error("failed to start TLS RPC server", zap.Error(err))
|
|
|
|
}
|
|
|
|
errChan <- err
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
err := s.ListenAndServe()
|
|
|
|
if err != nil {
|
|
|
|
s.log.Error("failed to start RPC server", zap.Error(err))
|
|
|
|
}
|
|
|
|
errChan <- err
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Shutdown overrides the http.Server Shutdown
|
2018-03-23 20:36:59 +00:00
|
|
|
// method.
|
|
|
|
func (s *Server) Shutdown() error {
|
2020-03-10 11:56:18 +00:00
|
|
|
var httpsErr error
|
|
|
|
if s.config.TLSConfig.Enabled {
|
|
|
|
s.log.Info("shutting down rpc-server (https)", zap.String("endpoint", s.https.Addr))
|
|
|
|
httpsErr = s.https.Shutdown(context.Background())
|
|
|
|
}
|
|
|
|
|
2019-12-30 08:44:52 +00:00
|
|
|
s.log.Info("shutting down rpc-server", zap.String("endpoint", s.Addr))
|
2020-03-10 11:56:18 +00:00
|
|
|
err := s.Server.Shutdown(context.Background())
|
|
|
|
if err == nil {
|
|
|
|
return httpsErr
|
|
|
|
}
|
|
|
|
return err
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) requestHandler(w http.ResponseWriter, httpRequest *http.Request) {
|
2020-01-14 12:02:38 +00:00
|
|
|
req := request.NewIn()
|
2018-03-23 20:36:59 +00:00
|
|
|
|
|
|
|
if httpRequest.Method != "POST" {
|
2019-12-30 08:44:52 +00:00
|
|
|
s.WriteErrorResponse(
|
|
|
|
req,
|
2018-03-23 20:36:59 +00:00
|
|
|
w,
|
2020-01-14 12:02:38 +00:00
|
|
|
response.NewInvalidParamsError(
|
2018-03-23 20:36:59 +00:00
|
|
|
fmt.Sprintf("Invalid method '%s', please retry with 'POST'", httpRequest.Method), nil,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err := req.DecodeData(httpRequest.Body)
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
s.WriteErrorResponse(req, w, response.NewParseError("Problem parsing JSON-RPC request body", err))
|
2018-03-23 20:36:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
reqParams, err := req.Params()
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
s.WriteErrorResponse(req, w, response.NewInvalidParamsError("Problem parsing request parameters", err))
|
2018-03-23 20:36:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s.methodHandler(w, req, *reqParams)
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) methodHandler(w http.ResponseWriter, req *request.In, reqParams request.Params) {
|
2020-01-13 13:45:36 +00:00
|
|
|
s.log.Debug("processing rpc request",
|
2019-12-30 08:44:52 +00:00
|
|
|
zap.String("method", req.Method),
|
|
|
|
zap.String("params", fmt.Sprintf("%v", reqParams)))
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2019-02-20 16:28:11 +00:00
|
|
|
var (
|
|
|
|
results interface{}
|
|
|
|
resultsErr error
|
|
|
|
)
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2020-03-12 17:36:36 +00:00
|
|
|
incCounter(req.Method)
|
|
|
|
|
2020-03-13 07:29:49 +00:00
|
|
|
handler, ok := rpcHandlers[req.Method]
|
|
|
|
if ok {
|
|
|
|
results, resultsErr = handler(s, reqParams)
|
|
|
|
} else {
|
2020-01-14 12:02:38 +00:00
|
|
|
resultsErr = response.NewMethodNotFoundError(fmt.Sprintf("Method '%s' not supported", req.Method), nil)
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if resultsErr != nil {
|
2019-12-30 08:44:52 +00:00
|
|
|
s.WriteErrorResponse(req, w, resultsErr)
|
2018-03-25 10:13:47 +00:00
|
|
|
return
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-30 08:44:52 +00:00
|
|
|
s.WriteResponse(req, w, results)
|
2020-03-13 07:01:49 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 07:14:48 +00:00
|
|
|
func (s *Server) getBestBlockHash(_ request.Params) (interface{}, error) {
|
|
|
|
return "0x" + s.chain.CurrentBlockHash().StringLE(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getBlockCount(_ request.Params) (interface{}, error) {
|
|
|
|
return s.chain.BlockHeight() + 1, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getConnectionCount(_ request.Params) (interface{}, error) {
|
|
|
|
return s.coreServer.PeerCount(), nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:08:30 +00:00
|
|
|
func (s *Server) getBlock(reqParams request.Params) (interface{}, error) {
|
|
|
|
var hash util.Uint256
|
|
|
|
|
|
|
|
param, ok := reqParams.Value(0)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
switch param.Type {
|
|
|
|
case request.StringT:
|
|
|
|
var err error
|
|
|
|
hash, err = param.GetUint256()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
case request.NumberT:
|
|
|
|
num, err := s.blockHeightFromParam(param)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
hash = s.chain.GetHeaderHash(num)
|
|
|
|
default:
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
block, err := s.chain.GetBlock(hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewInternalServerError(fmt.Sprintf("Problem locating block with hash: %s", hash), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(reqParams) == 2 && reqParams[1].Value == 1 {
|
|
|
|
return result.NewBlock(block, s.chain), nil
|
|
|
|
}
|
|
|
|
writer := io.NewBufBinWriter()
|
|
|
|
block.EncodeBinary(writer.BinWriter)
|
|
|
|
return hex.EncodeToString(writer.Bytes()), nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:06:52 +00:00
|
|
|
func (s *Server) getBlockHash(reqParams request.Params) (interface{}, error) {
|
|
|
|
param, ok := reqParams.ValueWithType(0, request.NumberT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
num, err := s.blockHeightFromParam(param)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.chain.GetHeaderHash(num), nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:04:57 +00:00
|
|
|
func (s *Server) getVersion(_ request.Params) (interface{}, error) {
|
|
|
|
return result.Version{
|
|
|
|
Port: s.coreServer.Port,
|
|
|
|
Nonce: s.coreServer.ID(),
|
|
|
|
UserAgent: s.coreServer.UserAgent,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:03:58 +00:00
|
|
|
func (s *Server) getPeers(_ request.Params) (interface{}, error) {
|
|
|
|
peers := result.NewGetPeers()
|
|
|
|
peers.AddUnconnected(s.coreServer.UnconnectedPeers())
|
|
|
|
peers.AddConnected(s.coreServer.ConnectedPeers())
|
|
|
|
peers.AddBad(s.coreServer.BadPeers())
|
|
|
|
return peers, nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:03:01 +00:00
|
|
|
func (s *Server) getRawMempool(_ request.Params) (interface{}, error) {
|
|
|
|
mp := s.chain.GetMemPool()
|
|
|
|
hashList := make([]util.Uint256, 0)
|
|
|
|
for _, item := range mp.GetVerifiedTransactions() {
|
|
|
|
hashList = append(hashList, item.Tx.Hash())
|
|
|
|
}
|
|
|
|
return hashList, nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:01:49 +00:00
|
|
|
func (s *Server) validateAddress(reqParams request.Params) (interface{}, error) {
|
|
|
|
param, ok := reqParams.Value(0)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
return validateAddress(param.Value), nil
|
2018-03-25 10:13:47 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 07:00:18 +00:00
|
|
|
func (s *Server) getAssetState(reqParams request.Params) (interface{}, error) {
|
|
|
|
param, ok := reqParams.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
paramAssetID, err := param.GetUint256()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
as := s.chain.GetAssetState(paramAssetID)
|
|
|
|
if as != nil {
|
|
|
|
return result.NewAssetState(as), nil
|
|
|
|
}
|
|
|
|
return nil, response.NewRPCError("Unknown asset", "", nil)
|
|
|
|
}
|
|
|
|
|
2020-02-21 14:56:28 +00:00
|
|
|
// getApplicationLog returns the contract log based on the specified txid.
|
|
|
|
func (s *Server) getApplicationLog(reqParams request.Params) (interface{}, error) {
|
|
|
|
param, ok := reqParams.Value(0)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
txHash, err := param.GetUint256()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
appExecResult, err := s.chain.GetAppExecResult(txHash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewRPCError("Unknown transaction", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx, _, err := s.chain.GetTransaction(txHash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewRPCError("Error while getting transaction", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var scriptHash util.Uint160
|
|
|
|
switch t := tx.Data.(type) {
|
|
|
|
case *transaction.InvocationTX:
|
|
|
|
scriptHash = hash.Hash160(t.Script)
|
|
|
|
default:
|
|
|
|
return nil, response.NewRPCError("Invalid transaction type", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result.NewApplicationLog(appExecResult, scriptHash), nil
|
|
|
|
}
|
|
|
|
|
2020-02-26 12:42:04 +00:00
|
|
|
func (s *Server) getClaimable(ps request.Params) (interface{}, error) {
|
|
|
|
p, ok := ps.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
u, err := p.GetUint160FromAddress()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
var unclaimed []state.UnclaimedBalance
|
|
|
|
if acc := s.chain.GetAccountState(u); acc != nil {
|
2020-03-13 10:54:13 +00:00
|
|
|
err := acc.Unclaimed.ForEach(func(b *state.UnclaimedBalance) error {
|
|
|
|
unclaimed = append(unclaimed, *b)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-26 12:42:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sum util.Fixed8
|
|
|
|
claimable := make([]result.Claimable, 0, len(unclaimed))
|
|
|
|
for _, ub := range unclaimed {
|
|
|
|
gen, sys, err := s.chain.CalculateClaimable(ub.Value, ub.Start, ub.End)
|
|
|
|
if err != nil {
|
|
|
|
s.log.Info("error while calculating claim bonus", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
uc := gen.Add(sys)
|
|
|
|
sum += uc
|
|
|
|
|
|
|
|
claimable = append(claimable, result.Claimable{
|
|
|
|
Tx: ub.Tx,
|
|
|
|
N: int(ub.Index),
|
|
|
|
Value: ub.Value,
|
|
|
|
StartHeight: ub.Start,
|
|
|
|
EndHeight: ub.End,
|
|
|
|
Generated: gen,
|
|
|
|
SysFee: sys,
|
|
|
|
Unclaimed: uc,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result.ClaimableInfo{
|
|
|
|
Spents: claimable,
|
|
|
|
Address: p.String(),
|
|
|
|
Unclaimed: sum,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 11:50:06 +00:00
|
|
|
func (s *Server) getNEP5Balances(ps request.Params) (interface{}, error) {
|
|
|
|
p, ok := ps.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
u, err := p.GetUint160FromHex()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
2020-03-11 15:22:46 +00:00
|
|
|
as := s.chain.GetNEP5Balances(u)
|
2020-03-11 12:03:20 +00:00
|
|
|
bs := &result.NEP5Balances{
|
|
|
|
Address: address.Uint160ToString(u),
|
|
|
|
Balances: []result.NEP5Balance{},
|
|
|
|
}
|
2020-03-05 11:50:06 +00:00
|
|
|
if as != nil {
|
2020-03-05 12:39:53 +00:00
|
|
|
cache := make(map[util.Uint160]int64)
|
2020-03-11 15:22:46 +00:00
|
|
|
for h, bal := range as.Trackers {
|
2020-03-05 12:39:53 +00:00
|
|
|
dec, err := s.getDecimals(h, cache)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
amount := amountToString(bal.Balance, dec)
|
2020-03-05 11:50:06 +00:00
|
|
|
bs.Balances = append(bs.Balances, result.NEP5Balance{
|
|
|
|
Asset: h,
|
|
|
|
Amount: amount,
|
|
|
|
LastUpdated: bal.LastUpdatedBlock,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bs, nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:16:03 +00:00
|
|
|
func (s *Server) getNEP5Transfers(ps request.Params) (interface{}, error) {
|
|
|
|
p, ok := ps.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
u, err := p.GetUint160FromAddress()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
2020-03-11 12:03:20 +00:00
|
|
|
bs := &result.NEP5Transfers{
|
|
|
|
Address: address.Uint160ToString(u),
|
|
|
|
Received: []result.NEP5Transfer{},
|
|
|
|
Sent: []result.NEP5Transfer{},
|
|
|
|
}
|
2020-03-05 12:16:03 +00:00
|
|
|
lg := s.chain.GetNEP5TransferLog(u)
|
2020-03-05 12:39:53 +00:00
|
|
|
cache := make(map[util.Uint160]int64)
|
2020-03-05 12:16:03 +00:00
|
|
|
err = lg.ForEach(func(tr *state.NEP5Transfer) error {
|
|
|
|
transfer := result.NEP5Transfer{
|
|
|
|
Timestamp: tr.Timestamp,
|
|
|
|
Asset: tr.Asset,
|
|
|
|
Index: tr.Block,
|
|
|
|
TxHash: tr.Tx,
|
|
|
|
}
|
2020-03-05 12:39:53 +00:00
|
|
|
d, err := s.getDecimals(tr.Asset, cache)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-03-05 12:16:03 +00:00
|
|
|
if tr.Amount > 0 { // token was received
|
2020-03-05 12:39:53 +00:00
|
|
|
transfer.Amount = amountToString(tr.Amount, d)
|
2020-03-05 12:16:03 +00:00
|
|
|
if !tr.From.Equals(util.Uint160{}) {
|
|
|
|
transfer.Address = address.Uint160ToString(tr.From)
|
|
|
|
}
|
|
|
|
bs.Received = append(bs.Received, transfer)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:39:53 +00:00
|
|
|
transfer.Amount = amountToString(-tr.Amount, d)
|
2020-03-05 12:16:03 +00:00
|
|
|
if !tr.From.Equals(util.Uint160{}) {
|
|
|
|
transfer.Address = address.Uint160ToString(tr.To)
|
|
|
|
}
|
|
|
|
bs.Sent = append(bs.Sent, transfer)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewInternalServerError("invalid NEP5 transfer log", err)
|
|
|
|
}
|
|
|
|
return bs, nil
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:39:53 +00:00
|
|
|
func amountToString(amount int64, decimals int64) string {
|
|
|
|
if decimals == 0 {
|
|
|
|
return strconv.FormatInt(amount, 10)
|
|
|
|
}
|
|
|
|
pow := int64(math.Pow10(int(decimals)))
|
|
|
|
q := amount / pow
|
|
|
|
r := amount % pow
|
|
|
|
if r == 0 {
|
|
|
|
return strconv.FormatInt(q, 10)
|
|
|
|
}
|
|
|
|
fs := fmt.Sprintf("%%d.%%0%dd", decimals)
|
|
|
|
return fmt.Sprintf(fs, q, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getDecimals(h util.Uint160, cache map[util.Uint160]int64) (int64, error) {
|
|
|
|
if d, ok := cache[h]; ok {
|
|
|
|
return d, nil
|
|
|
|
}
|
2020-03-11 12:07:14 +00:00
|
|
|
script, err := request.CreateFunctionInvocationScript(h, request.Params{
|
|
|
|
{
|
|
|
|
Type: request.StringT,
|
|
|
|
Value: "decimals",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: request.ArrayT,
|
|
|
|
Value: []request.Param{},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
2020-03-05 12:39:53 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
2020-03-11 12:07:14 +00:00
|
|
|
res := s.runScriptInVM(script)
|
|
|
|
if res == nil || res.State != "HALT" || len(res.Stack) == 0 {
|
|
|
|
return 0, errors.New("execution error")
|
2020-03-05 12:39:53 +00:00
|
|
|
}
|
2020-03-11 12:07:14 +00:00
|
|
|
|
|
|
|
var d int64
|
|
|
|
switch item := res.Stack[len(res.Stack)-1]; item.Type {
|
|
|
|
case smartcontract.IntegerType:
|
|
|
|
d = item.Value.(int64)
|
|
|
|
case smartcontract.ByteArrayType:
|
|
|
|
d = emit.BytesToInt(item.Value.([]byte)).Int64()
|
|
|
|
default:
|
|
|
|
return 0, errors.New("invalid result")
|
2020-03-05 12:39:53 +00:00
|
|
|
}
|
|
|
|
if d < 0 {
|
|
|
|
return 0, errors.New("negative decimals")
|
|
|
|
}
|
|
|
|
cache[h] = d
|
|
|
|
return d, nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) getStorage(ps request.Params) (interface{}, error) {
|
2020-01-30 08:03:44 +00:00
|
|
|
param, ok := ps.Value(0)
|
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-01-30 08:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
scriptHash, err := param.GetUint160FromHex()
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-01-30 08:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
scriptHash = scriptHash.Reverse()
|
|
|
|
|
|
|
|
param, ok = ps.Value(1)
|
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-01-30 08:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key, err := param.GetBytesHex()
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-01-30 08:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
item := s.chain.GetStorageItem(scriptHash.Reverse(), key)
|
|
|
|
if item == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return hex.EncodeToString(item.Value), nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) getrawtransaction(reqParams request.Params) (interface{}, error) {
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
var resultsErr error
|
|
|
|
var results interface{}
|
|
|
|
|
2019-11-21 13:42:51 +00:00
|
|
|
if param0, ok := reqParams.Value(0); !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-21 13:42:51 +00:00
|
|
|
} else if txHash, err := param0.GetUint256(); err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
resultsErr = response.ErrInvalidParams
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
} else if tx, height, err := s.chain.GetTransaction(txHash); err != nil {
|
|
|
|
err = errors.Wrapf(err, "Invalid transaction hash: %s", txHash)
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.NewRPCError("Unknown transaction", err.Error(), err)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
} else if len(reqParams) >= 2 {
|
|
|
|
_header := s.chain.GetHeaderHash(int(height))
|
|
|
|
header, err := s.chain.GetHeader(_header)
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
resultsErr = response.NewInvalidParamsError(err.Error(), err)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 13:42:51 +00:00
|
|
|
param1, _ := reqParams.Value(1)
|
|
|
|
switch v := param1.Value.(type) {
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
|
|
|
|
case int, float64, bool, string:
|
|
|
|
if v == 0 || v == "0" || v == 0.0 || v == false || v == "false" {
|
|
|
|
results = hex.EncodeToString(tx.Bytes())
|
|
|
|
} else {
|
2020-01-13 10:21:44 +00:00
|
|
|
results = result.NewTransactionOutputRaw(tx, header, s.chain)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
default:
|
2020-01-13 10:21:44 +00:00
|
|
|
results = result.NewTransactionOutputRaw(tx, header, s.chain)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
results = hex.EncodeToString(tx.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, resultsErr
|
|
|
|
}
|
|
|
|
|
2020-03-05 14:20:50 +00:00
|
|
|
func (s *Server) getTransactionHeight(ps request.Params) (interface{}, error) {
|
|
|
|
p, ok := ps.Value(0)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
h, err := p.GetUint256()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
_, height, err := s.chain.GetTransaction(h)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewRPCError("unknown transaction", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
return height, nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) getTxOut(ps request.Params) (interface{}, error) {
|
2020-02-06 12:02:03 +00:00
|
|
|
p, ok := ps.Value(0)
|
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h, err := p.GetUint256()
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
p, ok = ps.ValueWithType(1, request.NumberT)
|
2020-02-06 12:02:03 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
num, err := p.GetInt()
|
|
|
|
if err != nil || num < 0 {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tx, _, err := s.chain.GetTransaction(h)
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.NewInvalidParamsError(err.Error(), err)
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if num >= len(tx.Outputs) {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.NewInvalidParamsError("invalid index", errors.New("too big index"))
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out := tx.Outputs[num]
|
2020-01-13 10:21:44 +00:00
|
|
|
return result.NewTxOutput(&out), nil
|
2020-02-06 12:02:03 +00:00
|
|
|
}
|
|
|
|
|
2020-02-15 16:53:08 +00:00
|
|
|
// getContractState returns contract state (contract information, according to the contract script hash).
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) getContractState(reqParams request.Params) (interface{}, error) {
|
2020-02-15 16:53:08 +00:00
|
|
|
var results interface{}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
param, ok := reqParams.ValueWithType(0, request.StringT)
|
2020-02-15 16:53:08 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-15 16:53:08 +00:00
|
|
|
} else if scriptHash, err := param.GetUint160FromHex(); err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-02-15 16:53:08 +00:00
|
|
|
} else {
|
|
|
|
cs := s.chain.GetContractState(scriptHash)
|
|
|
|
if cs != nil {
|
2020-01-13 10:21:44 +00:00
|
|
|
results = result.NewContractState(cs)
|
2020-02-15 16:53:08 +00:00
|
|
|
} else {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.NewRPCError("Unknown contract", "", nil)
|
2020-02-15 16:53:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
2020-03-13 07:14:06 +00:00
|
|
|
func (s *Server) getAccountState(ps request.Params) (interface{}, error) {
|
|
|
|
return s.getAccountStateAux(ps, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getUnspents(ps request.Params) (interface{}, error) {
|
|
|
|
return s.getAccountStateAux(ps, true)
|
|
|
|
}
|
|
|
|
|
2019-11-15 19:04:10 +00:00
|
|
|
// getAccountState returns account state either in short or full (unspents included) form.
|
2020-03-13 07:14:06 +00:00
|
|
|
func (s *Server) getAccountStateAux(reqParams request.Params, unspents bool) (interface{}, error) {
|
2019-11-15 19:04:10 +00:00
|
|
|
var resultsErr error
|
|
|
|
var results interface{}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
param, ok := reqParams.ValueWithType(0, request.StringT)
|
2019-11-21 13:42:51 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-26 10:13:17 +00:00
|
|
|
} else if scriptHash, err := param.GetUint160FromAddress(); err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2020-01-29 16:01:00 +00:00
|
|
|
} else {
|
|
|
|
as := s.chain.GetAccountState(scriptHash)
|
|
|
|
if as == nil {
|
|
|
|
as = state.NewAccount(scriptHash)
|
|
|
|
}
|
2019-11-15 19:04:10 +00:00
|
|
|
if unspents {
|
2019-11-26 10:13:17 +00:00
|
|
|
str, err := param.GetString()
|
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-26 10:13:17 +00:00
|
|
|
}
|
2020-01-13 10:21:44 +00:00
|
|
|
results = result.NewUnspents(as, s.chain, str)
|
2019-11-15 19:04:10 +00:00
|
|
|
} else {
|
2020-01-13 10:21:44 +00:00
|
|
|
results = result.NewAccountState(as)
|
2019-11-15 19:04:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return results, resultsErr
|
|
|
|
}
|
|
|
|
|
2020-02-19 09:44:31 +00:00
|
|
|
// getBlockSysFee returns the system fees of the block, based on the specified index.
|
2020-03-13 07:26:29 +00:00
|
|
|
func (s *Server) getBlockSysFee(reqParams request.Params) (interface{}, error) {
|
2020-02-19 09:44:31 +00:00
|
|
|
param, ok := reqParams.ValueWithType(0, request.NumberT)
|
|
|
|
if !ok {
|
|
|
|
return 0, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
num, err := s.blockHeightFromParam(param)
|
|
|
|
if err != nil {
|
|
|
|
return 0, response.NewRPCError("Invalid height", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
headerHash := s.chain.GetHeaderHash(num)
|
|
|
|
block, err := s.chain.GetBlock(headerHash)
|
|
|
|
if err != nil {
|
|
|
|
return 0, response.NewRPCError(err.Error(), "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var blockSysFee util.Fixed8
|
|
|
|
for _, tx := range block.Transactions {
|
|
|
|
blockSysFee += s.chain.SystemFee(tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
return blockSysFee, nil
|
|
|
|
}
|
|
|
|
|
2020-03-04 17:35:37 +00:00
|
|
|
// getBlockHeader returns the corresponding block header information according to the specified script hash.
|
|
|
|
func (s *Server) getBlockHeader(reqParams request.Params) (interface{}, error) {
|
|
|
|
var verbose bool
|
|
|
|
|
|
|
|
param, ok := reqParams.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
hash, err := param.GetUint256()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
param, ok = reqParams.ValueWithType(1, request.NumberT)
|
|
|
|
if ok {
|
|
|
|
v, err := param.GetInt()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
verbose = v != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
h, err := s.chain.GetHeader(hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.NewRPCError("unknown block", "", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if verbose {
|
|
|
|
return result.NewHeader(h, s.chain), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := io.NewBufBinWriter()
|
|
|
|
h.EncodeBinary(buf.BinWriter)
|
|
|
|
if buf.Err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return hex.EncodeToString(buf.Bytes()), nil
|
|
|
|
}
|
|
|
|
|
2020-03-06 17:38:17 +00:00
|
|
|
// getUnclaimed returns unclaimed GAS amount of the specified address.
|
|
|
|
func (s *Server) getUnclaimed(ps request.Params) (interface{}, error) {
|
|
|
|
p, ok := ps.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
u, err := p.GetUint160FromAddress()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
|
|
|
|
acc := s.chain.GetAccountState(u)
|
|
|
|
if acc == nil {
|
|
|
|
return nil, response.NewInternalServerError("unknown account", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result.NewUnclaimed(acc, s.chain)
|
|
|
|
}
|
|
|
|
|
2020-03-05 14:48:30 +00:00
|
|
|
// getValidators returns the current NEO consensus nodes information and voting status.
|
2020-03-13 07:26:29 +00:00
|
|
|
func (s *Server) getValidators(_ request.Params) (interface{}, error) {
|
2020-03-05 14:48:30 +00:00
|
|
|
var validators keys.PublicKeys
|
|
|
|
|
|
|
|
validators, err := s.chain.GetValidators()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
enrollments, err := s.chain.GetEnrollments()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var res []result.Validator
|
|
|
|
for _, v := range enrollments {
|
|
|
|
res = append(res, result.Validator{
|
|
|
|
PublicKey: *v.PublicKey,
|
|
|
|
Votes: v.Votes,
|
|
|
|
Active: validators.Contains(v.PublicKey),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2019-11-28 16:08:31 +00:00
|
|
|
// invoke implements the `invoke` RPC call.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) invoke(reqParams request.Params) (interface{}, error) {
|
|
|
|
scriptHashHex, ok := reqParams.ValueWithType(0, request.StringT)
|
2019-11-28 16:08:31 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-28 16:08:31 +00:00
|
|
|
}
|
|
|
|
scriptHash, err := scriptHashHex.GetUint160FromHex()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-14 12:02:38 +00:00
|
|
|
sliceP, ok := reqParams.ValueWithType(1, request.ArrayT)
|
2019-11-28 16:08:31 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-28 16:08:31 +00:00
|
|
|
}
|
|
|
|
slice, err := sliceP.GetArray()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-17 11:54:53 +00:00
|
|
|
script, err := request.CreateInvocationScript(scriptHash, slice)
|
2019-11-28 16:08:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-28 16:12:23 +00:00
|
|
|
return s.runScriptInVM(script), nil
|
2019-11-28 16:08:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 10:13:17 +00:00
|
|
|
// invokescript implements the `invokescript` RPC call.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) invokeFunction(reqParams request.Params) (interface{}, error) {
|
|
|
|
scriptHashHex, ok := reqParams.ValueWithType(0, request.StringT)
|
2019-11-26 10:13:17 +00:00
|
|
|
if !ok {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-26 10:13:17 +00:00
|
|
|
}
|
|
|
|
scriptHash, err := scriptHashHex.GetUint160FromHex()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-17 11:54:53 +00:00
|
|
|
script, err := request.CreateFunctionInvocationScript(scriptHash, reqParams[1:])
|
2019-11-26 10:13:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-28 16:12:23 +00:00
|
|
|
return s.runScriptInVM(script), nil
|
2019-11-26 10:13:17 +00:00
|
|
|
}
|
|
|
|
|
2019-10-29 15:31:39 +00:00
|
|
|
// invokescript implements the `invokescript` RPC call.
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) invokescript(reqParams request.Params) (interface{}, error) {
|
2019-11-21 14:42:02 +00:00
|
|
|
if len(reqParams) < 1 {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-10-29 15:31:39 +00:00
|
|
|
}
|
2019-11-21 14:42:02 +00:00
|
|
|
|
|
|
|
script, err := reqParams[0].GetBytesHex()
|
2019-10-29 15:31:39 +00:00
|
|
|
if err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-10-29 15:31:39 +00:00
|
|
|
}
|
2019-11-21 14:42:02 +00:00
|
|
|
|
2019-11-28 16:12:23 +00:00
|
|
|
return s.runScriptInVM(script), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// runScriptInVM runs given script in a new test VM and returns the invocation
|
|
|
|
// result.
|
2020-01-13 09:27:34 +00:00
|
|
|
func (s *Server) runScriptInVM(script []byte) *result.Invoke {
|
2019-10-29 15:31:39 +00:00
|
|
|
vm, _ := s.chain.GetTestVM()
|
2020-01-21 12:42:56 +00:00
|
|
|
vm.SetGasLimit(s.config.MaxGasInvoke)
|
2019-10-29 15:31:39 +00:00
|
|
|
vm.LoadScript(script)
|
|
|
|
_ = vm.Run()
|
2020-01-13 09:27:34 +00:00
|
|
|
result := &result.Invoke{
|
2019-10-29 15:31:39 +00:00
|
|
|
State: vm.State(),
|
2020-01-21 12:37:47 +00:00
|
|
|
GasConsumed: vm.GasConsumed().String(),
|
2019-11-28 16:12:23 +00:00
|
|
|
Script: hex.EncodeToString(script),
|
2020-03-03 10:08:34 +00:00
|
|
|
Stack: vm.Estack().ToContractParameters(),
|
2019-10-29 15:31:39 +00:00
|
|
|
}
|
2019-11-28 16:12:23 +00:00
|
|
|
return result
|
2019-10-29 15:31:39 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 17:01:32 +00:00
|
|
|
// submitBlock broadcasts a raw block over the NEO network.
|
|
|
|
func (s *Server) submitBlock(reqParams request.Params) (interface{}, error) {
|
|
|
|
param, ok := reqParams.ValueWithType(0, request.StringT)
|
|
|
|
if !ok {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
blockBytes, err := param.GetBytesHex()
|
|
|
|
if err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
b := block.Block{}
|
|
|
|
r := io.NewBinReaderFromBuf(blockBytes)
|
|
|
|
b.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, response.ErrInvalidParams
|
|
|
|
}
|
|
|
|
err = s.chain.AddBlock(&b)
|
|
|
|
if err != nil {
|
|
|
|
switch err {
|
|
|
|
case core.ErrInvalidBlockIndex, core.ErrAlreadyExists:
|
|
|
|
return nil, response.ErrAlreadyExists
|
|
|
|
default:
|
|
|
|
return nil, response.ErrValidationFailed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) sendrawtransaction(reqParams request.Params) (interface{}, error) {
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
var resultsErr error
|
|
|
|
var results interface{}
|
|
|
|
|
2019-11-21 14:42:02 +00:00
|
|
|
if len(reqParams) < 1 {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
2019-11-21 14:42:02 +00:00
|
|
|
} else if byteTx, err := reqParams[0].GetBytesHex(); err != nil {
|
2020-01-14 12:02:38 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
} else {
|
2019-09-16 09:18:13 +00:00
|
|
|
r := io.NewBinReaderFromBuf(byteTx)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
tx := &transaction.Transaction{}
|
2019-09-16 16:31:49 +00:00
|
|
|
tx.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
2020-03-05 17:04:05 +00:00
|
|
|
return nil, response.ErrInvalidParams
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
2020-03-05 17:04:05 +00:00
|
|
|
relayReason := s.coreServer.RelayTxn(tx)
|
|
|
|
switch relayReason {
|
|
|
|
case network.RelaySucceed:
|
|
|
|
results = true
|
|
|
|
case network.RelayAlreadyExists:
|
|
|
|
resultsErr = response.ErrAlreadyExists
|
|
|
|
case network.RelayOutOfMemory:
|
|
|
|
resultsErr = response.ErrOutOfMemory
|
|
|
|
case network.RelayUnableToVerify:
|
|
|
|
resultsErr = response.ErrUnableToVerify
|
|
|
|
case network.RelayInvalid:
|
|
|
|
resultsErr = response.ErrValidationFailed
|
|
|
|
case network.RelayPolicyFail:
|
|
|
|
resultsErr = response.ErrPolicyFail
|
|
|
|
default:
|
|
|
|
resultsErr = response.ErrUnknown
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, resultsErr
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
func (s *Server) blockHeightFromParam(param *request.Param) (int, error) {
|
2019-11-26 10:13:17 +00:00
|
|
|
num, err := param.GetInt()
|
|
|
|
if err != nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if num < 0 || num > int(s.chain.BlockHeight()) {
|
|
|
|
return 0, invalidBlockHeightError(0, num)
|
|
|
|
}
|
|
|
|
return num, nil
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
2020-01-13 08:27:22 +00:00
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
// WriteErrorResponse writes an error response to the ResponseWriter.
|
|
|
|
func (s *Server) WriteErrorResponse(r *request.In, w http.ResponseWriter, err error) {
|
|
|
|
jsonErr, ok := err.(*response.Error)
|
|
|
|
if !ok {
|
|
|
|
jsonErr = response.NewInternalServerError("Internal server error", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := response.Raw{
|
|
|
|
HeaderAndError: response.HeaderAndError{
|
|
|
|
Header: response.Header{
|
|
|
|
JSONRPC: r.JSONRPC,
|
|
|
|
ID: r.RawID,
|
|
|
|
},
|
|
|
|
Error: jsonErr,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
logFields := []zap.Field{
|
|
|
|
zap.Error(jsonErr.Cause),
|
|
|
|
zap.String("method", r.Method),
|
|
|
|
}
|
|
|
|
|
|
|
|
params, err := r.Params()
|
|
|
|
if err == nil {
|
|
|
|
logFields = append(logFields, zap.Any("params", params))
|
|
|
|
}
|
|
|
|
|
|
|
|
s.log.Error("Error encountered with rpc request", logFields...)
|
|
|
|
|
|
|
|
w.WriteHeader(jsonErr.HTTPCode)
|
|
|
|
s.writeServerResponse(r, w, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteResponse encodes the response and writes it to the ResponseWriter.
|
|
|
|
func (s *Server) WriteResponse(r *request.In, w http.ResponseWriter, result interface{}) {
|
2020-02-20 18:08:22 +00:00
|
|
|
resJSON, err := json.Marshal(result)
|
|
|
|
if err != nil {
|
|
|
|
s.log.Error("Error encountered while encoding response",
|
|
|
|
zap.String("err", err.Error()),
|
|
|
|
zap.String("method", r.Method))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-01-14 12:02:38 +00:00
|
|
|
resp := response.Raw{
|
|
|
|
HeaderAndError: response.HeaderAndError{
|
|
|
|
Header: response.Header{
|
|
|
|
JSONRPC: r.JSONRPC,
|
|
|
|
ID: r.RawID,
|
|
|
|
},
|
|
|
|
},
|
2020-02-20 18:08:22 +00:00
|
|
|
Result: resJSON,
|
2020-01-14 12:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s.writeServerResponse(r, w, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) writeServerResponse(r *request.In, w http.ResponseWriter, resp response.Raw) {
|
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
if s.config.EnableCORSWorkaround {
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With")
|
|
|
|
}
|
|
|
|
|
|
|
|
encoder := json.NewEncoder(w)
|
|
|
|
err := encoder.Encode(resp)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.log.Error("Error encountered while encoding response",
|
|
|
|
zap.String("err", err.Error()),
|
|
|
|
zap.String("method", r.Method))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 08:27:22 +00:00
|
|
|
// validateAddress verifies that the address is a correct NEO address
|
|
|
|
// see https://docs.neo.org/en-us/node/cli/2.9.4/api/validateaddress.html
|
2020-01-13 08:33:04 +00:00
|
|
|
func validateAddress(addr interface{}) result.ValidateAddress {
|
|
|
|
resp := result.ValidateAddress{Address: addr}
|
2020-01-13 08:27:22 +00:00
|
|
|
if addr, ok := addr.(string); ok {
|
|
|
|
_, err := address.StringToUint160(addr)
|
|
|
|
resp.IsValid = (err == nil)
|
|
|
|
}
|
|
|
|
return resp
|
|
|
|
}
|