El De-dog-lo

Results 539 comments of El De-dog-lo

> Sorry, just for clarification, what do you mean by "simpler types?" Ones that work in the database schema

We can add a checklist. Not a priority right now, but I think @NotPeopling2day wqs experimenting during his hypothesis workshop

We have something similar https://docs.apeworx.io/ape/stable/methoddocs/api.html#ape.api.networks.EcosystemAPI.decode_returndata But obviously this doesn't work quite as nicely

We have several supported query types (transactions for an account is one of them), and typically we add the `.query(*param_names, **filter_args) -> pd.DataFrame` method to all our query endpoints. You...

> you can daskify ape like this, and then `client.submit/map` any function which calls ape: > > ```python > class WorkerConnection(WorkerPlugin): > def setup(self, worker): > networks.ethereum.mainnet.use_default_provider().__enter__() > > client.register_worker_plugin(WorkerConnection())...

> Is it superseded by CMO? Can we close this? not really, could complement CMO actually if it were published as a package separately that we could use in a...

Probably unlikely that this will be fixed, but for future users of this code it might be good to bear this in mind as a patch fix.

> `eth_account` actually [enforces all four of them](https://github.com/ethereum/eth-account/blob/c4bc769039fdacb8eddf26c84640af84651a9da2/eth_account/_utils/structured_data/validation.py#L66-L80), which is incorrect. Yeah, this is a bug with `eth-account`, see https://github.com/ethereum/eth-account/issues/72

sketch of a design for this (`EIP712Message` must be implemented upstream in `eth_account`): ```python from eth_abi import abi_types # Not sure if this is made available from eth_account.messages import EIP712Message...

Made an implementation of this here: https://github.com/ethereum/eth-account/pull/111