2014-10-21 11:24:48 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2015-03-06 03:37:45 +00:00
|
|
|
"encoding/json"
|
2014-10-21 11:24:48 +00:00
|
|
|
"math/big"
|
2015-03-09 22:00:27 +00:00
|
|
|
"path"
|
2015-01-29 15:52:00 +00:00
|
|
|
"sync"
|
2014-10-21 11:24:48 +00:00
|
|
|
|
2015-03-16 18:46:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-01-29 15:52:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2015-01-28 23:24:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2015-01-29 19:39:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2014-10-31 13:30:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
2014-10-21 11:24:48 +00:00
|
|
|
)
|
|
|
|
|
2015-01-29 15:52:00 +00:00
|
|
|
type EthereumApi struct {
|
2015-02-26 10:14:54 +00:00
|
|
|
eth *xeth.XEth
|
|
|
|
xethMu sync.RWMutex
|
2015-03-20 13:12:07 +00:00
|
|
|
db common.Database
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
func NewEthereumApi(xeth *xeth.XEth, dataDir string) *EthereumApi {
|
2015-03-20 03:34:35 +00:00
|
|
|
// What about when dataDir is empty?
|
2015-03-23 15:04:21 +00:00
|
|
|
db, err := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-01-29 15:52:00 +00:00
|
|
|
api := &EthereumApi{
|
2015-03-23 08:35:42 +00:00
|
|
|
eth: xeth,
|
|
|
|
db: db,
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return api
|
2015-01-25 20:50:43 +00:00
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
func (api *EthereumApi) xeth() *xeth.XEth {
|
|
|
|
api.xethMu.RLock()
|
|
|
|
defer api.xethMu.RUnlock()
|
2015-03-10 17:52:45 +00:00
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
return api.eth
|
2015-03-10 17:52:45 +00:00
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
func (api *EthereumApi) xethAtStateNum(num int64) *xeth.XEth {
|
|
|
|
return api.xeth().AtStateNum(num)
|
2015-03-10 17:52:45 +00:00
|
|
|
}
|
|
|
|
|
2015-03-23 16:41:50 +00:00
|
|
|
func (api *EthereumApi) Close() {
|
|
|
|
api.db.Close()
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
|
2015-03-25 11:09:55 +00:00
|
|
|
// Spec at https://github.com/ethereum/wiki/wiki/JSON-RPC
|
2015-03-19 15:59:54 +00:00
|
|
|
rpclogger.Debugf("%s %s", req.Method, req.Params)
|
2015-03-20 14:25:43 +00:00
|
|
|
|
2015-01-20 19:58:51 +00:00
|
|
|
switch req.Method {
|
2015-03-05 14:58:46 +00:00
|
|
|
case "web3_sha3":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(Sha3Args)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(crypto.Sha3(common.FromHex(args.Data)))
|
2015-03-13 00:20:46 +00:00
|
|
|
case "web3_clientVersion":
|
2015-03-24 15:33:37 +00:00
|
|
|
*reply = api.xeth().ClientVersion()
|
2015-03-13 00:20:46 +00:00
|
|
|
case "net_version":
|
2015-03-24 15:33:37 +00:00
|
|
|
*reply = api.xeth().NetworkVersion()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "net_listening":
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().IsListening()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "net_peerCount":
|
2015-03-23 08:24:52 +00:00
|
|
|
v := api.xeth().PeerCount()
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(v)).Bytes())
|
2015-03-25 11:09:55 +00:00
|
|
|
case "eth_version":
|
|
|
|
*reply = api.xeth().EthVersion()
|
2015-01-20 19:58:51 +00:00
|
|
|
case "eth_coinbase":
|
2015-03-13 18:32:11 +00:00
|
|
|
// TODO handling of empty coinbase due to lack of accounts
|
2015-03-23 08:24:52 +00:00
|
|
|
res := api.xeth().Coinbase()
|
2015-03-13 18:32:11 +00:00
|
|
|
if res == "0x" || res == "0x0" {
|
|
|
|
*reply = nil
|
|
|
|
} else {
|
|
|
|
*reply = res
|
|
|
|
}
|
2015-01-20 19:58:51 +00:00
|
|
|
case "eth_mining":
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().IsMining()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_gasPrice":
|
2015-03-23 08:24:52 +00:00
|
|
|
v := api.xeth().DefaultGas()
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(v.Bytes())
|
2015-01-29 19:39:26 +00:00
|
|
|
case "eth_accounts":
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().Accounts()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_blockNumber":
|
2015-03-24 15:33:37 +00:00
|
|
|
v := api.xeth().CurrentBlock().Number()
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(v.Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBalance":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetBalanceArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:00:41 +00:00
|
|
|
|
2015-03-26 12:10:31 +00:00
|
|
|
v := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address.Hex()).Balance()
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(v.Bytes())
|
2015-03-10 19:14:38 +00:00
|
|
|
case "eth_getStorage", "eth_storageAt":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetStorageArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:02:31 +00:00
|
|
|
|
2015-03-26 09:52:32 +00:00
|
|
|
*reply = api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address.Hex()).Storage()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getStorageAt":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetStorageAtArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 12:45:07 +00:00
|
|
|
|
2015-03-26 11:11:28 +00:00
|
|
|
state := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address.Hex())
|
|
|
|
value := state.StorageString(args.Key.Hex())
|
2015-03-20 12:45:07 +00:00
|
|
|
|
|
|
|
*reply = common.Bytes2Hex(value.Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionCount":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetTxCountArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:03:27 +00:00
|
|
|
|
2015-03-26 11:47:00 +00:00
|
|
|
*reply = api.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address.Hex())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBlockTransactionCountByHash":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-26 21:24:48 +00:00
|
|
|
block := NewBlockRes(api.xeth().EthBlockByHash(args.BlockHash.Hex()))
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBlockTransactionCountByNumber":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
block := NewBlockRes(api.xeth().EthBlockByNumber(args.BlockNumber))
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleCountByBlockHash":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-26 21:24:48 +00:00
|
|
|
block := api.xeth().EthBlockByHash(args.BlockHash.Hex())
|
2015-03-20 00:29:46 +00:00
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleCountByBlockNumber":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
block := api.xeth().EthBlockByNumber(args.BlockNumber)
|
2015-03-20 00:28:25 +00:00
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
|
2015-03-14 17:57:12 +00:00
|
|
|
case "eth_getData", "eth_getCode":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetDataArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-26 12:50:22 +00:00
|
|
|
*reply = api.xethAtStateNum(args.BlockNumber).CodeAt(args.Address.Hex())
|
2015-03-10 19:28:20 +00:00
|
|
|
case "eth_sendTransaction", "eth_transact":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(NewTxArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 11:01:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 06:15:34 +00:00
|
|
|
|
2015-03-26 09:34:21 +00:00
|
|
|
v, err := api.xeth().Transact(args.From.Hex(), args.To.Hex(), args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
2015-03-20 06:15:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*reply = v
|
2015-01-29 12:10:34 +00:00
|
|
|
case "eth_call":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(NewTxArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 12:10:34 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 05:58:53 +00:00
|
|
|
|
2015-03-26 09:34:21 +00:00
|
|
|
v, err := api.xethAtStateNum(args.BlockNumber).Call(args.From.Hex(), args.To.Hex(), args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
2015-03-20 05:58:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 12:37:56 +00:00
|
|
|
*reply = v
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_flush":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 17:07:05 +00:00
|
|
|
case "eth_getBlockByHash":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 15:52:00 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-10 17:52:45 +00:00
|
|
|
|
2015-03-26 21:24:48 +00:00
|
|
|
block := api.xeth().EthBlockByHash(args.BlockHash.Hex())
|
2015-03-20 05:53:24 +00:00
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = args.IncludeTxs
|
|
|
|
|
|
|
|
*reply = br
|
2015-03-06 03:37:45 +00:00
|
|
|
case "eth_getBlockByNumber":
|
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-10 17:52:45 +00:00
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
block := api.xeth().EthBlockByNumber(args.BlockNumber)
|
2015-03-20 05:57:23 +00:00
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = args.IncludeTxs
|
|
|
|
|
|
|
|
*reply = br
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByHash":
|
2015-03-12 14:59:07 +00:00
|
|
|
// HashIndexArgs used, but only the "Hash" part we need.
|
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
}
|
2015-03-26 21:14:31 +00:00
|
|
|
tx := api.xeth().EthTransactionByHash(args.Hash)
|
2015-03-20 00:12:12 +00:00
|
|
|
if tx != nil {
|
|
|
|
*reply = NewTransactionRes(tx)
|
|
|
|
}
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByBlockHashAndIndex":
|
2015-03-11 03:25:07 +00:00
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-26 21:24:48 +00:00
|
|
|
block := api.xeth().EthBlockByHash(args.Hash.Hex())
|
2015-03-20 05:53:24 +00:00
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = true
|
|
|
|
|
|
|
|
if args.Index > int64(len(br.Transactions)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 03:25:07 +00:00
|
|
|
}
|
2015-03-20 05:53:24 +00:00
|
|
|
*reply = br.Transactions[args.Index]
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByBlockNumberAndIndex":
|
2015-03-11 03:25:07 +00:00
|
|
|
args := new(BlockNumIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
block := api.xeth().EthBlockByNumber(args.BlockNumber)
|
2015-03-20 05:57:23 +00:00
|
|
|
v := NewBlockRes(block)
|
|
|
|
v.fullTx = true
|
|
|
|
|
2015-03-11 15:25:15 +00:00
|
|
|
if args.Index > int64(len(v.Transactions)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 03:25:07 +00:00
|
|
|
}
|
2015-03-11 15:25:15 +00:00
|
|
|
*reply = v.Transactions[args.Index]
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleByBlockHashAndIndex":
|
2015-03-11 15:27:32 +00:00
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-26 21:24:48 +00:00
|
|
|
br := NewBlockRes(api.xeth().EthBlockByHash(args.Hash.Hex()))
|
2015-03-20 05:53:24 +00:00
|
|
|
|
|
|
|
if args.Index > int64(len(br.Uncles)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 15:27:32 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 15:02:01 +00:00
|
|
|
uhash := br.Uncles[args.Index].Hex()
|
2015-03-26 21:24:48 +00:00
|
|
|
uncle := NewBlockRes(api.xeth().EthBlockByHash(uhash))
|
2015-03-20 05:53:24 +00:00
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
*reply = uncle
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleByBlockNumberAndIndex":
|
2015-03-11 15:27:32 +00:00
|
|
|
args := new(BlockNumIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
block := api.xeth().EthBlockByNumber(args.BlockNumber)
|
2015-03-20 05:57:23 +00:00
|
|
|
v := NewBlockRes(block)
|
|
|
|
v.fullTx = true
|
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
if args.Index > int64(len(v.Uncles)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 15:27:32 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 15:02:01 +00:00
|
|
|
uhash := v.Uncles[args.Index].Hex()
|
2015-03-26 21:24:48 +00:00
|
|
|
uncle := NewBlockRes(api.xeth().EthBlockByHash(uhash))
|
2015-03-20 05:53:24 +00:00
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
*reply = uncle
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getCompilers":
|
2015-03-20 00:04:40 +00:00
|
|
|
c := []string{""}
|
|
|
|
*reply = c
|
2015-03-13 00:20:46 +00:00
|
|
|
case "eth_compileSolidity", "eth_compileLLL", "eth_compileSerpent":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_newFilter":
|
2015-03-20 03:55:17 +00:00
|
|
|
args := new(BlockFilterArgs)
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-05 19:55:03 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:03:53 +00:00
|
|
|
|
|
|
|
opts := toFilterOptions(args)
|
2015-03-23 08:24:52 +00:00
|
|
|
id := api.xeth().RegisterFilter(opts)
|
2015-03-20 03:03:53 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-03-05 17:07:05 +00:00
|
|
|
case "eth_newBlockFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterStringArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 17:07:05 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
id := api.xeth().NewFilterString(args.Word)
|
2015-03-20 03:06:32 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-02-19 12:21:37 +00:00
|
|
|
case "eth_uninstallFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-19 12:21:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().UninstallFilter(args.Id)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getFilterChanges":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 15:52:00 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = NewLogsRes(api.xeth().FilterChanged(args.Id))
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getFilterLogs":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-17 21:46:30 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = NewLogsRes(api.xeth().Logs(args.Id))
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getLogs":
|
2015-03-20 03:55:17 +00:00
|
|
|
args := new(BlockFilterArgs)
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-22 12:12:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:10:23 +00:00
|
|
|
opts := toFilterOptions(args)
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = NewLogsRes(api.xeth().AllLogs(opts))
|
2015-03-22 14:38:01 +00:00
|
|
|
case "eth_getWork":
|
2015-03-23 08:24:52 +00:00
|
|
|
api.xeth().SetMining(true)
|
2015-03-23 08:35:42 +00:00
|
|
|
*reply = api.xeth().RemoteMining().GetWork()
|
2015-03-22 14:38:01 +00:00
|
|
|
case "eth_submitWork":
|
2015-03-23 07:28:54 +00:00
|
|
|
args := new(SubmitWorkArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:35:42 +00:00
|
|
|
*reply = api.xeth().RemoteMining().SubmitWork(args.Nonce, args.Digest, args.Header)
|
2015-03-13 14:56:41 +00:00
|
|
|
case "db_putString":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(DbArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:05:48 +00:00
|
|
|
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 15:04:21 +00:00
|
|
|
api.db.Put([]byte(args.Database+args.Key), args.Value)
|
2015-03-20 00:05:48 +00:00
|
|
|
*reply = true
|
2015-03-13 14:56:41 +00:00
|
|
|
case "db_getString":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(DbArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:09:54 +00:00
|
|
|
|
2015-03-20 00:06:35 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
res, _ := api.db.Get([]byte(args.Database + args.Key))
|
2015-03-20 00:06:35 +00:00
|
|
|
*reply = string(res)
|
2015-03-23 15:04:21 +00: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
|
|
|
|
}
|
|
|
|
|
|
|
|
api.db.Put([]byte(args.Database+args.Key), args.Value)
|
|
|
|
*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
|
|
|
|
}
|
|
|
|
|
|
|
|
res, _ := api.db.Get([]byte(args.Database + args.Key))
|
|
|
|
*reply = common.ToHex(res)
|
2015-03-25 11:09:55 +00:00
|
|
|
case "shh_version":
|
|
|
|
*reply = api.xeth().WhisperVersion()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_post":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperMessageArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:40:50 +00:00
|
|
|
|
2015-03-23 08:24:52 +00:00
|
|
|
err := api.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
|
2015-03-20 00:40:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = true
|
2015-01-30 12:25:12 +00:00
|
|
|
case "shh_newIdentity":
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().Whisper().NewIdentity()
|
2015-03-17 13:11:01 +00:00
|
|
|
// case "shh_removeIdentity":
|
|
|
|
// args := new(WhisperIdentityArgs)
|
|
|
|
// if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
2015-03-23 08:24:52 +00:00
|
|
|
// *reply = api.xeth().Whisper().RemoveIdentity(args.Identity)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_hasIdentity":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperIdentityArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().Whisper().HasIdentity(args.Identity)
|
2015-03-13 00:20:46 +00:00
|
|
|
case "shh_newGroup", "shh_addToGroup":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-01-30 12:25:12 +00:00
|
|
|
case "shh_newFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperFilterArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:25:12 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:11:52 +00:00
|
|
|
opts := new(xeth.Options)
|
2015-03-26 19:52:09 +00:00
|
|
|
// opts.From = args.From
|
2015-03-20 03:11:52 +00:00
|
|
|
opts.To = args.To
|
|
|
|
opts.Topics = args.Topics
|
2015-03-23 08:24:52 +00:00
|
|
|
id := api.xeth().NewWhisperFilter(opts)
|
2015-03-20 03:11:52 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_uninstallFilter":
|
2015-03-11 20:49:21 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().UninstallWhisperFilter(args.Id)
|
2015-03-05 17:07:05 +00:00
|
|
|
case "shh_getFilterChanges":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:25:12 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().MessagesChanged(args.Id)
|
2015-01-30 12:47:18 +00:00
|
|
|
case "shh_getMessages":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:47:18 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-23 08:24:52 +00:00
|
|
|
*reply = api.xeth().Whisper().Messages(args.Id)
|
2015-03-22 14:38:01 +00:00
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// case "eth_register":
|
2015-03-20 13:12:07 +00:00
|
|
|
// // Placeholder for actual type
|
|
|
|
// args := new(HashIndexArgs)
|
|
|
|
// if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-06 03:48:03 +00:00
|
|
|
// return err
|
|
|
|
// }
|
2015-03-23 08:24:52 +00:00
|
|
|
// *reply = api.xeth().Register(args.Hash)
|
2015-03-06 03:48:03 +00:00
|
|
|
// case "eth_unregister":
|
2015-03-20 13:12:07 +00:00
|
|
|
// args := new(HashIndexArgs)
|
|
|
|
// if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-06 03:48:03 +00:00
|
|
|
// return err
|
|
|
|
// }
|
2015-03-23 08:24:52 +00:00
|
|
|
// *reply = api.xeth().Unregister(args.Hash)
|
2015-03-06 03:48:03 +00:00
|
|
|
// case "eth_watchTx":
|
2015-03-20 13:12:07 +00:00
|
|
|
// args := new(HashIndexArgs)
|
|
|
|
// if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-06 03:48:03 +00:00
|
|
|
// return err
|
|
|
|
// }
|
2015-03-23 08:24:52 +00:00
|
|
|
// *reply = api.xeth().PullWatchTx(args.Hash)
|
2015-01-20 19:58:51 +00:00
|
|
|
default:
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-01-20 19:58:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-25 20:50:43 +00:00
|
|
|
rpclogger.DebugDetailf("Reply: %T %s", reply, reply)
|
2015-01-13 15:27:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-02-26 10:14:54 +00:00
|
|
|
|
2015-03-20 03:55:17 +00:00
|
|
|
func toFilterOptions(options *BlockFilterArgs) *core.FilterOptions {
|
2015-03-06 03:48:03 +00:00
|
|
|
var opts core.FilterOptions
|
|
|
|
|
|
|
|
// Convert optional address slice/string to byte slice
|
|
|
|
if str, ok := options.Address.(string); ok {
|
2015-03-18 12:00:01 +00:00
|
|
|
opts.Address = []common.Address{common.HexToAddress(str)}
|
2015-03-06 03:48:03 +00:00
|
|
|
} else if slice, ok := options.Address.([]interface{}); ok {
|
2015-03-18 12:00:01 +00:00
|
|
|
bslice := make([]common.Address, len(slice))
|
2015-03-06 03:48:03 +00:00
|
|
|
for i, addr := range slice {
|
|
|
|
if saddr, ok := addr.(string); ok {
|
2015-03-18 12:00:01 +00:00
|
|
|
bslice[i] = common.HexToAddress(saddr)
|
2015-03-06 03:48:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.Address = bslice
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.Earliest = options.Earliest
|
|
|
|
opts.Latest = options.Latest
|
2015-03-09 17:19:35 +00:00
|
|
|
|
2015-03-18 12:00:01 +00:00
|
|
|
topics := make([][]common.Hash, len(options.Topics))
|
2015-03-09 17:19:35 +00:00
|
|
|
for i, topicDat := range options.Topics {
|
|
|
|
if slice, ok := topicDat.([]interface{}); ok {
|
2015-03-18 12:00:01 +00:00
|
|
|
topics[i] = make([]common.Hash, len(slice))
|
2015-03-09 17:19:35 +00:00
|
|
|
for j, topic := range slice {
|
2015-03-18 12:00:01 +00:00
|
|
|
topics[i][j] = common.HexToHash(topic.(string))
|
2015-03-09 17:19:35 +00:00
|
|
|
}
|
|
|
|
} else if str, ok := topicDat.(string); ok {
|
2015-03-18 12:00:01 +00:00
|
|
|
topics[i] = []common.Hash{common.HexToHash(str)}
|
2015-03-09 17:19:35 +00:00
|
|
|
}
|
2015-03-06 03:48:03 +00:00
|
|
|
}
|
2015-03-09 17:19:35 +00:00
|
|
|
opts.Topics = topics
|
2015-03-06 03:48:03 +00:00
|
|
|
|
2015-03-20 02:58:07 +00:00
|
|
|
return &opts
|
2015-03-06 03:48:03 +00:00
|
|
|
}
|
2015-03-20 16:42:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Work() chan<- *types.Block
|
|
|
|
SetWorkCh(chan<- Work)
|
|
|
|
Stop()
|
|
|
|
Start()
|
|
|
|
Rate() uint64
|
|
|
|
*/
|