graphql: add blobGasUsed,excessBlobGas in block scheme

Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
jsvisa 2023-09-11 22:28:45 +08:00
parent 05070803a8
commit b9e551a559

View file

@ -275,6 +275,10 @@ const schema string = `
# Withdrawals is a list of withdrawals associated with this block. If
# withdrawals are unavailable for this block, this field will be null.
withdrawals: [Withdrawal!]
# BlobGasUsed is the amount of gas used for blob transactions.
blobGasUsed: Long
# ExcessBlobGas is the amount of excess gas available for blob transactions.
excessBlobGas: Long
}
# CallData represents the data associated with a local contract call.