github NethermindEth/juno v0.15.10

14 hours ago

Added

  • It is now possible to receive RPC responses compressed using GZIP. Add 'Accept-Encoding: gzip' header to your RPC requests and decode the response. Note that the request itself shouldn't be encoded/compressed in any form, otherwise it will fail.

Example of the new usage:

curl --compressed -s -X POST "$RPC_URL" \
  -H 'Content-Type: application/json' \
  -H 'Accept-Encoding: gzip' \
  --data "$JSON_PAYLOAD"

Changed

  • Updated Juno default values to always have the latest block 99% of the time. Previously, these values were optimized for 30s Starknet blocks (before Starknet 0.14.0) and were causing Juno to lag a bit behind.

Fixed

  • Fix an error where the sequencer would return pre-confirmed and candidate transactions mixed together. The node no longer assumes pre-confirmed transactions are in front of candidate transactions when tracking the pre-confirmed block.
  • Fix an issue where Juno was not returning the correct overall fee when fee estimating.

New Contributors

Full Changelog: v0.15.9...v0.15.10

Don't miss a new juno release

NewReleases is sending notifications on new releases.