What's Changed
Support for EIP-1559 Gas Prices
Added support for EIP-1559 gas prices. An EIP-1559 Gas Price can be added to the chain if both max_fee_per_gas
and max_priority_fee_per_gas
are set. #925
If set, the gas price is returned in the gasPrice
JSON entry of the chain with the type of fixed1559
.
GET /v1/chains/<chainId>
{
...
"gasPrice": [
...
{
"type": "fixed1559",
"maxFeePerGas": "<string>",
"maxPriorityFeePerGas": "<string>"
}
]
}
Other changes
- Bump boto3 from 1.28.3 to 1.28.25 in #923
- Bump psycopg2-binary from 2.9.6 to 2.9.7 in #922
- Bump drf-yasg[validation] from 1.21.5 to 1.21.7 in #921
- Bump coverage from 7.2.7 to 7.3.0 in #920
New Contributors
Full Changelog: v2.61.0...v2.62.0