From 1cf8266a3872855c405bec89349c145b232c00a9 Mon Sep 17 00:00:00 2001 From: William Law Date: Tue, 11 Jun 2024 11:03:54 -0700 Subject: [PATCH] Update EIP-7591: fix eip 7591 typo Merged by EIP-Bot. --- EIPS/eip-7591.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/EIPS/eip-7591.md b/EIPS/eip-7591.md index eba33456cf84b..d688c489a8e2e 100644 --- a/EIPS/eip-7591.md +++ b/EIPS/eip-7591.md @@ -23,6 +23,8 @@ This will reduce growth of the chain history. ## Specification +BLS_TX_TYPE = Bytes1(0x04) + ### Transaction Type The transaction type will have the following format: @@ -35,7 +37,7 @@ with `sender` being the BLS public key of an account with address `address = [0: The signature value `signature` is calculated by constructing a BLS signature over the following digest: -`tx_hash = keccak256(BLOB_TX_TYPE || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, to, value, data, access_list, sender]))`. +`tx_hash = keccak256(BLS_TX_TYPE || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, to, value, data, access_list, sender]))`. ### Header changes