2019-12-02 13:47:00 +00:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-08-22 20:13:38 +00:00
|
|
|
|
2020-08-19 11:46:20 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/cli"
|
2020-08-22 20:13:38 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
2019-12-10 05:37:18 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/core/rawdb"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
2019-12-02 13:47:00 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/rpc"
|
2020-08-19 11:46:20 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/turbo/adapter/ethapi"
|
2019-12-02 13:47:00 +00:00
|
|
|
)
|
|
|
|
|
2019-12-01 09:52:11 +00:00
|
|
|
// GetBlockByNumber see https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getblockbynumber
|
|
|
|
// see internal/ethapi.PublicBlockChainAPI.GetBlockByNumber
|
|
|
|
func (api *APIImpl) GetBlockByNumber(ctx context.Context, number rpc.BlockNumber, fullTx bool) (map[string]interface{}, error) {
|
2019-12-02 03:19:02 +00:00
|
|
|
additionalFields := make(map[string]interface{})
|
2019-12-01 09:52:11 +00:00
|
|
|
|
2020-07-21 08:19:04 +00:00
|
|
|
block := rawdb.ReadBlockByNumber(api.dbReader, uint64(number.Int64()))
|
|
|
|
if block == nil {
|
2020-07-22 01:31:47 +00:00
|
|
|
return nil, fmt.Errorf("block not found: %d", number.Int64())
|
2019-12-01 09:52:11 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 08:19:04 +00:00
|
|
|
additionalFields["totalDifficulty"] = rawdb.ReadTd(api.dbReader, block.Hash(), uint64(number.Int64()))
|
2020-08-19 11:46:20 +00:00
|
|
|
response, err := ethapi.RPCMarshalBlock(block, true, fullTx, additionalFields)
|
2019-12-02 03:19:02 +00:00
|
|
|
|
2020-07-21 08:19:04 +00:00
|
|
|
if err == nil && number == rpc.PendingBlockNumber {
|
|
|
|
// Pending blocks need to nil out a few fields
|
|
|
|
for _, field := range []string{"hash", "nonce", "miner"} {
|
2020-08-22 20:13:38 +00:00
|
|
|
response[field] = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return response, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockByHash see https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getblockbyhash
|
|
|
|
// see internal/ethapi.PublicBlockChainAPI.GetBlockByHash
|
|
|
|
func (api *APIImpl) GetBlockByHash(ctx context.Context, hash common.Hash, fullTx bool) (map[string]interface{}, error) {
|
|
|
|
additionalFields := make(map[string]interface{})
|
|
|
|
|
|
|
|
block := rawdb.ReadBlockByHash(api.dbReader, hash)
|
|
|
|
if block == nil {
|
|
|
|
return nil, fmt.Errorf("block not found: %x", hash)
|
|
|
|
}
|
|
|
|
number := block.NumberU64()
|
|
|
|
|
|
|
|
additionalFields["totalDifficulty"] = rawdb.ReadTd(api.dbReader, hash, number)
|
|
|
|
response, err := ethapi.RPCMarshalBlock(block, true, fullTx, additionalFields)
|
|
|
|
|
|
|
|
if err == nil && int64(number) == rpc.PendingBlockNumber.Int64() {
|
|
|
|
// Pending blocks need to nil out a few fields
|
|
|
|
for _, field := range []string{"hash", "nonce", "miner"} {
|
2020-07-21 08:19:04 +00:00
|
|
|
response[field] = nil
|
2019-12-01 09:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-21 08:19:04 +00:00
|
|
|
return response, err
|
2019-12-01 09:52:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 11:46:20 +00:00
|
|
|
func APIList(db ethdb.KV, eth ethdb.Backend, cfg cli.Flags, customApiList []rpc.API) []rpc.API {
|
2020-08-20 03:52:27 +00:00
|
|
|
var defaultAPIList []rpc.API
|
2020-04-04 07:18:10 +00:00
|
|
|
|
2020-07-22 01:31:47 +00:00
|
|
|
dbReader := ethdb.NewObjectDatabase(db)
|
2020-08-19 11:46:20 +00:00
|
|
|
apiImpl := NewAPI(db, dbReader, eth, cfg.Gascap)
|
2020-08-17 15:27:29 +00:00
|
|
|
netImpl := NewNetAPIImpl(eth)
|
2020-08-19 11:46:20 +00:00
|
|
|
dbgAPIImpl := NewPrivateDebugAPI(db, dbReader)
|
2020-08-29 15:50:24 +00:00
|
|
|
traceAPIImpl := NewTraceAPI(db, dbReader, cfg.MaxTraces)
|
2019-12-16 14:54:30 +00:00
|
|
|
|
2020-08-19 11:46:20 +00:00
|
|
|
for _, enabledAPI := range cfg.API {
|
2019-12-02 13:47:00 +00:00
|
|
|
switch enabledAPI {
|
|
|
|
case "eth":
|
2020-08-20 03:52:27 +00:00
|
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
2019-12-02 13:47:00 +00:00
|
|
|
Namespace: "eth",
|
|
|
|
Public: true,
|
2019-12-10 05:37:18 +00:00
|
|
|
Service: EthAPI(apiImpl),
|
2019-12-02 13:47:00 +00:00
|
|
|
Version: "1.0",
|
|
|
|
})
|
2019-12-10 05:37:18 +00:00
|
|
|
case "debug":
|
2020-08-20 03:52:27 +00:00
|
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
2019-12-10 05:37:18 +00:00
|
|
|
Namespace: "debug",
|
|
|
|
Public: true,
|
2019-12-16 14:27:49 +00:00
|
|
|
Service: PrivateDebugAPI(dbgAPIImpl),
|
2019-12-10 05:37:18 +00:00
|
|
|
Version: "1.0",
|
|
|
|
})
|
2020-08-17 15:27:29 +00:00
|
|
|
case "net":
|
2020-08-20 03:52:27 +00:00
|
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
2020-08-17 15:27:29 +00:00
|
|
|
Namespace: "net",
|
|
|
|
Public: true,
|
|
|
|
Service: NetAPI(netImpl),
|
|
|
|
Version: "1.0",
|
|
|
|
})
|
2020-08-29 15:50:24 +00:00
|
|
|
case "trace":
|
|
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
|
|
Namespace: "trace",
|
|
|
|
Public: true,
|
|
|
|
Service: TraceAPI(traceAPIImpl),
|
|
|
|
Version: "1.0",
|
|
|
|
})
|
2019-12-02 13:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-20 03:52:27 +00:00
|
|
|
return append(defaultAPIList, customApiList...)
|
2019-12-02 13:47:00 +00:00
|
|
|
}
|