You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -94,8 +97,16 @@ public class TransactionReceiptJson implements TransactionRef, Serializable {
94
97
@JsonSerialize(using = HexIntSerializer.class)
95
98
privateIntegerstatus;
96
99
100
+
/**
101
+
* The actual value per gas deducted from the sender's account. Before EIP-1559, this is equal to the transaction's gas price. After, it is equal to baseFeePerGas + min(maxFeePerGas - baseFeePerGas, maxPriorityFeePerGas).
102
+
*/
97
103
privateWeieffectiveGasPrice;
98
104
105
+
/**
106
+
* The actual value per gas deducted from the sender's account for blob gas. Only specified for blob transactions as defined by EIP-4844.
107
+
*/
108
+
privateWeiblobGasPrice;
109
+
99
110
/**
100
111
* Transaction type
101
112
*
@@ -105,6 +116,11 @@ public class TransactionReceiptJson implements TransactionRef, Serializable {
105
116
@JsonSerialize(using = HexIntSerializer.class)
106
117
privateIntegertype = 0;
107
118
119
+
/**
120
+
* The post-transaction state root. Only specified for transactions included before the Byzantium upgrade.
121
+
*/
122
+
privateHex32root;
123
+
108
124
publicTransactionIdgetTransactionHash() {
109
125
returntransactionHash;
110
126
}
@@ -209,6 +225,14 @@ public void setEffectiveGasPrice(Wei effectiveGasPrice) {
209
225
this.effectiveGasPrice = effectiveGasPrice;
210
226
}
211
227
228
+
publicWeigetBlobGasPrice() {
229
+
returnblobGasPrice;
230
+
}
231
+
232
+
publicvoidsetBlobGasPrice(WeiblobGasPrice) {
233
+
this.blobGasPrice = blobGasPrice;
234
+
}
235
+
212
236
publicintgetType() {
213
237
if (type == null) {
214
238
return0;
@@ -220,6 +244,14 @@ public void setType(int type) {
0 commit comments