improve comments

This commit is contained in:
Sina Mahmoodi 2023-09-12 18:14:15 +02:00
parent b9e551a559
commit a3e1d3ea95

View file

@ -143,7 +143,7 @@ const schema string = `
# coerced into the EIP-1559 format by setting both maxFeePerGas and # coerced into the EIP-1559 format by setting both maxFeePerGas and
# maxPriorityFeePerGas as the transaction's gas price. # maxPriorityFeePerGas as the transaction's gas price.
effectiveGasPrice: BigInt effectiveGasPrice: BigInt
# BlobGasUsed is the amount of gas used for this blob transaction. # BlobGasUsed is the amount of blob gas used by this transaction.
blobGasUsed: Long blobGasUsed: Long
# blobGasPrice is the actual value per blob gas deducted from the senders account. # blobGasPrice is the actual value per blob gas deducted from the senders account.
blobGasPrice: BigInt blobGasPrice: BigInt
@ -168,7 +168,7 @@ const schema string = `
# RawReceipt is the canonical encoding of the receipt. For post EIP-2718 typed transactions # RawReceipt is the canonical encoding of the receipt. For post EIP-2718 typed transactions
# this is equivalent to TxType || ReceiptEncoding. # this is equivalent to TxType || ReceiptEncoding.
rawReceipt: Bytes! rawReceipt: Bytes!
# BlobVersionedHashes is a set of hash values contained in the blob transaction. # BlobVersionedHashes is a set of hash outputs from the blobs in the transaction.
blobVersionedHashes: [Bytes32!] blobVersionedHashes: [Bytes32!]
} }
@ -275,9 +275,9 @@ const schema string = `
# Withdrawals is a list of withdrawals associated with this block. If # Withdrawals is a list of withdrawals associated with this block. If
# withdrawals are unavailable for this block, this field will be null. # withdrawals are unavailable for this block, this field will be null.
withdrawals: [Withdrawal!] withdrawals: [Withdrawal!]
# BlobGasUsed is the amount of gas used for blob transactions. # BlobGasUsed is the total amount of gas used by the transactions.
blobGasUsed: Long blobGasUsed: Long
# ExcessBlobGas is the amount of excess gas available for blob transactions. # ExcessBlobGas is a running total of blob gas consumed in excess of the target, prior to the block.
excessBlobGas: Long excessBlobGas: Long
} }