Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions EIPS/eip-6466.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Receipts are constructed as follows.
| - | - |
| `from` | The transaction sender's address |
| `gas_used` | How much gas this individual transaction used. Replaces `cumulative_gas_used` |
| `contract_address` | For transactions deploying a contract, the new contract address |
| `contract_address` | For transactions deploying a contract, the new contract address. Present only in `CreateReceipt` |
| `logs` | Logs emitted during transaction execution |
| `status` | [EIP-658](./eip-658.md) transaction status code |
| `authorities` | For transactions with an authorization list, the list of [EIP-7702](./eip-7702.md) `authority` addresses. Non-successful authorizations are represented with an all-zero address |
Expand Down Expand Up @@ -164,7 +164,7 @@ Within `logs`, the `logIndex` field is changed to indicate the log index positio

The `logsBloom` field is no longer returned for new receipts. It continues to be returned for historical receipts conforming to earlier schemes.

`from`, `gasUsed`, and `contractAddress` are already provided via JSON-RPC and are left unchanged.
`from`, `gasUsed`, and `contractAddress` are already provided via JSON-RPC and are left unchanged. For `BasicReceipt` and `SetCodeReceipt`, `contractAddress` will be `null` as these receipt types do not contain the `contract_address` field.

### Consensus `ExecutionPayload` changes

Expand Down
Loading