El De-dog-lo

Results 539 comments of El De-dog-lo

> ### Overview > Most people wanting to run a bot locally will probably use a `KeyfileAccount` that requires opt-ing into automatic signing, which is probably annoying. > > ###...

We migrated that into `ProviderAPI` because some providers have both and some don't, do that it was easier to use out of the box. But yes, it is currently not...

> > What about something like this: [ApeWorX/ape#2194](https://github.com/ApeWorX/ape/pull/2194)? > > I was trying/expecting something like that. I would suggest having the three parameters, uri and http_url could be use indistinctly:...

> > cc @antazoey, maybe we can add a config item to `node` in core called like `has_websocket: true` > > What about something like this: [ApeWorX/ape#2194](https://github.com/ApeWorX/ape/pull/2194)? Looks great! Yes,...

Not sure if we need this anymore, we can configure pretty much all of the Ape-specific stuff through ape's own config files, and most of the config of Silverback is...

Hmm, would this look like the UX you are after? ```py from ape import project # Set up this dependendency in `ape-config.yaml` UniswapV2Pair = project.dependencies["uniswap-v2"]["1.0.1"].UniswapV2Pair @app.on_(UniswapV2Pair.Swap) async def all_univ2_clone_swaps(log): ......

Option 1 would need all event definitions exposed in `ContractContainer` objects (signifying an event with no contract address), which would require some changes in ape (cc @antazoey for your thoughts)...

> > Option 1 would need all event definitions exposed in `ContractContainer` objects (signifying an event with no contract address), which would require some changes in ape (cc @antazoey for...

Turns out... not going to be as useful post #228

I think if you just bail here when len is 0, it would work: https://github.com/taskiq-python/taskiq-pipelines/blob/ba056d7bfc0c46ea1235323c93ed6ec09b64ed41/taskiq_pipelines/steps/mapper.py#L109-L111