El De-dog-lo
El De-dog-lo
@NoahY43619 two quick things jump out at me, but I don't think it's related to your issue: `contract.name` should be `contract.name()` and `contract.symbol` should be `contract.symbol()`, since they both have...
Another thing, so you're using a test account that won't have a balance on a public network (even if it's a testnet) so that would probably have an exception. If...
I got something working! Not sure how well this works with your use case, but this is a working POC: `scripts/deployer.py`: ```py import click import uvicorn # type: ignore from...
Another note: for this kind of use case, it would probably be best to return the deployment txn id and have the user wait for it to process
Usage note, the lag in handling is pretty significant, I don't think this would work very well for a production server. More than happy to hop into Discord and work...
Yeah, this is difficult to debug without any further knowledge of what the code is doing Happy to jump into our discord, I'll be in the Helpdesk chat for the...
These are some bizarre behaviors I have not seen before! Let's definitely make a point to debug in discord on Monday if that would work for you. There might be...
Yes, that's exactly the issue. It actually is downgrading eth-ape to 0.4.6 and then upgrading again to 0.5.1,depending on the order of the plugins. Trying installing infura last
Also maybe consider avoiding using the cache if an update is detected to the schema?
> > It might be nice to have the indexed arguments in a separate structure from `event_arguments` (or a sub-field) so that they can be searched more easily from this...