2020-10-20 20:33:18 +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-10-20 14:42:09 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2021-09-29 05:27:11 +00:00
|
|
|
"errors"
|
2020-10-20 20:33:18 +00:00
|
|
|
"math/big"
|
|
|
|
|
2020-10-20 14:42:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2020-10-26 13:58:37 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2021-09-29 05:27:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2020-10-28 13:22:57 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2021-08-12 06:23:41 +00:00
|
|
|
"github.com/ethereum/go-ethereum/statediff/indexer/ipfs"
|
|
|
|
"github.com/ethereum/go-ethereum/statediff/indexer/models"
|
2021-02-19 20:23:45 +00:00
|
|
|
sdtypes "github.com/ethereum/go-ethereum/statediff/types"
|
2021-09-29 05:27:11 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-10-20 14:42:09 +00:00
|
|
|
)
|
|
|
|
|
2020-10-26 13:58:37 +00:00
|
|
|
// RPCTransaction represents a transaction that will serialize to the RPC representation of a transaction
|
|
|
|
type RPCTransaction struct {
|
2021-07-27 12:07:50 +00:00
|
|
|
BlockHash *common.Hash `json:"blockHash"`
|
|
|
|
BlockNumber *hexutil.Big `json:"blockNumber"`
|
|
|
|
From common.Address `json:"from"`
|
|
|
|
Gas hexutil.Uint64 `json:"gas"`
|
|
|
|
GasPrice *hexutil.Big `json:"gasPrice"`
|
|
|
|
GasFeeCap *hexutil.Big `json:"maxFeePerGas,omitempty"`
|
|
|
|
GasTipCap *hexutil.Big `json:"maxPriorityFeePerGas,omitempty"`
|
|
|
|
Hash common.Hash `json:"hash"`
|
|
|
|
Input hexutil.Bytes `json:"input"`
|
|
|
|
Nonce hexutil.Uint64 `json:"nonce"`
|
|
|
|
To *common.Address `json:"to"`
|
|
|
|
TransactionIndex *hexutil.Uint64 `json:"transactionIndex"`
|
|
|
|
Value *hexutil.Big `json:"value"`
|
|
|
|
Type hexutil.Uint64 `json:"type"`
|
|
|
|
Accesses *types.AccessList `json:"accessList,omitempty"`
|
|
|
|
ChainID *hexutil.Big `json:"chainId,omitempty"`
|
|
|
|
V *hexutil.Big `json:"v"`
|
|
|
|
R *hexutil.Big `json:"r"`
|
|
|
|
S *hexutil.Big `json:"s"`
|
2020-10-26 13:58:37 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 13:22:57 +00:00
|
|
|
// RPCReceipt represents a receipt that will serialize to the RPC representation of a receipt
|
|
|
|
type RPCReceipt struct {
|
|
|
|
BlockHash *common.Hash `json:"blockHash"`
|
|
|
|
BlockNumber *hexutil.Big `json:"blockNumber"`
|
|
|
|
TransactionHash *common.Hash `json:"transactionHash"`
|
|
|
|
TransactionIndex *hexutil.Uint64 `json:"transactionIndex"`
|
|
|
|
From common.Address `json:"from"`
|
|
|
|
To *common.Address `json:"to"`
|
|
|
|
GasUsed hexutil.Uint64 `json:"gasUsed"`
|
|
|
|
CumulativeGsUsed hexutil.Uint64 `json:"cumulativeGasUsed"`
|
|
|
|
ContractAddress *common.Address `json:"contractAddress"`
|
|
|
|
Logs []*types.Log `json:"logs"`
|
|
|
|
Bloom types.Bloom `json:"logsBloom"`
|
|
|
|
Root []byte `json:"root"`
|
|
|
|
Status uint64 `json:"status"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountResult struct for GetProof
|
|
|
|
type AccountResult struct {
|
|
|
|
Address common.Address `json:"address"`
|
|
|
|
AccountProof []string `json:"accountProof"`
|
|
|
|
Balance *hexutil.Big `json:"balance"`
|
|
|
|
CodeHash common.Hash `json:"codeHash"`
|
|
|
|
Nonce hexutil.Uint64 `json:"nonce"`
|
|
|
|
StorageHash common.Hash `json:"storageHash"`
|
|
|
|
StorageProof []StorageResult `json:"storageProof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageResult for GetProof
|
|
|
|
type StorageResult struct {
|
|
|
|
Key string `json:"key"`
|
|
|
|
Value *hexutil.Big `json:"value"`
|
|
|
|
Proof []string `json:"proof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CallArgs represents the arguments for a call.
|
|
|
|
type CallArgs struct {
|
2021-07-27 12:07:50 +00:00
|
|
|
From *common.Address `json:"from"`
|
|
|
|
To *common.Address `json:"to"`
|
|
|
|
Gas *hexutil.Uint64 `json:"gas"`
|
|
|
|
GasPrice *hexutil.Big `json:"gasPrice"`
|
|
|
|
MaxFeePerGas *hexutil.Big `json:"maxFeePerGas"`
|
|
|
|
MaxPriorityFeePerGas *hexutil.Big `json:"maxPriorityFeePerGas"`
|
|
|
|
Value *hexutil.Big `json:"value"`
|
|
|
|
Data *hexutil.Bytes `json:"data"`
|
|
|
|
AccessList *types.AccessList `json:"accessList,omitempty"`
|
|
|
|
Input *hexutil.Bytes `json:"input"`
|
2020-10-28 13:22:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 05:27:11 +00:00
|
|
|
// from retrieves the transaction sender address.
|
|
|
|
func (arg *CallArgs) from() common.Address {
|
|
|
|
if arg.From == nil {
|
|
|
|
return common.Address{}
|
|
|
|
}
|
|
|
|
return *arg.From
|
|
|
|
}
|
|
|
|
|
|
|
|
// data retrieves the transaction calldata. Input field is preferred.
|
|
|
|
func (arg *CallArgs) data() []byte {
|
|
|
|
if arg.Input != nil {
|
|
|
|
return *arg.Input
|
|
|
|
}
|
|
|
|
if arg.Data != nil {
|
|
|
|
return *arg.Data
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToMessage converts the transaction arguments to the Message type used by the
|
|
|
|
// core evm. This method is used in calls and traces that do not require a real
|
|
|
|
// live transaction.
|
|
|
|
func (arg *CallArgs) ToMessage(globalGasCap uint64, baseFee *big.Int) (types.Message, error) {
|
|
|
|
// Reject invalid combinations of pre- and post-1559 fee styles
|
|
|
|
if arg.GasPrice != nil && (arg.MaxFeePerGas != nil || arg.MaxPriorityFeePerGas != nil) {
|
|
|
|
return types.Message{}, errors.New("both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified")
|
|
|
|
}
|
|
|
|
// Set sender address or use zero address if none specified.
|
|
|
|
addr := arg.from()
|
|
|
|
|
|
|
|
// Set default gas & gas price if none were set
|
|
|
|
gas := globalGasCap
|
|
|
|
if gas == 0 {
|
|
|
|
gas = uint64(math.MaxUint64 / 2)
|
|
|
|
}
|
|
|
|
if arg.Gas != nil {
|
|
|
|
gas = uint64(*arg.Gas)
|
|
|
|
}
|
|
|
|
if globalGasCap != 0 && globalGasCap < gas {
|
|
|
|
logrus.Warn("Caller gas above allowance, capping", "requested", gas, "cap", globalGasCap)
|
|
|
|
gas = globalGasCap
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
gasPrice *big.Int
|
|
|
|
gasFeeCap *big.Int
|
|
|
|
gasTipCap *big.Int
|
|
|
|
)
|
|
|
|
if baseFee == nil {
|
|
|
|
// If there's no basefee, then it must be a non-1559 execution
|
|
|
|
gasPrice = new(big.Int)
|
|
|
|
if arg.GasPrice != nil {
|
|
|
|
gasPrice = arg.GasPrice.ToInt()
|
|
|
|
}
|
|
|
|
gasFeeCap, gasTipCap = gasPrice, gasPrice
|
|
|
|
} else {
|
|
|
|
// A basefee is provided, necessitating 1559-type execution
|
|
|
|
if arg.GasPrice != nil {
|
|
|
|
// User specified the legacy gas field, convert to 1559 gas typing
|
|
|
|
gasPrice = arg.GasPrice.ToInt()
|
|
|
|
gasFeeCap, gasTipCap = gasPrice, gasPrice
|
|
|
|
} else {
|
|
|
|
// User specified 1559 gas feilds (or none), use those
|
|
|
|
gasFeeCap = new(big.Int)
|
|
|
|
if arg.MaxFeePerGas != nil {
|
|
|
|
gasFeeCap = arg.MaxFeePerGas.ToInt()
|
|
|
|
}
|
|
|
|
gasTipCap = new(big.Int)
|
|
|
|
if arg.MaxPriorityFeePerGas != nil {
|
|
|
|
gasTipCap = arg.MaxPriorityFeePerGas.ToInt()
|
|
|
|
}
|
|
|
|
// Backfill the legacy gasPrice for EVM execution, unless we're all zeroes
|
|
|
|
gasPrice = new(big.Int)
|
|
|
|
if gasFeeCap.BitLen() > 0 || gasTipCap.BitLen() > 0 {
|
|
|
|
gasPrice = math.BigMin(new(big.Int).Add(gasTipCap, baseFee), gasFeeCap)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value := new(big.Int)
|
|
|
|
if arg.Value != nil {
|
|
|
|
value = arg.Value.ToInt()
|
|
|
|
}
|
|
|
|
data := arg.data()
|
|
|
|
var accessList types.AccessList
|
|
|
|
if arg.AccessList != nil {
|
|
|
|
accessList = *arg.AccessList
|
|
|
|
}
|
|
|
|
msg := types.NewMessage(addr, arg.To, 0, value, gas, gasPrice, gasFeeCap, gasTipCap, data, accessList, true)
|
|
|
|
return msg, nil
|
2020-10-28 13:22:57 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 14:42:09 +00:00
|
|
|
// IPLDs is used to package raw IPLD block data fetched from IPFS and returned by the server
|
|
|
|
// Returned by IPLDFetcher and ResponseFilterer
|
|
|
|
type IPLDs struct {
|
|
|
|
BlockNumber *big.Int
|
|
|
|
TotalDifficulty *big.Int
|
|
|
|
Header ipfs.BlockModel
|
|
|
|
Uncles []ipfs.BlockModel
|
|
|
|
Transactions []ipfs.BlockModel
|
|
|
|
Receipts []ipfs.BlockModel
|
|
|
|
StateNodes []StateNode
|
|
|
|
StorageNodes []StorageNode
|
|
|
|
}
|
|
|
|
|
|
|
|
type StateNode struct {
|
2021-02-19 20:23:45 +00:00
|
|
|
Type sdtypes.NodeType
|
2020-10-20 14:42:09 +00:00
|
|
|
StateLeafKey common.Hash
|
|
|
|
Path []byte
|
|
|
|
IPLD ipfs.BlockModel
|
|
|
|
}
|
|
|
|
|
|
|
|
type StorageNode struct {
|
2021-02-19 20:23:45 +00:00
|
|
|
Type sdtypes.NodeType
|
2020-10-20 14:42:09 +00:00
|
|
|
StateLeafKey common.Hash
|
|
|
|
StorageLeafKey common.Hash
|
|
|
|
Path []byte
|
|
|
|
IPLD ipfs.BlockModel
|
|
|
|
}
|
2020-10-20 20:33:18 +00:00
|
|
|
|
|
|
|
// CIDWrapper is used to direct fetching of IPLDs from IPFS
|
|
|
|
// Returned by CIDRetriever
|
|
|
|
// Passed to IPLDFetcher
|
|
|
|
type CIDWrapper struct {
|
|
|
|
BlockNumber *big.Int
|
2021-08-12 06:23:41 +00:00
|
|
|
Header models.HeaderModel
|
|
|
|
Uncles []models.UncleModel
|
|
|
|
Transactions []models.TxModel
|
|
|
|
Receipts []models.ReceiptModel
|
|
|
|
StateNodes []models.StateNodeModel
|
|
|
|
StorageNodes []models.StorageNodeWithStateKeyModel
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConvertedPayload is a custom type which packages raw ETH data for publishing to IPFS and filtering to subscribers
|
|
|
|
// Returned by PayloadConverter
|
|
|
|
// Passed to IPLDPublisher and ResponseFilterer
|
|
|
|
type ConvertedPayload struct {
|
|
|
|
TotalDifficulty *big.Int
|
|
|
|
Block *types.Block
|
|
|
|
TxMetaData []models.TxModel
|
|
|
|
Receipts types.Receipts
|
|
|
|
ReceiptMetaData []models.ReceiptModel
|
|
|
|
StateNodes []sdtypes.StateNode
|
|
|
|
StorageNodes map[string][]sdtypes.StorageNode
|
2020-10-20 20:33:18 +00:00
|
|
|
}
|
2021-08-20 07:37:11 +00:00
|
|
|
|
2021-09-01 07:02:28 +00:00
|
|
|
// LogResult represent a log.
|
|
|
|
type LogResult struct {
|
2021-08-20 07:37:11 +00:00
|
|
|
LeafCID string `db:"leaf_cid"`
|
|
|
|
ReceiptID int64 `db:"receipt_id"`
|
|
|
|
Address string `db:"address"`
|
|
|
|
Index int64 `db:"index"`
|
|
|
|
Data []byte `db:"log_data"`
|
|
|
|
Topic0 string `db:"topic0"`
|
|
|
|
Topic1 string `db:"topic1"`
|
|
|
|
Topic2 string `db:"topic2"`
|
|
|
|
Topic3 string `db:"topic3"`
|
2021-09-01 07:02:28 +00:00
|
|
|
LogLeafData []byte `db:"data"`
|
2021-08-20 07:37:11 +00:00
|
|
|
RctCID string `db:"cid"`
|
2021-08-30 15:29:54 +00:00
|
|
|
RctStatus uint64 `db:"post_status"`
|
2021-08-20 07:37:11 +00:00
|
|
|
BlockNumber string `db:"block_number"`
|
|
|
|
BlockHash string `db:"block_hash"`
|
|
|
|
TxnIndex int64 `db:"txn_index"`
|
|
|
|
TxHash string `db:"tx_hash"`
|
|
|
|
}
|