Julien Heller
Julien Heller
I am looking to help implement a feature, and am creating this issue to see if the changes would be welcome by maintainers. Right now, contract type information when using...
- [ ] (If this PR includes a **documentation change**) This PR's branch was created from the `website` branch, and this PR uses the `website` branch as its base branch....
After nomiclabs/hardhat#1726 is merged, it should be possible to support typing Waffle's `deployContract` via overloads as described [here](https://github.com/nomiclabs/hardhat/issues/1725#issuecomment-886099650). Would this change be a welcome contribution to this project?
There are some very common use-cases requiring asynchronous initialization of class instances, e.g. database connection on a repository. This PR enables this via opt-in non-breaking features, without having to do...
It would be great to set an option to pull from the database for descriptions on databases that support `COMMENT ON ...`.
Rollbacks can only be initiated when the action reader sees them happening, with its occurrence stored in `AbstractActionReader#blockHistory`. If the indexState is on a forked block at startup, then the...
It would be nice to be able to define options that are only active when certain themes are active. I have a few themes I cycle through, and would like...
I have a model with this field ``` product_tags = ArrayField(models.CharField(max_length=255), default=list) ``` and it doesn't seem to be searching the nested CharField contents. Will this ever be supported?
From what I understand from the [Doppleganger code](https://github.com/EthWorks/Waffle/blob/master/waffle-mock-contract/src/Doppelganger.sol), it mocks function calls by hashing `msg.data` and creating a hashmap of the result to the mocked function. How do I predictably...
If we were to allow an (optionally async) function to be passed to `MockContract#mock..returns` and `MockContract#mock..withArgs(...).returns`, then we could mock any side-effects that calling that contract function would normally cause....