From f68b79d6cb0f101687d36f1353b4b5f8a098aded Mon Sep 17 00:00:00 2001 From: Mdaiki0730 Date: Thu, 4 Dec 2025 17:26:35 +0900 Subject: [PATCH 1/2] Mention blob related fields in getTransactionReceipt --- KIPs/kip-279.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KIPs/kip-279.md b/KIPs/kip-279.md index 33c620b..97f6ddc 100644 --- a/KIPs/kip-279.md +++ b/KIPs/kip-279.md @@ -238,10 +238,12 @@ eth_getRawTransaction returns the raw transaction RLP prefixed with `BLOB_TX_TYP #### eth_getBlock, eth_getTransaction, eth_getTransactionReceipt These eth namespace APIs that return transaction fields MUST show the `maxFeePerBlobGas` and `blobVersionedHashes` fields, and its `type: "0x03"`. +Regarding `getTransactionReceipt`, the blob-related fields `blobGasUsed` and `blobGasPrice` are added only to the receipt for blobTx. #### kaia_getBlock, kaia_getTransaction, kaia_getTransactionReceipt These kaia namespace APIs that return transaction fields MUST show the `maxFeePerBlobGas` and `blobVersionedHashes` fields, and its `typeInt: 30723`, and `type: "TxTypeEthereumBlob"`. +Regarding `getTransactionReceipt`, the blob-related fields `blobGasUsed` and `blobGasPrice` are added only to the receipt for blobTx. #### eth_getBlobSidecars From 0c156250816f206f3c93146081f5ee75bc64048c Mon Sep 17 00:00:00 2001 From: Mdaiki0730 Date: Fri, 5 Dec 2025 12:20:02 +0900 Subject: [PATCH 2/2] Update comments for blob fields --- KIPs/kip-279.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KIPs/kip-279.md b/KIPs/kip-279.md index 97f6ddc..2d32faa 100644 --- a/KIPs/kip-279.md +++ b/KIPs/kip-279.md @@ -238,12 +238,12 @@ eth_getRawTransaction returns the raw transaction RLP prefixed with `BLOB_TX_TYP #### eth_getBlock, eth_getTransaction, eth_getTransactionReceipt These eth namespace APIs that return transaction fields MUST show the `maxFeePerBlobGas` and `blobVersionedHashes` fields, and its `type: "0x03"`. -Regarding `getTransactionReceipt`, the blob-related fields `blobGasUsed` and `blobGasPrice` are added only to the receipt for blobTx. +The `eth_getTransactionReceipt` MUST also show `blobGasUsed` and `blobGasPrice` fileds. #### kaia_getBlock, kaia_getTransaction, kaia_getTransactionReceipt These kaia namespace APIs that return transaction fields MUST show the `maxFeePerBlobGas` and `blobVersionedHashes` fields, and its `typeInt: 30723`, and `type: "TxTypeEthereumBlob"`. -Regarding `getTransactionReceipt`, the blob-related fields `blobGasUsed` and `blobGasPrice` are added only to the receipt for blobTx. +The `eth_getTransactionReceipt` MUST also show `blobGasUsed` and `blobGasPrice` fileds. #### eth_getBlobSidecars