antazoey

Results 333 comments of antazoey

> @unparalleled-js the issue I'm running into is that if we completely bypass gas estimation, the `txn.gas_limit` remains `None` which causes a missing field error later on when signing the...

Minimally, go to `tests/integration/cli/test_misc.py` and add `cache` to that list. I am concerned that the plugin currently does not work yet it has passing tests.

This PR breaks the starknet plugin with: ``` pydantic.error_wrappers.ValidationError: 1 validation error for InvokeFunctionTransaction E signature E field required (type=value_error.missing) ``` The transaction schema is changing a bit here. Wondering...

Have you tried adding `-D MS_WIN64` to the compile flags in `setup.py`? Reference: last comment here https://github.com/ethereum/ethash/issues/87

I think this is also related to the `click.testing.CLIRunner` isolated environments.

Removing bug label since this only applies to the `ape` tests and is not a bug that affect users.

Thought I had: Make it still synchronous out of the box but have async versions of the methods get automatically created. ```python @generate_async_version def get_block() ``` will produce an extra...

@PatrickAlphaC It does listen for events, that is exactly what it does! For example the script: ```python import click from ape import config, networks, project # TODO: Parametrize and make...

OK yeah reading more closely, you are trying to basically have an async type deal that waits for a log and then carries on with something else once it arrives,...