@@ -84,9 +84,68 @@ public static class Block {
84
84
private String baseFeePerGas ;
85
85
private String withdrawalsRoot ;
86
86
private List <Withdrawal > withdrawals ;
87
+ private String blobGasUsed ;
88
+ private String excessBlobGas ;
87
89
88
90
public Block () {}
89
91
92
+ public Block (
93
+ String number ,
94
+ String hash ,
95
+ String parentHash ,
96
+ String nonce ,
97
+ String sha3Uncles ,
98
+ String logsBloom ,
99
+ String transactionsRoot ,
100
+ String stateRoot ,
101
+ String receiptsRoot ,
102
+ String author ,
103
+ String miner ,
104
+ String mixHash ,
105
+ String difficulty ,
106
+ String totalDifficulty ,
107
+ String extraData ,
108
+ String size ,
109
+ String gasLimit ,
110
+ String gasUsed ,
111
+ String timestamp ,
112
+ List <TransactionResult > transactions ,
113
+ List <String > uncles ,
114
+ List <String > sealFields ,
115
+ String baseFeePerGas ,
116
+ String withdrawalsRoot ,
117
+ List <Withdrawal > withdrawals ,
118
+ String blobGasUsed ,
119
+ String excessBlobGas ) {
120
+ this .number = number ;
121
+ this .hash = hash ;
122
+ this .parentHash = parentHash ;
123
+ this .nonce = nonce ;
124
+ this .sha3Uncles = sha3Uncles ;
125
+ this .logsBloom = logsBloom ;
126
+ this .transactionsRoot = transactionsRoot ;
127
+ this .stateRoot = stateRoot ;
128
+ this .receiptsRoot = receiptsRoot ;
129
+ this .author = author ;
130
+ this .miner = miner ;
131
+ this .mixHash = mixHash ;
132
+ this .difficulty = difficulty ;
133
+ this .totalDifficulty = totalDifficulty ;
134
+ this .extraData = extraData ;
135
+ this .size = size ;
136
+ this .gasLimit = gasLimit ;
137
+ this .gasUsed = gasUsed ;
138
+ this .timestamp = timestamp ;
139
+ this .transactions = transactions ;
140
+ this .uncles = uncles ;
141
+ this .sealFields = sealFields ;
142
+ this .baseFeePerGas = baseFeePerGas ;
143
+ this .withdrawalsRoot = withdrawalsRoot ;
144
+ this .withdrawals = withdrawals ;
145
+ this .blobGasUsed = blobGasUsed ;
146
+ this .excessBlobGas = excessBlobGas ;
147
+ }
148
+
90
149
public Block (
91
150
String number ,
92
151
String hash ,
@@ -377,6 +436,34 @@ public void setWithdrawals(List<Withdrawal> withdrawals) {
377
436
this .withdrawals = withdrawals ;
378
437
}
379
438
439
+ public BigInteger getBlobGasUsed () {
440
+ if (blobGasUsed == null ) return BigInteger .ZERO ;
441
+ return Numeric .decodeQuantity (blobGasUsed );
442
+ }
443
+
444
+ public String getBlobGasUsedRaw () {
445
+ if (blobGasUsed == null ) return "0" ;
446
+ return blobGasUsed ;
447
+ }
448
+
449
+ public void setBlobGasUsed (String blobGasUsed ) {
450
+ this .blobGasUsed = blobGasUsed ;
451
+ }
452
+
453
+ public BigInteger getExcessBlobGas () {
454
+ if (excessBlobGas == null ) return BigInteger .ZERO ;
455
+ return Numeric .decodeQuantity (excessBlobGas );
456
+ }
457
+
458
+ public String getExcessBlobGasRaw () {
459
+ if (excessBlobGas == null ) return "0" ;
460
+ return excessBlobGas ;
461
+ }
462
+
463
+ public void setExcessBlobGas (String excessBlobGas ) {
464
+ this .excessBlobGas = excessBlobGas ;
465
+ }
466
+
380
467
@ Override
381
468
public boolean equals (Object o ) {
382
469
if (this == o ) {
@@ -504,6 +591,18 @@ public boolean equals(Object o) {
504
591
return false ;
505
592
}
506
593
594
+ if (getBlobGasUsedRaw () != null
595
+ ? !getBlobGasUsedRaw ().equals (block .getBlobGasUsedRaw ())
596
+ : block .getBlobGasUsedRaw () != null ) {
597
+ return false ;
598
+ }
599
+
600
+ if (getExcessBlobGasRaw () != null
601
+ ? !getExcessBlobGasRaw ().equals (block .getExcessBlobGasRaw ())
602
+ : block .getExcessBlobGasRaw () != null ) {
603
+ return false ;
604
+ }
605
+
507
606
if (getWithdrawalsRoot () != null
508
607
? !getWithdrawalsRoot ().equals (block .getWithdrawalsRoot ())
509
608
: block .getWithdrawalsRoot () != null ) {
@@ -556,6 +655,14 @@ public int hashCode() {
556
655
31 * result
557
656
+ (getWithdrawalsRoot () != null ? getWithdrawalsRoot ().hashCode () : 0 );
558
657
result = 31 * result + (getWithdrawals () != null ? getWithdrawals ().hashCode () : 0 );
658
+ result =
659
+ 31 * result
660
+ + (getBlobGasUsedRaw () != null ? getBlobGasUsedRaw ().hashCode () : 0 );
661
+ result =
662
+ 31 * result
663
+ + (getExcessBlobGasRaw () != null
664
+ ? getExcessBlobGasRaw ().hashCode ()
665
+ : 0 );
559
666
return result ;
560
667
}
561
668
}
@@ -704,6 +811,60 @@ public TransactionObject(
704
811
accessList );
705
812
}
706
813
814
+ public TransactionObject (
815
+ String hash ,
816
+ String nonce ,
817
+ String blockHash ,
818
+ String blockNumber ,
819
+ String chainId ,
820
+ String transactionIndex ,
821
+ String from ,
822
+ String to ,
823
+ String value ,
824
+ String gasPrice ,
825
+ String gas ,
826
+ String input ,
827
+ String creates ,
828
+ String publicKey ,
829
+ String raw ,
830
+ String r ,
831
+ String s ,
832
+ long v ,
833
+ String yParity ,
834
+ String type ,
835
+ String maxFeePerGas ,
836
+ String maxPriorityFeePerGas ,
837
+ List <AccessListObject > accessList ,
838
+ String maxFeePerBlobGas ,
839
+ List <String > versionedHashes ) {
840
+ super (
841
+ hash ,
842
+ nonce ,
843
+ blockHash ,
844
+ blockNumber ,
845
+ chainId ,
846
+ transactionIndex ,
847
+ from ,
848
+ to ,
849
+ value ,
850
+ gas ,
851
+ gasPrice ,
852
+ input ,
853
+ creates ,
854
+ publicKey ,
855
+ raw ,
856
+ r ,
857
+ s ,
858
+ v ,
859
+ yParity ,
860
+ type ,
861
+ maxFeePerGas ,
862
+ maxPriorityFeePerGas ,
863
+ accessList ,
864
+ maxFeePerBlobGas ,
865
+ versionedHashes );
866
+ }
867
+
707
868
@ Override
708
869
public Transaction get () {
709
870
return this ;
0 commit comments