2020-01-17 23:16:01 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-01-16 23:21:49 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-10-20 20:33:18 +00:00
|
|
|
"errors"
|
2020-09-25 13:58:18 +00:00
|
|
|
"fmt"
|
|
|
|
"math"
|
2020-01-21 19:12:35 +00:00
|
|
|
"math/big"
|
2020-09-25 13:58:18 +00:00
|
|
|
"time"
|
|
|
|
|
2020-01-21 19:12:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2020-01-16 23:21:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2020-10-20 20:33:18 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2020-01-21 19:12:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2020-10-28 03:04:19 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2020-10-26 13:58:37 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
2020-10-20 20:33:18 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2020-10-28 03:04:19 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
2020-01-16 23:21:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2020-10-20 20:33:18 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/vulcanize/ipld-eth-indexer/pkg/eth"
|
|
|
|
"github.com/vulcanize/ipld-eth-server/pkg/shared"
|
2020-01-16 23:21:49 +00:00
|
|
|
)
|
|
|
|
|
2020-06-30 00:16:52 +00:00
|
|
|
// APIName is the namespace for the watcher's eth api
|
2020-01-16 23:21:49 +00:00
|
|
|
const APIName = "eth"
|
|
|
|
|
2020-06-30 00:16:52 +00:00
|
|
|
// APIVersion is the version of the watcher's eth api
|
2020-01-16 23:21:49 +00:00
|
|
|
const APIVersion = "0.0.1"
|
|
|
|
|
|
|
|
type PublicEthAPI struct {
|
2020-10-26 13:58:37 +00:00
|
|
|
// Local db backend
|
2020-05-01 21:25:58 +00:00
|
|
|
B *Backend
|
2020-10-26 13:58:37 +00:00
|
|
|
|
|
|
|
// Remote node for forwarding cache misses
|
|
|
|
rpc *rpc.Client
|
|
|
|
ethClient *ethclient.Client
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewPublicEthAPI creates a new PublicEthAPI with the provided underlying Backend
|
2020-10-26 13:58:37 +00:00
|
|
|
func NewPublicEthAPI(b *Backend, client *rpc.Client) *PublicEthAPI {
|
2020-10-27 17:42:38 +00:00
|
|
|
var ethClient *ethclient.Client
|
|
|
|
if client != nil {
|
|
|
|
ethClient = ethclient.NewClient(client)
|
|
|
|
}
|
2020-01-16 23:21:49 +00:00
|
|
|
return &PublicEthAPI{
|
2020-10-26 13:58:37 +00:00
|
|
|
B: b,
|
|
|
|
rpc: client,
|
2020-10-27 17:42:38 +00:00
|
|
|
ethClient: ethClient,
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
Headers and blocks
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// GetHeaderByNumber returns the requested canonical block header.
|
|
|
|
// * When blockNr is -1 the chain head is returned.
|
|
|
|
// * We cannot support pending block calls since we do not have an active miner
|
|
|
|
func (pea *PublicEthAPI) GetHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (map[string]interface{}, error) {
|
|
|
|
header, err := pea.B.HeaderByNumber(ctx, number)
|
|
|
|
if header != nil && err == nil {
|
|
|
|
return pea.rpcMarshalHeader(header)
|
|
|
|
}
|
|
|
|
if pea.ethClient != nil {
|
|
|
|
if header, err := pea.ethClient.HeaderByNumber(ctx, big.NewInt(number.Int64())); header != nil && err == nil {
|
|
|
|
return pea.rpcMarshalHeader(header)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHeaderByHash returns the requested header by hash.
|
|
|
|
func (pea *PublicEthAPI) GetHeaderByHash(ctx context.Context, hash common.Hash) map[string]interface{} {
|
|
|
|
header, err := pea.B.HeaderByHash(ctx, hash)
|
|
|
|
if header != nil && err == nil {
|
2020-10-29 19:59:09 +00:00
|
|
|
if res, err := pea.rpcMarshalHeader(header); err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pea.ethClient != nil {
|
|
|
|
if header, err := pea.ethClient.HeaderByHash(ctx, hash); header != nil && err == nil {
|
|
|
|
if res, err := pea.rpcMarshalHeader(header); err != nil {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// rpcMarshalHeader uses the generalized output filler, then adds the total difficulty field
|
|
|
|
func (pea *PublicEthAPI) rpcMarshalHeader(header *types.Header) (map[string]interface{}, error) {
|
|
|
|
fields := RPCMarshalHeader(header)
|
|
|
|
td, err := pea.B.GetTd(header.Hash())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fields["totalDifficulty"] = (*hexutil.Big)(td)
|
|
|
|
return fields, nil
|
|
|
|
}
|
|
|
|
|
2020-01-16 23:21:49 +00:00
|
|
|
// BlockNumber returns the block number of the chain head.
|
|
|
|
func (pea *PublicEthAPI) BlockNumber() hexutil.Uint64 {
|
2020-05-01 21:25:58 +00:00
|
|
|
number, _ := pea.B.Retriever.RetrieveLastBlockNumber()
|
2020-01-16 23:21:49 +00:00
|
|
|
return hexutil.Uint64(number)
|
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// GetBlockByNumber returns the requested canonical block.
|
|
|
|
// * When blockNr is -1 the chain head is returned.
|
|
|
|
// * We cannot support pending block calls since we do not have an active miner
|
|
|
|
// * When fullTx is true all transactions in the block are returned, otherwise
|
|
|
|
// only the transaction hash is returned.
|
|
|
|
func (pea *PublicEthAPI) GetBlockByNumber(ctx context.Context, number rpc.BlockNumber, fullTx bool) (map[string]interface{}, error) {
|
|
|
|
block, err := pea.B.BlockByNumber(ctx, number)
|
|
|
|
if block != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlock(block, true, fullTx)
|
|
|
|
}
|
|
|
|
if pea.ethClient != nil {
|
|
|
|
if block, err := pea.ethClient.BlockByNumber(ctx, big.NewInt(number.Int64())); block != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlock(block, true, fullTx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockByHash returns the requested block. When fullTx is true all transactions in the block are returned in full
|
|
|
|
// detail, otherwise only the transaction hash is returned.
|
|
|
|
func (pea *PublicEthAPI) GetBlockByHash(ctx context.Context, hash common.Hash, fullTx bool) (map[string]interface{}, error) {
|
|
|
|
block, err := pea.B.BlockByHash(ctx, hash)
|
|
|
|
if block != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlock(block, true, fullTx)
|
|
|
|
}
|
|
|
|
if pea.ethClient != nil {
|
|
|
|
if block, err := pea.ethClient.BlockByHash(ctx, hash); block != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlock(block, true, fullTx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-10-29 19:59:09 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
Uncles
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// GetUncleByBlockNumberAndIndex returns the uncle block for the given block hash and index. When fullTx is true
|
|
|
|
// all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
|
|
|
|
func (pea *PublicEthAPI) GetUncleByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) (map[string]interface{}, error) {
|
|
|
|
block, err := pea.B.BlockByNumber(ctx, blockNr)
|
2020-10-28 13:22:57 +00:00
|
|
|
if block != nil && err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
uncles := block.Uncles()
|
|
|
|
if index >= hexutil.Uint(len(uncles)) {
|
|
|
|
logrus.Debugf("uncle with index %s request at block number %d was not found", index.String(), blockNr.Int64())
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
block = types.NewBlockWithHeader(uncles[index])
|
|
|
|
return pea.rpcMarshalBlock(block, false, false)
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
if uncle, uncleHashes, err := getBlockAndUncleHashes(pea.rpc, ctx, "eth_getUncleByBlockNumberAndIndex", blockNr, index); uncle != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlockWithUncleHashes(uncle, uncleHashes, false, false)
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUncleByBlockHashAndIndex returns the uncle block for the given block hash and index. When fullTx is true
|
|
|
|
// all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
|
|
|
|
func (pea *PublicEthAPI) GetUncleByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) (map[string]interface{}, error) {
|
|
|
|
block, err := pea.B.BlockByHash(ctx, blockHash)
|
|
|
|
if block != nil {
|
|
|
|
uncles := block.Uncles()
|
|
|
|
if index >= hexutil.Uint(len(uncles)) {
|
|
|
|
logrus.Debugf("uncle with index %s request at block hash %s was not found", index.String(), blockHash.Hex())
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
block = types.NewBlockWithHeader(uncles[index])
|
|
|
|
return pea.rpcMarshalBlock(block, false, false)
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
if uncle, uncleHashes, err := getBlockAndUncleHashes(pea.rpc, ctx, "eth_getUncleByBlockHashAndIndex", blockHash, index); uncle != nil && err == nil {
|
|
|
|
return pea.rpcMarshalBlockWithUncleHashes(uncle, uncleHashes, false, false)
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUncleCountByBlockNumber returns number of uncles in the block for the given block number
|
|
|
|
func (pea *PublicEthAPI) GetUncleCountByBlockNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
|
2020-10-28 13:22:57 +00:00
|
|
|
if block, err := pea.B.BlockByNumber(ctx, blockNr); block != nil && err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
n := hexutil.Uint(len(block.Uncles()))
|
|
|
|
return &n
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var num *hexutil.Uint
|
|
|
|
if err := pea.rpc.CallContext(ctx, &num, "eth_getUncleCountByBlockNumber", blockNr); num != nil && err == nil {
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUncleCountByBlockHash returns number of uncles in the block for the given block hash
|
|
|
|
func (pea *PublicEthAPI) GetUncleCountByBlockHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
|
2020-10-28 13:22:57 +00:00
|
|
|
if block, err := pea.B.BlockByHash(ctx, blockHash); block != nil && err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
n := hexutil.Uint(len(block.Uncles()))
|
|
|
|
return &n
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var num *hexutil.Uint
|
|
|
|
if err := pea.rpc.CallContext(ctx, &num, "eth_getUncleCountByBlockHash", blockHash); num != nil && err == nil {
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Transactions
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// GetTransactionCount returns the number of transactions the given address has sent for the given block number
|
|
|
|
func (pea *PublicEthAPI) GetTransactionCount(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Uint64, error) {
|
2020-10-30 03:07:39 +00:00
|
|
|
count, err := pea.localGetTransactionCount(ctx, address, blockNrOrHash)
|
|
|
|
if count != nil && err == nil {
|
|
|
|
return count, nil
|
2020-10-28 03:04:19 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var num *hexutil.Uint64
|
|
|
|
if err := pea.rpc.CallContext(ctx, &num, "eth_getTransactionCount", address, blockNrOrHash); num != nil && err == nil {
|
|
|
|
return num, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
2020-10-28 03:04:19 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 03:07:39 +00:00
|
|
|
func (pea *PublicEthAPI) localGetTransactionCount(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Uint64, error) {
|
|
|
|
account, err := pea.B.GetAccountByNumberOrHash(ctx, address, blockNrOrHash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
nonce := hexutil.Uint64(account.Nonce)
|
|
|
|
return &nonce, nil
|
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// GetBlockTransactionCountByNumber returns the number of transactions in the block with the given block number.
|
|
|
|
func (pea *PublicEthAPI) GetBlockTransactionCountByNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
|
|
|
|
if block, _ := pea.B.BlockByNumber(ctx, blockNr); block != nil {
|
|
|
|
n := hexutil.Uint(len(block.Transactions()))
|
|
|
|
return &n
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var num *hexutil.Uint
|
|
|
|
if err := pea.rpc.CallContext(ctx, &num, "eth_getBlockTransactionCountByNumber", blockNr); num != nil && err == nil {
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBlockTransactionCountByHash returns the number of transactions in the block with the given hash.
|
|
|
|
func (pea *PublicEthAPI) GetBlockTransactionCountByHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
|
|
|
|
if block, _ := pea.B.BlockByHash(ctx, blockHash); block != nil {
|
|
|
|
n := hexutil.Uint(len(block.Transactions()))
|
|
|
|
return &n
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var num *hexutil.Uint
|
|
|
|
if err := pea.rpc.CallContext(ctx, &num, "eth_getBlockTransactionCountByHash", blockHash); num != nil && err == nil {
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransactionByBlockNumberAndIndex returns the transaction for the given block number and index.
|
|
|
|
func (pea *PublicEthAPI) GetTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) *RPCTransaction {
|
|
|
|
if block, _ := pea.B.BlockByNumber(ctx, blockNr); block != nil {
|
|
|
|
return newRPCTransactionFromBlockIndex(block, uint64(index))
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var tx *RPCTransaction
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getTransactionByBlockNumberAndIndex", blockNr, index); tx != nil && err == nil {
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransactionByBlockHashAndIndex returns the transaction for the given block hash and index.
|
|
|
|
func (pea *PublicEthAPI) GetTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) *RPCTransaction {
|
|
|
|
if block, _ := pea.B.BlockByHash(ctx, blockHash); block != nil {
|
|
|
|
return newRPCTransactionFromBlockIndex(block, uint64(index))
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var tx *RPCTransaction
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getTransactionByBlockHashAndIndex", blockHash, index); tx != nil && err == nil {
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRawTransactionByBlockNumberAndIndex returns the bytes of the transaction for the given block number and index.
|
|
|
|
func (pea *PublicEthAPI) GetRawTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) hexutil.Bytes {
|
|
|
|
if block, _ := pea.B.BlockByNumber(ctx, blockNr); block != nil {
|
|
|
|
return newRPCRawTransactionFromBlockIndex(block, uint64(index))
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var tx hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getRawTransactionByBlockNumberAndIndex", blockNr, index); tx != nil && err == nil {
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRawTransactionByBlockHashAndIndex returns the bytes of the transaction for the given block hash and index.
|
|
|
|
func (pea *PublicEthAPI) GetRawTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) hexutil.Bytes {
|
|
|
|
if block, _ := pea.B.BlockByHash(ctx, blockHash); block != nil {
|
|
|
|
return newRPCRawTransactionFromBlockIndex(block, uint64(index))
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var tx hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getRawTransactionByBlockHashAndIndex", blockHash, index); tx != nil && err == nil {
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransactionByHash returns the transaction for the given hash
|
|
|
|
// eth ipld-eth-server cannot currently handle pending/tx_pool txs
|
|
|
|
func (pea *PublicEthAPI) GetTransactionByHash(ctx context.Context, hash common.Hash) (*RPCTransaction, error) {
|
|
|
|
tx, blockHash, blockNumber, index, err := pea.B.GetTransaction(ctx, hash)
|
|
|
|
if tx != nil && err == nil {
|
|
|
|
return NewRPCTransaction(tx, blockHash, blockNumber, index), nil
|
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
2020-10-28 13:22:57 +00:00
|
|
|
var tx *RPCTransaction
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getTransactionByHash", hash); tx != nil && err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRawTransactionByHash returns the bytes of the transaction for the given hash.
|
|
|
|
func (pea *PublicEthAPI) GetRawTransactionByHash(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) {
|
|
|
|
// Retrieve a finalized transaction, or a pooled otherwise
|
|
|
|
tx, _, _, _, err := pea.B.GetTransaction(ctx, hash)
|
|
|
|
if tx != nil && err == nil {
|
|
|
|
return rlp.EncodeToBytes(tx)
|
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
2020-10-28 13:22:57 +00:00
|
|
|
var tx hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &tx, "eth_getRawTransactionByHash", hash); tx != nil && err == nil {
|
2020-10-28 03:04:19 +00:00
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Receipts and Logs
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// GetTransactionReceipt returns the transaction receipt for the given transaction hash.
|
|
|
|
func (pea *PublicEthAPI) GetTransactionReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) {
|
2020-10-29 19:59:09 +00:00
|
|
|
receipt, err := pea.localGetTransactionReceipt(ctx, hash)
|
|
|
|
if receipt != nil && err == nil {
|
|
|
|
return receipt, nil
|
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
|
|
|
if receipt := pea.remoteGetTransactionReceipt(ctx, hash); receipt != nil {
|
|
|
|
return receipt, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pea *PublicEthAPI) localGetTransactionReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) {
|
2020-10-30 03:07:39 +00:00
|
|
|
// TODO: this can be optimized for Postgres
|
2020-10-28 13:22:57 +00:00
|
|
|
tx, blockHash, blockNumber, index, err := pea.B.GetTransaction(ctx, hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
if tx == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
receipts, err := pea.B.GetReceipts(ctx, blockHash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(receipts) <= int(index) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
receipt := receipts[index]
|
|
|
|
|
|
|
|
var signer types.Signer = types.FrontierSigner{}
|
|
|
|
if tx.Protected() {
|
|
|
|
signer = types.NewEIP155Signer(tx.ChainId())
|
|
|
|
}
|
|
|
|
from, _ := types.Sender(signer, tx)
|
|
|
|
|
|
|
|
fields := map[string]interface{}{
|
|
|
|
"blockHash": blockHash,
|
|
|
|
"blockNumber": hexutil.Uint64(blockNumber),
|
|
|
|
"transactionHash": hash,
|
|
|
|
"transactionIndex": hexutil.Uint64(index),
|
|
|
|
"from": from,
|
|
|
|
"to": tx.To(),
|
|
|
|
"gasUsed": hexutil.Uint64(receipt.GasUsed),
|
|
|
|
"cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
|
|
|
|
"contractAddress": nil,
|
|
|
|
"logs": receipt.Logs,
|
|
|
|
"logsBloom": receipt.Bloom,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assign receipt status or post state.
|
|
|
|
if len(receipt.PostState) > 0 {
|
|
|
|
fields["root"] = hexutil.Bytes(receipt.PostState)
|
|
|
|
} else {
|
|
|
|
fields["status"] = hexutil.Uint(receipt.Status)
|
|
|
|
}
|
|
|
|
if receipt.Logs == nil {
|
2020-10-30 03:07:39 +00:00
|
|
|
fields["logs"] = []*types.Log{}
|
2020-10-28 03:04:19 +00:00
|
|
|
}
|
|
|
|
// If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation
|
|
|
|
if receipt.ContractAddress != (common.Address{}) {
|
|
|
|
fields["contractAddress"] = receipt.ContractAddress
|
|
|
|
}
|
|
|
|
return fields, nil
|
|
|
|
}
|
|
|
|
|
2020-10-28 13:22:57 +00:00
|
|
|
func (pea *PublicEthAPI) remoteGetTransactionReceipt(ctx context.Context, hash common.Hash) map[string]interface{} {
|
2020-10-29 19:59:09 +00:00
|
|
|
var rct *RPCReceipt
|
|
|
|
if err := pea.rpc.CallContext(ctx, &rct, "eth_getTransactionReceipt", hash); rct != nil && err == nil {
|
|
|
|
return map[string]interface{}{
|
|
|
|
"blockHash": rct.BlockHash,
|
|
|
|
"blockNumber": rct.BlockNumber,
|
|
|
|
"transactionHash": rct.TransactionHash,
|
|
|
|
"transactionIndex": rct.TransactionIndex,
|
|
|
|
"from": rct.From,
|
|
|
|
"to": rct.To,
|
|
|
|
"gasUsed": rct.GasUsed,
|
|
|
|
"cumulativeGasUsed": rct.CumulativeGsUsed,
|
|
|
|
"contractAddress": rct.ContractAddress,
|
|
|
|
"logs": rct.Logs,
|
|
|
|
"logsBloom": rct.Bloom,
|
|
|
|
"root": rct.Root,
|
|
|
|
"status": rct.Status,
|
2020-10-28 13:22:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-21 19:12:35 +00:00
|
|
|
// GetLogs returns logs matching the given argument that are stored within the state.
|
|
|
|
//
|
|
|
|
// https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getlogs
|
|
|
|
func (pea *PublicEthAPI) GetLogs(ctx context.Context, crit ethereum.FilterQuery) ([]*types.Log, error) {
|
2020-10-28 13:22:57 +00:00
|
|
|
logs, err := pea.localGetLogs(ctx, crit)
|
2020-10-26 13:58:37 +00:00
|
|
|
if err != nil && pea.rpc != nil {
|
|
|
|
if arg, err := toFilterArg(crit); err == nil {
|
2020-10-28 13:22:57 +00:00
|
|
|
var res []*types.Log
|
|
|
|
if err := pea.rpc.CallContext(ctx, &res, "eth_getLogs", arg); err == nil {
|
|
|
|
return res, nil
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return logs, err
|
|
|
|
}
|
|
|
|
|
2020-10-28 13:22:57 +00:00
|
|
|
func (pea *PublicEthAPI) localGetLogs(ctx context.Context, crit ethereum.FilterQuery) ([]*types.Log, error) {
|
2020-10-30 03:07:39 +00:00
|
|
|
// TODO: this can be optimized away from using the old cid retriever and ipld fetcher interfaces
|
2020-01-21 19:12:35 +00:00
|
|
|
// Convert FilterQuery into ReceiptFilter
|
|
|
|
addrStrs := make([]string, len(crit.Addresses))
|
|
|
|
for i, addr := range crit.Addresses {
|
|
|
|
addrStrs[i] = addr.String()
|
|
|
|
}
|
|
|
|
topicStrSets := make([][]string, 4)
|
|
|
|
for i, topicSet := range crit.Topics {
|
|
|
|
if i > 3 {
|
2020-02-20 22:13:19 +00:00
|
|
|
// don't allow more than 4 topics
|
2020-01-21 19:12:35 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, topic := range topicSet {
|
|
|
|
topicStrSets[i] = append(topicStrSets[i], topic.String())
|
|
|
|
}
|
|
|
|
}
|
2020-02-03 18:22:29 +00:00
|
|
|
filter := ReceiptFilter{
|
2020-04-02 03:34:06 +00:00
|
|
|
LogAddresses: addrStrs,
|
|
|
|
Topics: topicStrSets,
|
2020-01-21 19:12:35 +00:00
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
|
|
|
|
// Begin tx
|
|
|
|
tx, err := pea.B.DB.Beginx()
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
defer func() {
|
|
|
|
if p := recover(); p != nil {
|
|
|
|
shared.Rollback(tx)
|
|
|
|
panic(p)
|
|
|
|
} else if err != nil {
|
|
|
|
shared.Rollback(tx)
|
|
|
|
} else {
|
|
|
|
err = tx.Commit()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-01-21 19:12:35 +00:00
|
|
|
// If we have a blockhash to filter on, fire off single retrieval query
|
|
|
|
if crit.BlockHash != nil {
|
2020-05-01 21:25:58 +00:00
|
|
|
rctCIDs, err := pea.B.Retriever.RetrieveRctCIDs(tx, filter, 0, crit.BlockHash, nil)
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
rctIPLDs, err := pea.B.Fetcher.FetchRcts(tx, rctCIDs)
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-21 19:12:35 +00:00
|
|
|
return extractLogsOfInterest(rctIPLDs, filter.Topics)
|
|
|
|
}
|
|
|
|
// Otherwise, create block range from criteria
|
|
|
|
// nil values are filled in; to request a single block have both ToBlock and FromBlock equal that number
|
|
|
|
startingBlock := crit.FromBlock
|
|
|
|
endingBlock := crit.ToBlock
|
|
|
|
if startingBlock == nil {
|
2020-10-26 13:58:37 +00:00
|
|
|
startingBlock = common.Big0
|
2020-01-21 19:12:35 +00:00
|
|
|
}
|
|
|
|
if endingBlock == nil {
|
2020-05-01 21:25:58 +00:00
|
|
|
endingBlockInt, err := pea.B.Retriever.RetrieveLastBlockNumber()
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
endingBlock = big.NewInt(endingBlockInt)
|
|
|
|
}
|
|
|
|
start := startingBlock.Int64()
|
|
|
|
end := endingBlock.Int64()
|
2020-08-31 15:47:06 +00:00
|
|
|
allRctCIDs := make([]eth.ReceiptModel, 0)
|
2020-01-21 19:12:35 +00:00
|
|
|
for i := start; i <= end; i++ {
|
2020-05-01 21:25:58 +00:00
|
|
|
rctCIDs, err := pea.B.Retriever.RetrieveRctCIDs(tx, filter, i, nil, nil)
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
allRctCIDs = append(allRctCIDs, rctCIDs...)
|
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
rctIPLDs, err := pea.B.Fetcher.FetchRcts(tx, allRctCIDs)
|
2020-05-01 16:07:47 +00:00
|
|
|
if err != nil {
|
2020-01-21 19:12:35 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 16:07:47 +00:00
|
|
|
if err := tx.Commit(); err != nil {
|
2020-01-21 19:12:35 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 21:25:58 +00:00
|
|
|
logs, err := extractLogsOfInterest(rctIPLDs, filter.Topics)
|
|
|
|
return logs, err // need to return err variable so that we return the err = tx.Commit() assignment in the defer
|
2020-01-21 19:12:35 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
State and Storage
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// GetBalance returns the amount of wei for the given address in the state of the
|
|
|
|
// given block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta
|
|
|
|
// block numbers are also allowed.
|
|
|
|
func (pea *PublicEthAPI) GetBalance(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Big, error) {
|
2020-10-30 03:07:39 +00:00
|
|
|
bal, err := pea.localGetBalance(ctx, address, blockNrOrHash)
|
|
|
|
if bal != nil && err == nil {
|
|
|
|
return bal, nil
|
2020-10-28 13:22:57 +00:00
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
|
|
|
var res *hexutil.Big
|
|
|
|
if err := pea.rpc.CallContext(ctx, &res, "eth_getBalance", address, blockNrOrHash); res != nil && err == nil {
|
|
|
|
return res, nil
|
|
|
|
}
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
return nil, err
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 03:07:39 +00:00
|
|
|
func (pea *PublicEthAPI) localGetBalance(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Big, error) {
|
|
|
|
account, err := pea.B.GetAccountByNumberOrHash(ctx, address, blockNrOrHash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return (*hexutil.Big)(account.Balance), nil
|
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// GetStorageAt returns the storage from the state at the given address, key and
|
|
|
|
// block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta block
|
|
|
|
// numbers are also allowed.
|
|
|
|
func (pea *PublicEthAPI) GetStorageAt(ctx context.Context, address common.Address, key string, blockNrOrHash rpc.BlockNumberOrHash) (hexutil.Bytes, error) {
|
|
|
|
state, _, err := pea.B.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
|
2020-10-28 13:22:57 +00:00
|
|
|
if state != nil && err == nil {
|
|
|
|
res := state.GetState(address, common.HexToHash(key))
|
|
|
|
err = state.Error()
|
|
|
|
if err == nil {
|
|
|
|
return res[:], nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
|
|
|
var res hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &res, "eth_getStorageAt", address, key, blockNrOrHash); res != nil && err == nil {
|
|
|
|
return res, nil
|
|
|
|
}
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
return nil, err
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// GetCode returns the code stored at the given address in the state for the given block number.
|
|
|
|
func (pea *PublicEthAPI) GetCode(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (hexutil.Bytes, error) {
|
2020-10-30 03:07:39 +00:00
|
|
|
code, err := pea.B.GetCodeByNumberOrHash(ctx, address, blockNrOrHash)
|
|
|
|
if code != nil && err == nil {
|
|
|
|
return code, nil
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
if pea.rpc != nil {
|
|
|
|
var res hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &res, "eth_getCode", address, blockNrOrHash); res != nil && err == nil {
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
2020-10-28 03:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetProof returns the Merkle-proof for a given account and optionally some storage keys.
|
|
|
|
func (pea *PublicEthAPI) GetProof(ctx context.Context, address common.Address, storageKeys []string, blockNrOrHash rpc.BlockNumberOrHash) (*AccountResult, error) {
|
2020-10-28 13:22:57 +00:00
|
|
|
proof, err := pea.localGetProof(ctx, address, storageKeys, blockNrOrHash)
|
|
|
|
if proof != nil && err == nil {
|
|
|
|
return proof, nil
|
|
|
|
}
|
|
|
|
if pea.rpc != nil {
|
|
|
|
var res *AccountResult
|
|
|
|
if err := pea.rpc.CallContext(ctx, &res, "eth_getProof", address, storageKeys, blockNrOrHash); res != nil && err == nil {
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pea *PublicEthAPI) localGetProof(ctx context.Context, address common.Address, storageKeys []string, blockNrOrHash rpc.BlockNumberOrHash) (*AccountResult, error) {
|
2020-10-28 03:04:19 +00:00
|
|
|
state, _, err := pea.B.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
|
|
|
|
if state == nil || err != nil {
|
|
|
|
return nil, err
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
|
|
|
|
storageTrie := state.StorageTrie(address)
|
|
|
|
storageHash := types.EmptyRootHash
|
|
|
|
codeHash := state.GetCodeHash(address)
|
|
|
|
storageProof := make([]StorageResult, len(storageKeys))
|
|
|
|
|
|
|
|
// if we have a storageTrie, (which means the account exists), we can update the storagehash
|
|
|
|
if storageTrie != nil {
|
|
|
|
storageHash = storageTrie.Hash()
|
|
|
|
} else {
|
|
|
|
// no storageTrie means the account does not exist, so the codeHash is the hash of an empty bytearray.
|
|
|
|
codeHash = crypto.Keccak256Hash(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the proof for the storageKeys
|
|
|
|
for i, key := range storageKeys {
|
|
|
|
if storageTrie != nil {
|
|
|
|
proof, storageError := state.GetStorageProof(address, common.HexToHash(key))
|
|
|
|
if storageError != nil {
|
|
|
|
return nil, storageError
|
|
|
|
}
|
|
|
|
storageProof[i] = StorageResult{key, (*hexutil.Big)(state.GetState(address, common.HexToHash(key)).Big()), common.ToHexArray(proof)}
|
|
|
|
} else {
|
|
|
|
storageProof[i] = StorageResult{key, &hexutil.Big{}, []string{}}
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 03:04:19 +00:00
|
|
|
// create the accountProof
|
|
|
|
accountProof, proofErr := state.GetProof(address)
|
|
|
|
if proofErr != nil {
|
|
|
|
return nil, proofErr
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 03:04:19 +00:00
|
|
|
|
|
|
|
return &AccountResult{
|
|
|
|
Address: address,
|
|
|
|
AccountProof: common.ToHexArray(accountProof),
|
|
|
|
Balance: (*hexutil.Big)(state.GetBalance(address)),
|
|
|
|
CodeHash: codeHash,
|
|
|
|
Nonce: hexutil.Uint64(state.GetNonce(address)),
|
|
|
|
StorageHash: storageHash,
|
|
|
|
StorageProof: storageProof,
|
|
|
|
}, state.Error()
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
2020-09-25 13:58:18 +00:00
|
|
|
|
2020-10-20 20:33:18 +00:00
|
|
|
// Call executes the given transaction on the state for the given block number.
|
|
|
|
//
|
|
|
|
// Additionally, the caller can specify a batch of contract for fields overriding.
|
|
|
|
//
|
|
|
|
// Note, this function doesn't make and changes in the state/blockchain and is
|
|
|
|
// useful to execute and retrieve values.
|
|
|
|
func (pea *PublicEthAPI) Call(ctx context.Context, args CallArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides *map[common.Address]account) (hexutil.Bytes, error) {
|
|
|
|
var accounts map[common.Address]account
|
|
|
|
if overrides != nil {
|
|
|
|
accounts = *overrides
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
res, _, failed, err := DoCall(ctx, pea.B, args, blockNrOrHash, accounts, 5*time.Second, pea.B.Config.RPCGasCap)
|
2020-10-26 13:58:37 +00:00
|
|
|
if (failed || err != nil) && pea.rpc != nil {
|
2020-10-28 13:22:57 +00:00
|
|
|
var hex hexutil.Bytes
|
|
|
|
if err := pea.rpc.CallContext(ctx, &hex, "eth_call", args, blockNrOrHash, overrides); hex != nil && err == nil {
|
|
|
|
return hex, nil
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-20 20:33:18 +00:00
|
|
|
if failed && err == nil {
|
|
|
|
return nil, errors.New("eth_call failed without error")
|
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
return (hexutil.Bytes)(res), err
|
2020-09-25 13:58:18 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 20:33:18 +00:00
|
|
|
func DoCall(ctx context.Context, b *Backend, args CallArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides map[common.Address]account, timeout time.Duration, globalGasCap *big.Int) ([]byte, uint64, bool, error) {
|
2020-09-25 13:58:18 +00:00
|
|
|
defer func(start time.Time) {
|
2020-10-20 20:33:18 +00:00
|
|
|
logrus.Debugf("Executing EVM call finished %s runtime %s", time.Now().String(), time.Since(start).String())
|
2020-09-25 13:58:18 +00:00
|
|
|
}(time.Now())
|
|
|
|
state, header, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
|
|
|
|
if state == nil || err != nil {
|
|
|
|
return nil, 0, false, err
|
|
|
|
}
|
|
|
|
// Set sender address or use a default if none specified
|
|
|
|
var addr common.Address
|
|
|
|
if args.From == nil {
|
2020-10-20 20:33:18 +00:00
|
|
|
if b.Config.DefaultSender != nil {
|
|
|
|
addr = *b.Config.DefaultSender
|
2020-09-25 13:58:18 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
addr = *args.From
|
|
|
|
}
|
|
|
|
// Override the fields of specified contracts before execution.
|
|
|
|
for addr, account := range overrides {
|
|
|
|
// Override account nonce.
|
|
|
|
if account.Nonce != nil {
|
|
|
|
state.SetNonce(addr, uint64(*account.Nonce))
|
|
|
|
}
|
|
|
|
// Override account(contract) code.
|
|
|
|
if account.Code != nil {
|
|
|
|
state.SetCode(addr, *account.Code)
|
|
|
|
}
|
|
|
|
// Override account balance.
|
|
|
|
if account.Balance != nil {
|
|
|
|
state.SetBalance(addr, (*big.Int)(*account.Balance))
|
|
|
|
}
|
|
|
|
if account.State != nil && account.StateDiff != nil {
|
|
|
|
return nil, 0, false, fmt.Errorf("account %s has both 'state' and 'stateDiff'", addr.Hex())
|
|
|
|
}
|
|
|
|
// Replace entire state if caller requires.
|
|
|
|
if account.State != nil {
|
|
|
|
state.SetStorage(addr, *account.State)
|
|
|
|
}
|
|
|
|
// Apply state diff into specified accounts.
|
|
|
|
if account.StateDiff != nil {
|
|
|
|
for key, value := range *account.StateDiff {
|
|
|
|
state.SetState(addr, key, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Set default gas & gas price if none were set
|
|
|
|
gas := uint64(math.MaxUint64 / 2)
|
|
|
|
if args.Gas != nil {
|
|
|
|
gas = uint64(*args.Gas)
|
|
|
|
}
|
|
|
|
if globalGasCap != nil && globalGasCap.Uint64() < gas {
|
2020-10-20 20:33:18 +00:00
|
|
|
logrus.Warnf("Caller gas above allowance, capping; requested: %d, cap: %d", gas, globalGasCap)
|
2020-09-25 13:58:18 +00:00
|
|
|
gas = globalGasCap.Uint64()
|
|
|
|
}
|
2020-10-20 20:33:18 +00:00
|
|
|
gasPrice := new(big.Int).SetUint64(params.GWei)
|
2020-09-25 13:58:18 +00:00
|
|
|
if args.GasPrice != nil {
|
|
|
|
gasPrice = args.GasPrice.ToInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
value := new(big.Int)
|
|
|
|
if args.Value != nil {
|
|
|
|
value = args.Value.ToInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
var data []byte
|
|
|
|
if args.Data != nil {
|
|
|
|
data = []byte(*args.Data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create new call message
|
|
|
|
msg := types.NewMessage(addr, args.To, 0, value, gas, gasPrice, data, false)
|
|
|
|
|
|
|
|
// Setup context so it may be cancelled the call has completed
|
|
|
|
// or, in case of unmetered gas, setup a context with a timeout.
|
|
|
|
var cancel context.CancelFunc
|
|
|
|
if timeout > 0 {
|
|
|
|
ctx, cancel = context.WithTimeout(ctx, timeout)
|
|
|
|
} else {
|
|
|
|
ctx, cancel = context.WithCancel(ctx)
|
|
|
|
}
|
|
|
|
// Make sure the context is cancelled when the call has completed
|
|
|
|
// this makes sure resources are cleaned up.
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// Get a new instance of the EVM.
|
2020-10-20 20:33:18 +00:00
|
|
|
evm, err := b.GetEVM(ctx, msg, state, header)
|
2020-09-25 13:58:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, 0, false, err
|
|
|
|
}
|
|
|
|
// Wait for the context to be done and cancel the evm. Even if the
|
|
|
|
// EVM has finished, cancelling may be done (repeatedly)
|
|
|
|
go func() {
|
|
|
|
<-ctx.Done()
|
|
|
|
evm.Cancel()
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Setup the gas pool (also for unmetered requests)
|
|
|
|
// and apply the message.
|
|
|
|
gp := new(core.GasPool).AddGas(math.MaxUint64)
|
|
|
|
res, gas, failed, err := core.ApplyMessage(evm, msg, gp)
|
|
|
|
// If the timer caused an abort, return an appropriate error message
|
|
|
|
if evm.Cancelled() {
|
|
|
|
return nil, 0, false, fmt.Errorf("execution aborted (timeout = %v)", timeout)
|
|
|
|
}
|
|
|
|
return res, gas, failed, err
|
|
|
|
}
|
2020-10-26 13:58:37 +00:00
|
|
|
|
2020-10-28 13:22:57 +00:00
|
|
|
// rpcMarshalBlock uses the generalized output filler, then adds the total difficulty field
|
|
|
|
func (pea *PublicEthAPI) rpcMarshalBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]interface{}, error) {
|
|
|
|
fields, err := RPCMarshalBlock(b, inclTx, fullTx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-29 19:59:09 +00:00
|
|
|
if inclTx {
|
|
|
|
td, err := pea.B.GetTd(b.Hash())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fields["totalDifficulty"] = (*hexutil.Big)(td)
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
return fields, err
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 13:22:57 +00:00
|
|
|
// rpcMarshalBlockWithUncleHashes uses the generalized output filler, then adds the total difficulty field
|
|
|
|
func (pea *PublicEthAPI) rpcMarshalBlockWithUncleHashes(b *types.Block, uncleHashes []common.Hash, inclTx bool, fullTx bool) (map[string]interface{}, error) {
|
|
|
|
fields, err := RPCMarshalBlockWithUncleHashes(b, uncleHashes, inclTx, fullTx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
2020-10-28 13:22:57 +00:00
|
|
|
td, err := pea.B.GetTd(b.Hash())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fields["totalDifficulty"] = (*hexutil.Big)(td)
|
|
|
|
return fields, err
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|