web3-flashbots
web3-flashbots copied to clipboard
Web3.py plugin for using Flashbots' bundle APIs
I am trying to send a bundle using the FlashbotsBundleDictTx type (based on [this line of code](https://github.com/flashbots/web3-flashbots/blob/c3a12162c41092dd2ec22dfda17e27b9cdad7dce/flashbots/flashbots.py#L159) from the library), but I am getting the following error: `400 Client Error:...
requests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://relay-goerli.flashbots.net/
when I try to execute poetry install I have got error: Note: This error originates from the build backend, and is likely not a problem with poetry but with cytoolz...
Add new broadcaster modules to allow submitting bundles to multiple builder endpoints simultaneously
The default argument `opts=None` within `send_raw_bundle_munger` leads to exception `TypeError: argument of type 'NoneType' is not iterable` inside this code block: ``` def send_raw_bundle_munger( self, signed_bundled_transactions: List[HexBytes], target_block_number: int, opts:...
when i want to cancel a transaction i made, using method `self.w3.flashbots.cancel_private_transaction(tx_hash)` i got response from relay: ` 502 Server Error: Bad Gateway for url: https://relay.flashbots.net/ `
Added an extra delay to the code that checks for bundle inclusion. I have encountered bugs where the TransactionNotFound error is raised even when my bundles land on chain. This...
I am a novice, does the flash robot support polygon? I replace the provider and variable and then run the `sample.py` file, but get a exception on `w3.flashbots.send_bundle(bundle, target_block_number=block +...
I use `web3 5.23.1`, `Python 3.9.6` and `GCC 9.3.0` on linux. When trying to import the `flashbots` module: > from flashbots import flashbot This is the output: > Traceback (most...
I took a look at the example, and I'm finding it difficult to translate it to a contract deployment https://web3py.readthedocs.io/en/stable/contracts.html#contract-deployment-example As we can see here, it is possible to deploy...