2017-11-02 19:37:07 +00:00
|
|
|
package geth
|
|
|
|
|
|
|
|
import (
|
2017-12-20 20:06:22 +00:00
|
|
|
"strings"
|
|
|
|
|
2018-01-03 17:23:43 +00:00
|
|
|
"log"
|
|
|
|
|
2018-01-06 20:31:53 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
2017-11-02 19:37:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-11-02 21:43:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2017-11-02 19:37:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2017-11-08 20:55:35 +00:00
|
|
|
"golang.org/x/net/context"
|
2017-11-02 19:37:07 +00:00
|
|
|
)
|
|
|
|
|
2017-11-08 20:55:35 +00:00
|
|
|
type GethClient interface {
|
|
|
|
TransactionSender(ctx context.Context, tx *types.Transaction, block common.Hash, index uint) (common.Address, error)
|
2017-12-27 23:51:17 +00:00
|
|
|
TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error)
|
2017-11-02 19:37:07 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
func ToCoreBlock(gethBlock *types.Block, client GethClient) core.Block {
|
|
|
|
transactions := convertTransactionsToCore(gethBlock, client)
|
|
|
|
coreBlock := core.Block{
|
2017-11-02 14:36:53 +00:00
|
|
|
Difficulty: gethBlock.Difficulty().Int64(),
|
2017-12-28 16:06:13 +00:00
|
|
|
ExtraData: hexutil.Encode(gethBlock.Extra()),
|
2017-11-02 19:37:07 +00:00
|
|
|
GasLimit: gethBlock.GasLimit().Int64(),
|
|
|
|
GasUsed: gethBlock.GasUsed().Int64(),
|
2017-11-02 14:36:53 +00:00
|
|
|
Hash: gethBlock.Hash().Hex(),
|
2018-01-08 21:59:47 +00:00
|
|
|
Miner: strings.ToLower(gethBlock.Coinbase().Hex()),
|
2017-11-02 21:43:07 +00:00
|
|
|
Nonce: hexutil.Encode(gethBlock.Header().Nonce[:]),
|
2017-11-02 14:36:53 +00:00
|
|
|
Number: gethBlock.Number().Int64(),
|
|
|
|
ParentHash: gethBlock.ParentHash().Hex(),
|
|
|
|
Size: gethBlock.Size().Int64(),
|
2017-11-02 19:37:07 +00:00
|
|
|
Time: gethBlock.Time().Int64(),
|
|
|
|
Transactions: transactions,
|
2017-11-02 14:36:53 +00:00
|
|
|
UncleHash: gethBlock.UncleHash().Hex(),
|
2017-11-02 19:37:07 +00:00
|
|
|
}
|
2018-01-05 17:55:00 +00:00
|
|
|
coreBlock.Reward = CalcBlockReward(coreBlock, gethBlock.Uncles())
|
|
|
|
coreBlock.UnclesReward = CalcUnclesReward(coreBlock, gethBlock.Uncles())
|
|
|
|
return coreBlock
|
2017-11-02 19:37:07 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
func convertTransactionsToCore(gethBlock *types.Block, client GethClient) []core.Transaction {
|
2018-01-03 17:23:43 +00:00
|
|
|
transactions := make([]core.Transaction, 0)
|
|
|
|
for i, gethTransaction := range gethBlock.Transactions() {
|
|
|
|
from, err := client.TransactionSender(context.Background(), gethTransaction, gethBlock.Hash(), uint(i))
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
2018-01-05 17:55:00 +00:00
|
|
|
transaction := transToCoreTrans(gethTransaction, &from)
|
2018-01-03 17:23:43 +00:00
|
|
|
transaction, err = appendReceiptToTransaction(client, transaction)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
transactions = append(transactions, transaction)
|
|
|
|
}
|
|
|
|
return transactions
|
|
|
|
}
|
|
|
|
|
|
|
|
func appendReceiptToTransaction(client GethClient, transaction core.Transaction) (core.Transaction, error) {
|
|
|
|
gethReceipt, err := client.TransactionReceipt(context.Background(), common.HexToHash(transaction.Hash))
|
2018-01-08 20:19:42 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return transaction, err
|
|
|
|
}
|
2018-01-05 17:55:00 +00:00
|
|
|
receipt := ReceiptToCoreReceipt(gethReceipt)
|
2018-01-03 17:23:43 +00:00
|
|
|
transaction.Receipt = receipt
|
|
|
|
return transaction, err
|
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
func transToCoreTrans(transaction *types.Transaction, from *common.Address) core.Transaction {
|
2017-12-28 23:04:15 +00:00
|
|
|
data := hexutil.Encode(transaction.Data())
|
2017-11-08 20:55:35 +00:00
|
|
|
return core.Transaction{
|
|
|
|
Hash: transaction.Hash().Hex(),
|
|
|
|
Nonce: transaction.Nonce(),
|
2017-12-20 20:06:22 +00:00
|
|
|
To: strings.ToLower(addressToHex(transaction.To())),
|
|
|
|
From: strings.ToLower(addressToHex(from)),
|
2017-11-08 20:55:35 +00:00
|
|
|
GasLimit: transaction.Gas().Int64(),
|
|
|
|
GasPrice: transaction.GasPrice().Int64(),
|
2018-01-16 20:25:33 +00:00
|
|
|
Value: transaction.Value().String(),
|
2017-12-28 23:04:15 +00:00
|
|
|
Data: data,
|
2017-11-08 20:55:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func addressToHex(to *common.Address) string {
|
2017-11-02 19:37:07 +00:00
|
|
|
if to == nil {
|
|
|
|
return ""
|
|
|
|
} else {
|
|
|
|
return to.Hex()
|
|
|
|
}
|
|
|
|
}
|