Skip to content

Commit

Permalink
eth: add gas price field to 1559 txs
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient committed Jul 17, 2023
1 parent 3df07da commit cdb0dee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/schemas/transaction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Transaction1559Unsigned:
- input
- maxFeePerGas
- maxPriorityFeePerGas
- gasPrice
- chainId
- accessList
properties:
Expand Down Expand Up @@ -55,6 +56,9 @@ Transaction1559Unsigned:
title: max fee per gas
description: The maximum total fee per gas the sender is willing to pay (includes the network / base fee and miner / priority fee) in wei
$ref: '#/components/schemas/uint'
gasPrice:
title: gas price
description: The effective gas price paid by the sender in wei. For transactions not yet mined, this value should be set equal to the max fee cap per gas. This field is DEPRECATED, please transition to using effectiveGasPrice in the receipt object going forward.
accessList:
title: accessList
description: EIP-2930 access list
Expand Down

0 comments on commit cdb0dee

Please sign in to comment.