Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(zkevm_api): getBatchByNumber 2nd param true #702

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
167 changes: 146 additions & 21 deletions cmd/rpcdaemon/commands/zkevm_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,16 +252,24 @@ func (api *ZkEvmAPIImpl) GetBatchDataByNumbers(ctx context.Context, batchNumbers
Empty: false,
}

highestBlock, err := rawdb.ReadLastBlockSynced(tx)
if err != nil {
return nil, err
}
highestBatchNo, err := hermezDb.GetBatchNoByL2Block(highestBlock.NumberU64())
if err != nil {
return nil, err
}

// return null if we're not at this block height yet
if batchNumber > rpc.BlockNumber(highestBatchNo) {
bd.Empty = true
bds = append(bds, bd)
continue
}

// looks weird but we're using the rpc.BlockNumber type to represent the batch number, LatestBlockNumber represents latest batch
if batchNumber == rpc.LatestBlockNumber {
highestBlock, err := rawdb.ReadLastBlockSynced(tx)
if err != nil {
return nil, err
}
highestBatchNo, err := hermezDb.GetBatchNoByL2Block(highestBlock.NumberU64())
if err != nil {
return nil, err
}
batchNumber = rpc.BlockNumber(highestBatchNo)
}

Expand Down Expand Up @@ -379,16 +387,22 @@ func (api *ZkEvmAPIImpl) GetBatchByNumber(ctx context.Context, batchNumber rpc.B
defer tx.Rollback()
hermezDb := hermez_db.NewHermezDbReader(tx)

highestBlock, err := rawdb.ReadLastBlockSynced(tx)
if err != nil {
return nil, err
}
highestBatchNo, err := hermezDb.GetBatchNoByL2Block(highestBlock.NumberU64())
if err != nil {
return nil, err
}

// return null if we're not at this block height yet
if batchNumber > rpc.BlockNumber(highestBatchNo) {
return nil, nil
}

// looks weird but we're using the rpc.BlockNumber type to represent the batch number, LatestBlockNumber represents latest batch
if batchNumber == rpc.LatestBlockNumber {
highestBlock, err := rawdb.ReadLastBlockSynced(tx)
if err != nil {
return nil, err
}
highestBatchNo, err := hermezDb.GetBatchNoByL2Block(highestBlock.NumberU64())
if err != nil {
return nil, err
}
batchNumber = rpc.BlockNumber(highestBatchNo)
}

Expand Down Expand Up @@ -457,6 +471,53 @@ func (api *ZkEvmAPIImpl) GetBatchByNumber(ctx context.Context, batchNumber rpc.B
}
}

if fullTx != nil && *fullTx {
batchBlocksJson := make([]interface{}, 0, len(blocksInBatch))
batchTransactionsJson := make([]interface{}, 0, len(batchTxs))
for _, blk := range batchBlocks {
bbj, err := api.populateBlockDetail(tx, ctx, blk, true)
if err != nil {
return nil, err
}

bir, err := hermezDb.GetBlockInfoRoot(blk.NumberU64())
if err != nil {
return nil, err
}

ger, err := hermezDb.GetBlockGlobalExitRoot(blk.NumberU64())
if err != nil {
return nil, err
}

batchBlockExtra := &types.BlockWithInfoRootAndGer{
Block: &bbj,
BlockInfoRoot: bir,
GlobalExitRoot: ger,
}

// txs
hashes := make([]types.TransactionOrHash, len(bbj.Transactions))
for i, txn := range bbj.Transactions {
// TODO: add transactionl2hash
batchTransactionsJson = append(batchTransactionsJson, txn)
txn.Hash = &txn.Tx.Hash
txn.Tx = nil
hashes[i] = txn
}

// after collecting transactions, reduce them to them hash only on the block
bbj.Transactions = hashes

// TODO: add l2hash

batchBlocksJson = append(batchBlocksJson, batchBlockExtra)
}

batch.Blocks = batchBlocksJson
batch.Transactions = batchTransactionsJson
}

// for consistency with legacy node, return nil if no transactions
if len(batch.Transactions) == 0 {
batch.Transactions = nil
Expand Down Expand Up @@ -645,16 +706,25 @@ func (api *ZkEvmAPIImpl) populateBlockDetail(
number := baseBlock.NumberU64()
hermezReader := hermez_db.NewHermezDbReader(tx)

signer := eritypes.MakeSigner(cc, number)
sendersFixed := false
var senders []common.Address
var signer *eritypes.Signer
if sendersFixed {
senders = baseBlock.Body().SendersFromTxs()
} else {
signer = eritypes.MakeSigner(cc, number)
}

var effectiveGasPricePercentages []uint8
if fullTx {
for _, txn := range baseBlock.Transactions() {
sender, err := txn.Sender(*signer)
if err != nil {
return types.Block{}, err
if signer != nil {
sender, err := txn.Sender(*signer)
if err != nil {
return types.Block{}, err
}
senders = append(senders, sender)
}
senders = append(senders, sender)
effectiveGasPricePercentage, err := hermezReader.GetEffectiveGasPricePercentage(txn.Hash())
if err != nil {
return types.Block{}, err
Expand Down Expand Up @@ -951,6 +1021,61 @@ func getBatchNoByL2Block(tx kv.Tx, l2BlockNo uint64) (uint64, error) {
return reader.GetBatchNoByL2Block(l2BlockNo)
}

func convertTransactionsReceipts(
txs []eritypes.Transaction,
receipts eritypes.Receipts,
hermezReader hermez_db.HermezDbReader,
block eritypes.Block) ([]types.Transaction, error) {
if len(txs) != len(receipts) {
return nil, errors.New("transactions and receipts length mismatch")
}

result := make([]types.Transaction, 0, len(txs))

for idx, tx := range txs {
effectiveGasPricePercentage, err := hermezReader.GetEffectiveGasPricePercentage(tx.Hash())
if err != nil {
return nil, err
}
gasPrice := tx.GetPrice()
v, r, s := tx.RawSignatureValues()
var sender common.Address

// TODO: senders!

var receipt *types.Receipt
if len(receipts) > idx {
receipt = convertReceipt(receipts[idx], sender, tx.GetTo(), gasPrice, effectiveGasPricePercentage)
}

bh := block.Hash()
blockNumber := block.NumberU64()

tran := types.Transaction{
Nonce: types.ArgUint64(tx.GetNonce()),
GasPrice: types.ArgBig(*gasPrice.ToBig()),
Gas: types.ArgUint64(tx.GetGas()),
To: tx.GetTo(),
Value: types.ArgBig(*tx.GetValue().ToBig()),
Input: tx.GetData(),
V: types.ArgBig(*v.ToBig()),
R: types.ArgBig(*r.ToBig()),
S: types.ArgBig(*s.ToBig()),
Hash: tx.Hash(),
From: sender,
BlockHash: &bh,
BlockNumber: types.ArgUint64Ptr(types.ArgUint64(blockNumber)),
TxIndex: types.ArgUint64Ptr(types.ArgUint64(idx)),
ChainID: types.ArgBig(*tx.GetChainID().ToBig()),
Type: types.ArgUint64(tx.Type()),
Receipt: receipt,
}
result = append(result, tran)
}

return result, nil
}

func convertBlockToRpcBlock(
orig *eritypes.Block,
receipts eritypes.Receipts,
Expand Down
20 changes: 5 additions & 15 deletions zk/hermez_db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -926,27 +926,17 @@ func (db *HermezDb) WriteForkId(batchNo, forkId uint64) error {
}

func (db *HermezDbReader) GetLowestBatchByFork(forkId uint64) (uint64, error) {
c, err := db.tx.Cursor(FORKIDS)
forkIdBlock, err := db.tx.GetOne(FORKID_BLOCK, Uint64ToBytes(forkId))
if err != nil {
return 0, err
}
defer c.Close()

var batchNo uint64 = 0
var k, v []byte

for k, v, err = c.First(); k != nil; k, v, err = c.Next() {
if err != nil {
break
}
currentForkId := BytesToUint64(v)
if currentForkId == forkId {
batchNo = BytesToUint64(k)
break
}
batchNo, err := db.tx.GetOne(BLOCKBATCHES, forkIdBlock)
if err != nil {
return 0, err
}

return batchNo, err
return BytesToUint64(batchNo), err

}

Expand Down
10 changes: 9 additions & 1 deletion zk/rpcdaemon/types_zkevm.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package types

import "github.com/gateway-fm/cdk-erigon-lib/common"
import (
"github.com/gateway-fm/cdk-erigon-lib/common"
)

// Batch structure
type Batch struct {
Expand All @@ -27,3 +29,9 @@ type BatchDataSlim struct {
BatchL2Data ArgBytes `json:"batchL2Data,omitempty"`
Empty bool `json:"empty"`
}

type BlockWithInfoRootAndGer struct {
*Block
BlockInfoRoot common.Hash `json:"blockInfoRoot"`
GlobalExitRoot common.Hash `json:"globalExitRoot"`
}
Loading