quorum/rpc/api.go

602 lines
16 KiB
Go
Raw Normal View History

2014-10-21 04:24:48 -07:00
package rpc
import (
"bytes"
2015-03-05 19:37:45 -08:00
"encoding/json"
2014-10-21 04:24:48 -07:00
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
2015-04-09 09:16:22 -07:00
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
2014-10-31 06:30:08 -07:00
"github.com/ethereum/go-ethereum/xeth"
2014-10-21 04:24:48 -07:00
)
type EthereumApi struct {
eth *xeth.XEth
}
2015-03-27 01:36:18 -07:00
func NewEthereumApi(xeth *xeth.XEth) *EthereumApi {
api := &EthereumApi{
2015-03-23 01:35:42 -07:00
eth: xeth,
}
return api
}
2015-03-23 01:24:52 -07:00
func (api *EthereumApi) xeth() *xeth.XEth {
return api.eth
2015-03-10 10:52:45 -07:00
}
2015-03-23 01:24:52 -07:00
func (api *EthereumApi) xethAtStateNum(num int64) *xeth.XEth {
return api.xeth().AtStateNum(num)
2015-03-10 10:52:45 -07:00
}
2015-03-23 01:24:52 -07:00
func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
2015-03-25 04:09:55 -07:00
// Spec at https://github.com/ethereum/wiki/wiki/JSON-RPC
2015-04-09 09:16:22 -07:00
glog.V(logger.Debug).Infof("%s %s", req.Method, req.Params)
switch req.Method {
case "web3_sha3":
2015-03-05 19:37:45 -08:00
args := new(Sha3Args)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
*reply = common.ToHex(crypto.Sha3(common.FromHex(args.Data)))
2015-03-12 17:20:46 -07:00
case "web3_clientVersion":
2015-03-24 08:33:37 -07:00
*reply = api.xeth().ClientVersion()
2015-03-12 17:20:46 -07:00
case "net_version":
2015-03-24 08:33:37 -07:00
*reply = api.xeth().NetworkVersion()
case "net_listening":
2015-03-23 01:24:52 -07:00
*reply = api.xeth().IsListening()
case "net_peerCount":
2015-04-07 04:10:00 -07:00
*reply = newHexNum(api.xeth().PeerCount())
case "eth_protocolVersion":
2015-03-25 04:09:55 -07:00
*reply = api.xeth().EthVersion()
case "eth_coinbase":
2015-04-07 04:10:00 -07:00
*reply = newHexData(api.xeth().Coinbase())
case "eth_mining":
2015-03-23 01:24:52 -07:00
*reply = api.xeth().IsMining()
case "eth_gasPrice":
v := xeth.DefaultGasPrice()
*reply = newHexNum(v.Bytes())
case "eth_accounts":
2015-03-23 01:24:52 -07:00
*reply = api.xeth().Accounts()
case "eth_blockNumber":
2015-03-24 08:33:37 -07:00
v := api.xeth().CurrentBlock().Number()
2015-04-07 04:10:00 -07:00
*reply = newHexNum(v.Bytes())
case "eth_getBalance":
2015-03-05 19:37:45 -08:00
args := new(GetBalanceArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:00:41 -07:00
2015-04-02 03:57:04 -07:00
*reply = api.xethAtStateNum(args.BlockNumber).BalanceAt(args.Address)
//v := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance()
//*reply = common.ToHex(v.Bytes())
case "eth_getStorage", "eth_storageAt":
2015-03-05 19:37:45 -08:00
args := new(GetStorageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:02:31 -07:00
2015-03-26 14:35:42 -07:00
*reply = api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Storage()
case "eth_getStorageAt":
2015-03-05 19:37:45 -08:00
args := new(GetStorageAtArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 05:45:07 -07:00
*reply = api.xethAtStateNum(args.BlockNumber).StorageAt(args.Address, args.Key)
case "eth_getTransactionCount":
2015-03-05 19:37:45 -08:00
args := new(GetTxCountArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:03:27 -07:00
count := api.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address)
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(count)).Bytes())
case "eth_getBlockTransactionCountByHash":
2015-04-02 04:17:55 -07:00
args := new(HashArgs)
2015-03-10 10:52:45 -07:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-02 04:17:55 -07:00
block := NewBlockRes(api.xeth().EthBlockByHash(args.Hash), false)
2015-04-02 11:37:51 -07:00
if block == nil {
*reply = nil
} else {
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(len(block.Transactions))).Bytes())
2015-04-02 11:37:51 -07:00
}
case "eth_getBlockTransactionCountByNumber":
2015-04-02 04:17:55 -07:00
args := new(BlockNumArg)
2015-03-10 10:52:45 -07:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-01 04:18:30 -07:00
block := NewBlockRes(api.xeth().EthBlockByNumber(args.BlockNumber), false)
2015-04-07 04:10:00 -07:00
if block == nil {
*reply = nil
break
}
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(len(block.Transactions))).Bytes())
case "eth_getUncleCountByBlockHash":
2015-04-02 04:17:55 -07:00
args := new(HashArgs)
2015-03-10 10:52:45 -07:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-02 04:17:55 -07:00
block := api.xeth().EthBlockByHash(args.Hash)
2015-04-01 04:18:30 -07:00
br := NewBlockRes(block, false)
2015-04-07 04:10:00 -07:00
if br == nil {
*reply = nil
break
}
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(len(br.Uncles))).Bytes())
case "eth_getUncleCountByBlockNumber":
2015-04-02 04:17:55 -07:00
args := new(BlockNumArg)
2015-03-10 10:52:45 -07:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
block := api.xeth().EthBlockByNumber(args.BlockNumber)
2015-04-01 04:18:30 -07:00
br := NewBlockRes(block, false)
2015-04-07 04:10:00 -07:00
if br == nil {
*reply = nil
break
}
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(len(br.Uncles))).Bytes())
case "eth_getData", "eth_getCode":
2015-03-05 19:37:45 -08:00
args := new(GetDataArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-02 04:38:12 -07:00
v := api.xethAtStateNum(args.BlockNumber).CodeAtBytes(args.Address)
*reply = newHexData(v)
2015-05-08 07:17:19 -07:00
case "eth_sign":
args := new(NewSigArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
v, err := api.xeth().Sign(args.From, args.Data, false)
2015-05-08 07:17:19 -07:00
if err != nil {
return err
}
*reply = v
2015-03-10 12:28:20 -07:00
case "eth_sendTransaction", "eth_transact":
2015-03-05 19:37:45 -08:00
args := new(NewTxArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-01-29 03:01:51 -08:00
return err
}
2015-03-19 23:15:34 -07:00
// nonce may be nil ("guess" mode)
var nonce string
if args.Nonce != nil {
nonce = args.Nonce.String()
}
v, err := api.xeth().Transact(args.From, args.To, nonce, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
2015-03-19 23:15:34 -07:00
if err != nil {
return err
}
*reply = v
case "eth_estimateGas":
_, gas, err := api.doCall(req.Params)
if err != nil {
return err
}
2015-03-19 22:58:53 -07:00
// TODO unwrap the parent method's ToHex call
if len(gas) == 0 {
2015-05-12 06:02:44 -07:00
*reply = newHexNum(0)
} else {
2015-05-12 06:02:44 -07:00
*reply = newHexNum(gas)
}
case "eth_call":
v, _, err := api.doCall(req.Params)
2015-03-19 22:58:53 -07:00
if err != nil {
return err
}
2015-04-15 10:45:20 -07:00
// TODO unwrap the parent method's ToHex call
2015-04-22 12:14:10 -07:00
if v == "0x0" {
*reply = newHexData([]byte{})
} else {
*reply = newHexData(common.FromHex(v))
}
case "eth_flush":
return NewNotImplementedError(req.Method)
2015-03-05 09:07:05 -08:00
case "eth_getBlockByHash":
2015-03-05 19:37:45 -08:00
args := new(GetBlockByHashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-10 10:52:45 -07:00
2015-03-26 14:35:42 -07:00
block := api.xeth().EthBlockByHash(args.BlockHash)
br := NewBlockRes(block, args.IncludeTxs)
2015-03-19 22:53:24 -07:00
*reply = br
2015-03-05 19:37:45 -08:00
case "eth_getBlockByNumber":
args := new(GetBlockByNumberArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-10 10:52:45 -07:00
2015-03-23 01:24:52 -07:00
block := api.xeth().EthBlockByNumber(args.BlockNumber)
br := NewBlockRes(block, args.IncludeTxs)
// If request was for "pending", nil nonsensical fields
if args.BlockNumber == -2 {
br.BlockHash = nil
br.BlockNumber = nil
br.Miner = nil
br.Nonce = nil
br.LogsBloom = nil
}
2015-03-19 22:57:23 -07:00
*reply = br
case "eth_getTransactionByHash":
args := new(HashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-04-02 05:49:33 -07:00
return err
}
tx, bhash, bnum, txi := api.xeth().EthTransactionByHash(args.Hash)
2015-03-19 17:12:12 -07:00
if tx != nil {
v := NewTransactionRes(tx)
// if the blockhash is 0, assume this is a pending transaction
if bytes.Compare(bhash.Bytes(), bytes.Repeat([]byte{0}, 32)) != 0 {
v.BlockHash = newHexData(bhash)
v.BlockNumber = newHexNum(bnum)
v.TxIndex = newHexNum(txi)
}
*reply = v
2015-03-19 17:12:12 -07:00
}
case "eth_getTransactionByBlockHashAndIndex":
2015-03-10 20:25:07 -07:00
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-26 14:35:42 -07:00
block := api.xeth().EthBlockByHash(args.Hash)
2015-04-01 04:18:30 -07:00
br := NewBlockRes(block, true)
2015-04-02 05:54:28 -07:00
if br == nil {
*reply = nil
2015-04-07 04:10:00 -07:00
break
2015-04-02 05:54:28 -07:00
}
2015-03-19 22:53:24 -07:00
2015-03-31 08:56:06 -07:00
if args.Index >= int64(len(br.Transactions)) || args.Index < 0 {
// return NewValidationError("Index", "does not exist")
*reply = nil
} else {
*reply = br.Transactions[args.Index]
2015-03-10 20:25:07 -07:00
}
case "eth_getTransactionByBlockNumberAndIndex":
2015-03-10 20:25:07 -07:00
args := new(BlockNumIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
block := api.xeth().EthBlockByNumber(args.BlockNumber)
2015-04-01 04:18:30 -07:00
v := NewBlockRes(block, true)
2015-04-02 05:54:28 -07:00
if v == nil {
*reply = nil
2015-04-07 04:10:00 -07:00
break
2015-04-02 05:54:28 -07:00
}
2015-03-19 22:57:23 -07:00
2015-03-31 08:56:06 -07:00
if args.Index >= int64(len(v.Transactions)) || args.Index < 0 {
// return NewValidationError("Index", "does not exist")
*reply = nil
} else {
*reply = v.Transactions[args.Index]
2015-03-10 20:25:07 -07:00
}
case "eth_getUncleByBlockHashAndIndex":
2015-03-11 08:27:32 -07:00
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-01 04:18:30 -07:00
br := NewBlockRes(api.xeth().EthBlockByHash(args.Hash), false)
2015-04-02 04:27:58 -07:00
if br == nil {
*reply = nil
return nil
}
2015-03-19 22:53:24 -07:00
2015-03-31 08:56:06 -07:00
if args.Index >= int64(len(br.Uncles)) || args.Index < 0 {
// return NewValidationError("Index", "does not exist")
*reply = nil
} else {
2015-04-02 08:55:42 -07:00
*reply = br.Uncles[args.Index]
2015-03-11 08:27:32 -07:00
}
case "eth_getUncleByBlockNumberAndIndex":
2015-03-11 08:27:32 -07:00
args := new(BlockNumIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
block := api.xeth().EthBlockByNumber(args.BlockNumber)
2015-04-01 04:18:30 -07:00
v := NewBlockRes(block, true)
2015-03-19 22:57:23 -07:00
2015-04-02 04:27:58 -07:00
if v == nil {
*reply = nil
return nil
}
2015-03-31 08:56:06 -07:00
if args.Index >= int64(len(v.Uncles)) || args.Index < 0 {
// return NewValidationError("Index", "does not exist")
*reply = nil
} else {
2015-04-02 08:55:42 -07:00
*reply = v.Uncles[args.Index]
2015-03-11 08:27:32 -07:00
}
case "eth_getCompilers":
var lang string
if solc, _ := api.xeth().Solc(); solc != nil {
lang = "Solidity"
}
c := []string{lang}
2015-03-19 17:04:40 -07:00
*reply = c
case "eth_compileLLL", "eth_compileSerpent":
return NewNotImplementedError(req.Method)
case "eth_compileSolidity":
solc, _ := api.xeth().Solc()
if solc == nil {
return NewNotImplementedError(req.Method)
}
args := new(SourceArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
contract, err := solc.Compile(args.Source)
if err != nil {
return err
}
2015-05-14 10:17:19 -07:00
contract.Code = newHexData(contract.Code).String()
*reply = contract
case "eth_newFilter":
args := new(BlockFilterArgs)
2015-03-05 19:37:45 -08:00
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-02-05 11:55:03 -08:00
return err
}
2015-03-19 20:03:53 -07:00
id := api.xeth().NewLogFilter(args.Earliest, args.Latest, args.Skip, args.Max, args.Address, args.Topics)
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(id)).Bytes())
2015-03-05 09:07:05 -08:00
case "eth_newBlockFilter":
*reply = newHexNum(api.xeth().NewBlockFilter())
case "eth_newPendingTransactionFilter":
*reply = newHexNum(api.xeth().NewTransactionFilter())
2015-02-19 04:21:37 -08:00
case "eth_uninstallFilter":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-02-19 04:21:37 -08:00
return err
}
2015-03-23 01:24:52 -07:00
*reply = api.xeth().UninstallFilter(args.Id)
case "eth_getFilterChanges":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
switch api.xeth().GetFilterType(args.Id) {
case xeth.BlockFilterTy:
*reply = NewHashesRes(api.xeth().BlockFilterChanged(args.Id))
case xeth.TransactionFilterTy:
*reply = NewHashesRes(api.xeth().TransactionFilterChanged(args.Id))
case xeth.LogFilterTy:
*reply = NewLogsRes(api.xeth().LogFilterChanged(args.Id))
default:
*reply = []string{} // reply empty string slice
}
case "eth_getFilterLogs":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
*reply = NewLogsRes(api.xeth().Logs(args.Id))
case "eth_getLogs":
args := new(BlockFilterArgs)
2015-03-05 19:37:45 -08:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-27 08:36:01 -07:00
*reply = NewLogsRes(api.xeth().AllLogs(args.Earliest, args.Latest, args.Skip, args.Max, args.Address, args.Topics))
case "eth_getWork":
api.xeth().SetMining(true, 0)
2015-03-23 01:35:42 -07:00
*reply = api.xeth().RemoteMining().GetWork()
case "eth_submitWork":
args := new(SubmitWorkArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-26 14:35:42 -07:00
*reply = api.xeth().RemoteMining().SubmitWork(args.Nonce, common.HexToHash(args.Digest), common.HexToHash(args.Header))
2015-03-13 07:56:41 -07:00
case "db_putString":
2015-03-05 19:37:45 -08:00
args := new(DbArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:05:48 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-27 01:36:18 -07:00
api.xeth().DbPut([]byte(args.Database+args.Key), args.Value)
2015-03-19 17:05:48 -07:00
*reply = true
2015-03-13 07:56:41 -07:00
case "db_getString":
2015-03-05 19:37:45 -08:00
args := new(DbArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:09:54 -07:00
2015-03-19 17:06:35 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-27 01:36:18 -07:00
res, _ := api.xeth().DbGet([]byte(args.Database + args.Key))
2015-03-19 17:06:35 -07:00
*reply = string(res)
2015-03-23 08:04:21 -07:00
case "db_putHex":
args := new(DbHexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
if err := args.requirements(); err != nil {
return err
}
2015-03-27 01:36:18 -07:00
api.xeth().DbPut([]byte(args.Database+args.Key), args.Value)
2015-03-23 08:04:21 -07:00
*reply = true
case "db_getHex":
args := new(DbHexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
if err := args.requirements(); err != nil {
return err
}
2015-03-27 01:36:18 -07:00
res, _ := api.xeth().DbGet([]byte(args.Database + args.Key))
2015-04-07 04:49:31 -07:00
*reply = newHexData(res)
2015-04-22 08:35:50 -07:00
2015-03-25 04:09:55 -07:00
case "shh_version":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
2015-04-22 08:35:50 -07:00
// Retrieves the currently running whisper protocol version
2015-03-25 04:09:55 -07:00
*reply = api.xeth().WhisperVersion()
case "shh_post":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
2015-04-22 08:35:50 -07:00
// Injects a new message into the whisper network
2015-03-05 19:37:45 -08:00
args := new(WhisperMessageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
err := api.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
2015-03-19 17:40:50 -07:00
if err != nil {
return err
}
*reply = true
case "shh_newIdentity":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
2015-04-22 08:35:50 -07:00
// Creates a new whisper identity to use for sending/receiving messages
2015-03-23 01:24:52 -07:00
*reply = api.xeth().Whisper().NewIdentity()
case "shh_hasIdentity":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
2015-04-22 08:35:50 -07:00
// Checks if an identity if owned or not
2015-03-05 19:37:45 -08:00
args := new(WhisperIdentityArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
*reply = api.xeth().Whisper().HasIdentity(args.Identity)
case "shh_newFilter":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
// Create a new filter to watch and match messages with
2015-03-05 19:37:45 -08:00
args := new(WhisperFilterArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
id := api.xeth().NewWhisperFilter(args.To, args.From, args.Topics)
2015-04-07 04:49:31 -07:00
*reply = newHexNum(big.NewInt(int64(id)).Bytes())
case "shh_uninstallFilter":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
2015-04-22 08:35:50 -07:00
// Remove an existing filter watching messages
2015-03-11 13:49:21 -07:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-23 01:24:52 -07:00
*reply = api.xeth().UninstallWhisperFilter(args.Id)
2015-03-05 09:07:05 -08:00
case "shh_getFilterChanges":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
// Retrieve all the new messages arrived since the last request
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-22 08:35:50 -07:00
*reply = api.xeth().WhisperMessagesChanged(args.Id)
case "shh_getMessages":
// Short circuit if whisper is not running
if api.xeth().Whisper() == nil {
return NewNotAvailableError(req.Method, "whisper offline")
}
// Retrieve all the cached messages matching a specific, existing filter
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-04-22 08:35:50 -07:00
*reply = api.xeth().WhisperMessages(args.Id)
case "eth_hashrate":
2015-04-21 06:44:02 -07:00
*reply = newHexNum(api.xeth().HashRate())
2015-03-05 19:48:03 -08:00
// case "eth_register":
2015-03-20 06:12:07 -07:00
// // Placeholder for actual type
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-23 01:24:52 -07:00
// *reply = api.xeth().Register(args.Hash)
2015-03-05 19:48:03 -08:00
// case "eth_unregister":
2015-03-20 06:12:07 -07:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-23 01:24:52 -07:00
// *reply = api.xeth().Unregister(args.Hash)
2015-03-05 19:48:03 -08:00
// case "eth_watchTx":
2015-03-20 06:12:07 -07:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-23 01:24:52 -07:00
// *reply = api.xeth().PullWatchTx(args.Hash)
default:
return NewNotImplementedError(req.Method)
}
2015-05-18 08:11:27 -07:00
// glog.V(logger.Detail).Infof("Reply: %v\n", reply)
2015-01-13 07:27:36 -08:00
return nil
}
func (api *EthereumApi) doCall(params json.RawMessage) (string, string, error) {
args := new(CallArgs)
if err := json.Unmarshal(params, &args); err != nil {
return "", "", err
}
return api.xethAtStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
}