Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Releases: onbjerg/ethers-flashbots

0.8.1

24 Dec 07:21
bb9c4c5
Compare
Choose a tag to compare

A small patch to fix the documentation on docs.rs.

0.8.0

24 Dec 07:21
6153996
Compare
Choose a tag to compare

Added

  • The basefee for a simulated block can now be specified.

0.7.0

24 Dec 07:21
Compare
Choose a tag to compare

Changed

  • Updated to ethers ^0.6.0

0.6.0

24 Dec 07:22
Compare
Choose a tag to compare

Changed

  • Relaxed version requirement for Ethers - version requirement is now ^0.5.0.
  • Disabled default Ethers features to allow for building on Windows (which lacks IPC support, see gakonst/ethers-rs#393)

0.5.0

24 Dec 07:22
Compare
Choose a tag to compare

Added

  • Revert reason is now parsed, if there is any.

Fixed

  • value on a simulated transaction was incorrectly assumed to be
    the amount of Ether sent in a transaction. It is now correctly
    parsed as Bytes, since it represents the return data (if any)
    of the transaction.

0.4.0

24 Dec 07:23
Compare
Choose a tag to compare

Changed

  • Parameters are now validated before bundles are sent to the relay.
    Check the documentation for more information.
  • Bumped ethers to 0.5.1

Added

  • Added a helper to get the effective gas price of bundles and
    bundle transactions (SimulatedBundle::effective_gas_price and SimulatedTransaction::effective_gas_price).

0.3.1

24 Dec 07:23
Compare
Choose a tag to compare

Added

  • Added a way to get stats about bundles (FlashbotsMiddleware::get_bundle_stats)
  • Added a getter for the bundle hash of a pending bundle
  • Added a way to get stats about your searcher identity (FlashbotsMiddleware::get_user_stats)

0.3.0

24 Dec 07:23
Compare
Choose a tag to compare

Fixes

  • If your bundle contains a transaction that deploys a contract,
    the SimulatedTransaction will now have a destination (to) of
    None to distinguish this from the zero address.