From 3063519984e25494e5b1b2be2cca687b32f754a1 Mon Sep 17 00:00:00 2001 From: "lightclient@protonmail.com" Date: Tue, 16 May 2023 11:27:36 +0200 Subject: [PATCH] better names --- EIPS/eip-4844.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EIPS/eip-4844.md b/EIPS/eip-4844.md index ba6fcb08b8de1a..3e0c6e7298adb2 100644 --- a/EIPS/eip-4844.md +++ b/EIPS/eip-4844.md @@ -104,7 +104,7 @@ def fake_exponential(factor: int, numerator: int, denominator: int) -> int: We introduce a new [EIP-2718](./eip-2718.md) transaction, "blob transaction", where the `TransactionType` is `BLOB_TX_TYPE` and the `TransactionPayload` is the following RLP value: ``` -rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, destination, amount, data, access_list, max_fee_per_data_gas, blob_versioned_hashes, y_parity, r, s])`. +rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, to, value, data, access_list, max_fee_per_data_gas, blob_versioned_hashes, y_parity, r, s])`. ``` The `max_priority_fee_per_gas` and `max_fee_per_gas` fields follow [EIP-1559](./eip-1559.md) semantics @@ -118,7 +118,7 @@ The [EIP-2718](./eip-2718.md) `ReceiptPayload` for this transaction is `rlp([sta The signature values `y_parity`, `r`, and `s` are calculated by constructing a secp256k1 signature over the following digest: -`keccak256(BLOB_TX_TYPE || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, destination, amount, data, access_list, max_fee_per_data_gas, blob_versioned_hashes]))`. +`keccak256(BLOB_TX_TYPE || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, to, value, data, access_list, max_fee_per_data_gas, blob_versioned_hashes]))`. ### Header extension