forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
775 lines (686 loc) · 21.9 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
package types
import (
"context"
"encoding/json"
"fmt"
"math/big"
"strconv"
"strings"
"github.com/0xPolygonHermez/zkevm-node/hex"
"github.com/0xPolygonHermez/zkevm-node/state"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/jackc/pgx/v4"
)
// ArgUint64 helps to marshal uint64 values provided in the RPC requests
type ArgUint64 uint64
// MarshalText marshals into text
func (b ArgUint64) MarshalText() ([]byte, error) {
buf := make([]byte, 2) //nolint:gomnd
copy(buf, `0x`)
buf = strconv.AppendUint(buf, uint64(b), hex.Base)
return buf, nil
}
// UnmarshalText unmarshals from text
func (b *ArgUint64) UnmarshalText(input []byte) error {
str := strings.TrimPrefix(string(input), "0x")
num, err := strconv.ParseUint(str, hex.Base, hex.BitSize64)
if err != nil {
return err
}
*b = ArgUint64(num)
return nil
}
// Hex returns a hexadecimal representation
func (b ArgUint64) Hex() string {
bb, _ := b.MarshalText()
return string(bb)
}
// ArgUint64Ptr returns the pointer of the provided ArgUint64
func ArgUint64Ptr(a ArgUint64) *ArgUint64 {
return &a
}
// ArgBytes helps to marshal byte array values provided in the RPC requests
type ArgBytes []byte
// MarshalText marshals into text
func (b ArgBytes) MarshalText() ([]byte, error) {
return encodeToHex(b), nil
}
// UnmarshalText unmarshals from text
func (b *ArgBytes) UnmarshalText(input []byte) error {
hh, err := decodeToHex(input)
if err != nil {
return nil
}
aux := make([]byte, len(hh))
copy(aux, hh)
*b = aux
return nil
}
// Hex returns a hexadecimal representation
func (b ArgBytes) Hex() string {
bb, _ := b.MarshalText()
return string(bb)
}
// ArgBytesPtr helps to marshal byte array values provided in the RPC requests
func ArgBytesPtr(b []byte) *ArgBytes {
bb := ArgBytes(b)
return &bb
}
// ArgBig helps to marshal big number values provided in the RPC requests
type ArgBig big.Int
// UnmarshalText unmarshals an instance of ArgBig into an array of bytes
func (a *ArgBig) UnmarshalText(input []byte) error {
buf, err := decodeToHex(input)
if err != nil {
return err
}
b := new(big.Int)
b.SetBytes(buf)
*a = ArgBig(*b)
return nil
}
// MarshalText marshals an array of bytes into an instance of ArgBig
func (a ArgBig) MarshalText() ([]byte, error) {
b := (*big.Int)(&a)
return []byte("0x" + b.Text(hex.Base)), nil
}
// Hex returns a hexadecimal representation
func (b ArgBig) Hex() string {
bb, _ := b.MarshalText()
return string(bb)
}
func decodeToHex(b []byte) ([]byte, error) {
str := string(b)
str = strings.TrimPrefix(str, "0x")
if len(str)%2 != 0 {
str = "0" + str
}
return hex.DecodeString(str)
}
func encodeToHex(b []byte) []byte {
str := hex.EncodeToString(b)
if len(str)%2 != 0 {
str = "0" + str
}
return []byte("0x" + str)
}
// ArgHash represents a common.Hash that accepts strings
// shorter than 64 bytes, like 0x00
type ArgHash common.Hash
// UnmarshalText unmarshals from text
func (arg *ArgHash) UnmarshalText(input []byte) error {
if !hex.IsValid(string(input)) {
return fmt.Errorf("invalid hash, it needs to be a hexadecimal value")
}
str := strings.TrimPrefix(string(input), "0x")
*arg = ArgHash(common.HexToHash(str))
return nil
}
// Hash returns an instance of common.Hash
func (arg *ArgHash) Hash() common.Hash {
result := common.Hash{}
if arg != nil {
result = common.Hash(*arg)
}
return result
}
// ArgAddress represents a common.Address that accepts strings
// shorter than 32 bytes, like 0x00
type ArgAddress common.Address
// UnmarshalText unmarshals from text
func (b *ArgAddress) UnmarshalText(input []byte) error {
if !hex.IsValid(string(input)) {
return fmt.Errorf("invalid address, it needs to be a hexadecimal value")
}
str := strings.TrimPrefix(string(input), "0x")
*b = ArgAddress(common.HexToAddress(str))
return nil
}
// Address returns an instance of common.Address
func (arg *ArgAddress) Address() common.Address {
result := common.Address{}
if arg != nil {
result = common.Address(*arg)
}
return result
}
// TxArgs is the transaction argument for the rpc endpoints
type TxArgs struct {
From *common.Address
To *common.Address
Gas *ArgUint64
GasPrice *ArgBytes
Value *ArgBytes
Data *ArgBytes
Input *ArgBytes
Nonce *ArgUint64
}
// ToTransaction transforms txnArgs into a Transaction
func (args *TxArgs) ToTransaction(ctx context.Context, st StateInterface, maxCumulativeGasUsed uint64, root common.Hash, defaultSenderAddress common.Address, dbTx pgx.Tx) (common.Address, *types.Transaction, error) {
sender := defaultSenderAddress
nonce := uint64(0)
if args.From != nil && *args.From != state.ZeroAddress {
sender = *args.From
n, err := st.GetNonce(ctx, sender, root)
if err != nil {
return common.Address{}, nil, err
}
nonce = n
}
value := big.NewInt(0)
if args.Value != nil {
value.SetBytes(*args.Value)
}
gasPrice := big.NewInt(0)
if args.GasPrice != nil {
gasPrice.SetBytes(*args.GasPrice)
}
var data []byte
if args.Data != nil {
data = *args.Data
} else if args.Input != nil {
data = *args.Input
} else if args.To == nil {
return common.Address{}, nil, fmt.Errorf("contract creation without data provided")
}
gas := maxCumulativeGasUsed
if args.Gas != nil && uint64(*args.Gas) > 0 && uint64(*args.Gas) < maxCumulativeGasUsed {
gas = uint64(*args.Gas)
}
tx := types.NewTx(&types.LegacyTx{
Nonce: nonce,
To: args.To,
Value: value,
Gas: gas,
GasPrice: gasPrice,
Data: data,
})
return sender, tx, nil
}
// Block structure
type Block struct {
ParentHash common.Hash `json:"parentHash"`
Sha3Uncles common.Hash `json:"sha3Uncles"`
Miner *common.Address `json:"miner"`
StateRoot common.Hash `json:"stateRoot"`
TxRoot common.Hash `json:"transactionsRoot"`
ReceiptsRoot common.Hash `json:"receiptsRoot"`
LogsBloom types.Bloom `json:"logsBloom"`
Difficulty ArgUint64 `json:"difficulty"`
TotalDifficulty *ArgUint64 `json:"totalDifficulty"`
Size ArgUint64 `json:"size"`
Number ArgUint64 `json:"number"`
GasLimit ArgUint64 `json:"gasLimit"`
GasUsed ArgUint64 `json:"gasUsed"`
Timestamp ArgUint64 `json:"timestamp"`
ExtraData ArgBytes `json:"extraData"`
MixHash common.Hash `json:"mixHash"`
Nonce *ArgBytes `json:"nonce"`
Hash *common.Hash `json:"hash"`
Transactions []TransactionOrHash `json:"transactions"`
Uncles []common.Hash `json:"uncles"`
GlobalExitRoot *common.Hash `json:"globalExitRoot,omitempty"`
BlockInfoRoot *common.Hash `json:"blockInfoRoot,omitempty"`
}
// NewBlock creates a Block instance
func NewBlock(ctx context.Context, st StateInterface, hash *common.Hash, b *state.L2Block, receipts []types.Receipt, fullTx, includeReceipts bool, includeExtraInfo *bool, dbTx pgx.Tx) (*Block, error) {
h := b.Header()
n := big.NewInt(0).SetUint64(h.Nonce.Uint64())
nonce := ArgBytes(common.LeftPadBytes(n.Bytes(), 8)) //nolint:gomnd
var difficulty uint64
if h.Difficulty != nil {
difficulty = h.Difficulty.Uint64()
} else {
difficulty = uint64(0)
}
totalDifficult := ArgUint64(difficulty)
res := &Block{
ParentHash: h.ParentHash,
Sha3Uncles: h.UncleHash,
Miner: &h.Coinbase,
StateRoot: h.Root,
TxRoot: h.TxHash,
ReceiptsRoot: h.ReceiptHash,
LogsBloom: h.Bloom,
Difficulty: ArgUint64(difficulty),
TotalDifficulty: &totalDifficult,
Size: ArgUint64(b.Size()),
Number: ArgUint64(b.Number().Uint64()),
GasLimit: ArgUint64(h.GasLimit),
GasUsed: ArgUint64(h.GasUsed),
Timestamp: ArgUint64(h.Time),
ExtraData: ArgBytes(h.Extra),
MixHash: h.MixDigest,
Nonce: &nonce,
Hash: hash,
Transactions: []TransactionOrHash{},
Uncles: []common.Hash{},
}
if includeExtraInfo != nil && *includeExtraInfo {
res.GlobalExitRoot = &h.GlobalExitRoot
res.BlockInfoRoot = &h.BlockInfoRoot
}
receiptsMap := make(map[common.Hash]types.Receipt, len(receipts))
for _, receipt := range receipts {
receiptsMap[receipt.TxHash] = receipt
}
for _, tx := range b.Transactions() {
if fullTx {
var receiptPtr *types.Receipt
if receipt, found := receiptsMap[tx.Hash()]; found {
receiptPtr = &receipt
}
var l2Hash *common.Hash
if includeExtraInfo != nil && *includeExtraInfo {
l2h, err := st.GetL2TxHashByTxHash(ctx, tx.Hash(), dbTx)
if err != nil {
return nil, err
}
l2Hash = l2h
}
rpcTx, err := NewTransaction(*tx, receiptPtr, includeReceipts, l2Hash)
if err != nil {
return nil, err
}
res.Transactions = append(
res.Transactions,
TransactionOrHash{Tx: rpcTx},
)
} else {
h := tx.Hash()
res.Transactions = append(
res.Transactions,
TransactionOrHash{Hash: &h},
)
}
}
for _, uncle := range b.Uncles() {
res.Uncles = append(res.Uncles, uncle.Hash())
}
return res, nil
}
// Batch structure
type Batch struct {
Number ArgUint64 `json:"number"`
ForcedBatchNumber *ArgUint64 `json:"forcedBatchNumber,omitempty"`
Coinbase common.Address `json:"coinbase"`
StateRoot common.Hash `json:"stateRoot"`
GlobalExitRoot common.Hash `json:"globalExitRoot"`
MainnetExitRoot common.Hash `json:"mainnetExitRoot"`
RollupExitRoot common.Hash `json:"rollupExitRoot"`
LocalExitRoot common.Hash `json:"localExitRoot"`
AccInputHash common.Hash `json:"accInputHash"`
Timestamp ArgUint64 `json:"timestamp"`
SendSequencesTxHash *common.Hash `json:"sendSequencesTxHash"`
VerifyBatchTxHash *common.Hash `json:"verifyBatchTxHash"`
Closed bool `json:"closed"`
Blocks []BlockOrHash `json:"blocks"`
Transactions []TransactionOrHash `json:"transactions"`
BatchL2Data ArgBytes `json:"batchL2Data"`
}
// NewBatch creates a Batch instance
func NewBatch(ctx context.Context, st StateInterface, batch *state.Batch, virtualBatch *state.VirtualBatch, verifiedBatch *state.VerifiedBatch, blocks []state.L2Block, receipts []types.Receipt, fullTx, includeReceipts bool, ger *state.GlobalExitRoot, dbTx pgx.Tx) (*Batch, error) {
batchL2Data := batch.BatchL2Data
closed := !batch.WIP
res := &Batch{
Number: ArgUint64(batch.BatchNumber),
GlobalExitRoot: batch.GlobalExitRoot,
MainnetExitRoot: ger.MainnetExitRoot,
RollupExitRoot: ger.RollupExitRoot,
AccInputHash: batch.AccInputHash,
Timestamp: ArgUint64(batch.Timestamp.Unix()),
StateRoot: batch.StateRoot,
Coinbase: batch.Coinbase,
LocalExitRoot: batch.LocalExitRoot,
BatchL2Data: ArgBytes(batchL2Data),
Closed: closed,
}
if batch.ForcedBatchNum != nil {
fb := ArgUint64(*batch.ForcedBatchNum)
res.ForcedBatchNumber = &fb
}
if virtualBatch != nil {
res.SendSequencesTxHash = &virtualBatch.TxHash
}
if verifiedBatch != nil {
res.VerifyBatchTxHash = &verifiedBatch.TxHash
}
receiptsMap := make(map[common.Hash]types.Receipt, len(receipts))
for _, receipt := range receipts {
receiptsMap[receipt.TxHash] = receipt
}
for _, tx := range batch.Transactions {
if fullTx {
var receiptPtr *types.Receipt
if receipt, found := receiptsMap[tx.Hash()]; found {
receiptPtr = &receipt
}
l2Hash, err := st.GetL2TxHashByTxHash(ctx, tx.Hash(), dbTx)
if err != nil {
return nil, err
}
rpcTx, err := NewTransaction(tx, receiptPtr, includeReceipts, l2Hash)
if err != nil {
return nil, err
}
res.Transactions = append(res.Transactions, TransactionOrHash{Tx: rpcTx})
} else {
h := tx.Hash()
res.Transactions = append(res.Transactions, TransactionOrHash{Hash: &h})
}
}
for _, b := range blocks {
b := b
if fullTx {
block, err := NewBlock(ctx, st, state.Ptr(b.Hash()), &b, nil, false, false, state.Ptr(true), dbTx)
if err != nil {
return nil, err
}
res.Blocks = append(res.Blocks, BlockOrHash{Block: block})
} else {
h := b.Hash()
res.Blocks = append(res.Blocks, BlockOrHash{Hash: &h})
}
}
return res, nil
}
// TransactionOrHash for union type of transaction and types.Hash
type TransactionOrHash struct {
Hash *common.Hash
Tx *Transaction
}
// MarshalJSON marshals into json
func (th TransactionOrHash) MarshalJSON() ([]byte, error) {
if th.Hash != nil {
return json.Marshal(th.Hash)
}
return json.Marshal(th.Tx)
}
// UnmarshalJSON unmarshals from json
func (th *TransactionOrHash) UnmarshalJSON(input []byte) error {
v := string(input)
if strings.HasPrefix(v, "0x") || strings.HasPrefix(v, "\"0x") {
var h common.Hash
err := json.Unmarshal(input, &h)
if err != nil {
return err
}
*th = TransactionOrHash{Hash: &h}
return nil
}
var t Transaction
err := json.Unmarshal(input, &t)
if err != nil {
return err
}
*th = TransactionOrHash{Tx: &t}
return nil
}
// BlockOrHash for union type of block and types.Hash
type BlockOrHash struct {
Hash *common.Hash
Block *Block
}
// MarshalJSON marshals into json
func (bh BlockOrHash) MarshalJSON() ([]byte, error) {
if bh.Hash != nil {
return json.Marshal(bh.Hash)
}
return json.Marshal(bh.Block)
}
// UnmarshalJSON unmarshals from json
func (bh *BlockOrHash) UnmarshalJSON(input []byte) error {
v := string(input)
if strings.HasPrefix(v, "0x") || strings.HasPrefix(v, "\"0x") {
var h common.Hash
err := json.Unmarshal(input, &h)
if err != nil {
return err
}
*bh = BlockOrHash{Hash: &h}
return nil
}
var b Block
err := json.Unmarshal(input, &b)
if err != nil {
return err
}
*bh = BlockOrHash{Block: &b}
return nil
}
// Transaction structure
type Transaction struct {
Nonce ArgUint64 `json:"nonce"`
GasPrice ArgBig `json:"gasPrice"`
Gas ArgUint64 `json:"gas"`
To *common.Address `json:"to"`
Value ArgBig `json:"value"`
Input ArgBytes `json:"input"`
V ArgBig `json:"v"`
R ArgBig `json:"r"`
S ArgBig `json:"s"`
Hash common.Hash `json:"hash"`
From common.Address `json:"from"`
BlockHash *common.Hash `json:"blockHash"`
BlockNumber *ArgUint64 `json:"blockNumber"`
TxIndex *ArgUint64 `json:"transactionIndex"`
ChainID ArgBig `json:"chainId"`
Type ArgUint64 `json:"type"`
Receipt *Receipt `json:"receipt,omitempty"`
L2Hash *common.Hash `json:"l2Hash,omitempty"`
}
// CoreTx returns a geth core type Transaction
func (t Transaction) CoreTx() *types.Transaction {
return types.NewTx(&types.LegacyTx{
Nonce: uint64(t.Nonce),
GasPrice: (*big.Int)(&t.GasPrice),
Gas: uint64(t.Gas),
To: t.To,
Value: (*big.Int)(&t.Value),
Data: t.Input,
V: (*big.Int)(&t.V),
R: (*big.Int)(&t.R),
S: (*big.Int)(&t.S),
})
}
// NewTransaction creates a transaction instance
func NewTransaction(
tx types.Transaction,
receipt *types.Receipt,
includeReceipt bool, l2Hash *common.Hash,
) (*Transaction, error) {
v, r, s := tx.RawSignatureValues()
from, _ := state.GetSender(tx)
res := &Transaction{
Nonce: ArgUint64(tx.Nonce()),
GasPrice: ArgBig(*tx.GasPrice()),
Gas: ArgUint64(tx.Gas()),
To: tx.To(),
Value: ArgBig(*tx.Value()),
Input: tx.Data(),
V: ArgBig(*v),
R: ArgBig(*r),
S: ArgBig(*s),
Hash: tx.Hash(),
From: from,
ChainID: ArgBig(*tx.ChainId()),
Type: ArgUint64(tx.Type()),
L2Hash: l2Hash,
}
if receipt != nil {
bn := ArgUint64(receipt.BlockNumber.Uint64())
res.BlockNumber = &bn
res.BlockHash = &receipt.BlockHash
ti := ArgUint64(receipt.TransactionIndex)
res.TxIndex = &ti
rpcReceipt, err := NewReceipt(tx, receipt, l2Hash)
if err != nil {
return nil, err
}
if includeReceipt {
res.Receipt = &rpcReceipt
}
}
return res, nil
}
// Receipt structure
type Receipt struct {
Root *common.Hash `json:"root,omitempty"`
CumulativeGasUsed ArgUint64 `json:"cumulativeGasUsed"`
LogsBloom types.Bloom `json:"logsBloom"`
Logs []*types.Log `json:"logs"`
Status ArgUint64 `json:"status"`
TxHash common.Hash `json:"transactionHash"`
TxIndex ArgUint64 `json:"transactionIndex"`
BlockHash common.Hash `json:"blockHash"`
BlockNumber ArgUint64 `json:"blockNumber"`
GasUsed ArgUint64 `json:"gasUsed"`
FromAddr common.Address `json:"from"`
ToAddr *common.Address `json:"to"`
ContractAddress *common.Address `json:"contractAddress"`
Type ArgUint64 `json:"type"`
EffectiveGasPrice *ArgBig `json:"effectiveGasPrice,omitempty"`
TxL2Hash *common.Hash `json:"transactionL2Hash,omitempty"`
}
// NewReceipt creates a new Receipt instance
func NewReceipt(tx types.Transaction, r *types.Receipt, l2Hash *common.Hash) (Receipt, error) {
to := tx.To()
logs := r.Logs
if logs == nil {
logs = []*types.Log{}
}
var contractAddress *common.Address
if r.ContractAddress != state.ZeroAddress {
ca := r.ContractAddress
contractAddress = &ca
}
blockNumber := ArgUint64(0)
if r.BlockNumber != nil {
blockNumber = ArgUint64(r.BlockNumber.Uint64())
}
from, err := state.GetSender(tx)
if err != nil {
return Receipt{}, err
}
receipt := Receipt{
CumulativeGasUsed: ArgUint64(r.CumulativeGasUsed),
LogsBloom: r.Bloom,
Logs: logs,
Status: ArgUint64(r.Status),
TxHash: r.TxHash,
TxIndex: ArgUint64(r.TransactionIndex),
BlockHash: r.BlockHash,
BlockNumber: blockNumber,
GasUsed: ArgUint64(r.GasUsed),
ContractAddress: contractAddress,
FromAddr: from,
ToAddr: to,
Type: ArgUint64(r.Type),
TxL2Hash: l2Hash,
}
if len(r.PostState) > 0 {
root := common.BytesToHash(r.PostState)
receipt.Root = &root
}
if r.EffectiveGasPrice != nil {
egp := ArgBig(*r.EffectiveGasPrice)
receipt.EffectiveGasPrice = &egp
}
return receipt, nil
}
// Log structure
type Log struct {
Address common.Address `json:"address"`
Topics []common.Hash `json:"topics"`
Data ArgBytes `json:"data"`
BlockNumber ArgUint64 `json:"blockNumber"`
TxHash common.Hash `json:"transactionHash"`
TxIndex ArgUint64 `json:"transactionIndex"`
BlockHash common.Hash `json:"blockHash"`
LogIndex ArgUint64 `json:"logIndex"`
Removed bool `json:"removed"`
}
// NewLog creates a new instance of Log
func NewLog(l types.Log) Log {
return Log{
Address: l.Address,
Topics: l.Topics,
Data: l.Data,
BlockNumber: ArgUint64(l.BlockNumber),
TxHash: l.TxHash,
TxIndex: ArgUint64(l.TxIndex),
BlockHash: l.BlockHash,
LogIndex: ArgUint64(l.Index),
Removed: l.Removed,
}
}
// ExitRoots structure
type ExitRoots struct {
BlockNumber ArgUint64 `json:"blockNumber"`
Timestamp ArgUint64 `json:"timestamp"`
MainnetExitRoot common.Hash `json:"mainnetExitRoot"`
RollupExitRoot common.Hash `json:"rollupExitRoot"`
}
// ZKCounters counters for the tx
type ZKCounters struct {
GasUsed ArgUint64 `json:"gasUsed"`
UsedKeccakHashes ArgUint64 `json:"usedKeccakHashes"`
UsedPoseidonHashes ArgUint64 `json:"usedPoseidonHashes"`
UsedPoseidonPaddings ArgUint64 `json:"usedPoseidonPaddings"`
UsedMemAligns ArgUint64 `json:"usedMemAligns"`
UsedArithmetics ArgUint64 `json:"usedArithmetics"`
UsedBinaries ArgUint64 `json:"usedBinaries"`
UsedSteps ArgUint64 `json:"usedSteps"`
UsedSHA256Hashes ArgUint64 `json:"usedSHA256Hashes"`
}
// ZKCountersLimits used to return the zk counter limits to the user
type ZKCountersLimits struct {
MaxGasUsed ArgUint64 `json:"maxGasUsed"`
MaxKeccakHashes ArgUint64 `json:"maxKeccakHashes"`
MaxPoseidonHashes ArgUint64 `json:"maxPoseidonHashes"`
MaxPoseidonPaddings ArgUint64 `json:"maxPoseidonPaddings"`
MaxMemAligns ArgUint64 `json:"maxMemAligns"`
MaxArithmetics ArgUint64 `json:"maxArithmetics"`
MaxBinaries ArgUint64 `json:"maxBinaries"`
MaxSteps ArgUint64 `json:"maxSteps"`
MaxSHA256Hashes ArgUint64 `json:"maxSHA256Hashes"`
}
// RevertInfo contains the reverted message and data when a tx
// is reverted during the zk counter estimation
type RevertInfo struct {
Message string `json:"message"`
Data *ArgBytes `json:"data,omitempty"`
}
// ZKCountersResponse returned when counters are estimated
type ZKCountersResponse struct {
CountersUsed ZKCounters `json:"countersUsed"`
CountersLimits ZKCountersLimits `json:"countersLimit"`
Revert *RevertInfo `json:"revert,omitempty"`
OOCError *string `json:"oocError,omitempty"`
}
// NewZKCountersResponse creates an instance of ZKCounters to be returned
// by the RPC to the caller
func NewZKCountersResponse(zkCounters state.ZKCounters, limits ZKCountersLimits, revert *RevertInfo, oocErr error) ZKCountersResponse {
var oocErrMsg *string
if oocErr != nil {
s := oocErr.Error()
oocErrMsg = &s
}
return ZKCountersResponse{
CountersUsed: ZKCounters{
GasUsed: ArgUint64(zkCounters.GasUsed),
UsedKeccakHashes: ArgUint64(zkCounters.KeccakHashes),
UsedPoseidonHashes: ArgUint64(zkCounters.PoseidonHashes),
UsedPoseidonPaddings: ArgUint64(zkCounters.PoseidonPaddings),
UsedMemAligns: ArgUint64(zkCounters.MemAligns),
UsedArithmetics: ArgUint64(zkCounters.Arithmetics),
UsedBinaries: ArgUint64(zkCounters.Binaries),
UsedSteps: ArgUint64(zkCounters.Steps),
UsedSHA256Hashes: ArgUint64(zkCounters.Sha256Hashes_V2),
},
CountersLimits: limits,
Revert: revert,
OOCError: oocErrMsg,
}
}