0x6080
0x6080
A common use-case is to involve paying ether to and from addresses involved in transactions. In such cases, a contract may require that the ether be able to be sent:...
There is often circumstances that you want a contract to be tested with a particular set of [config](https://github.com/crytic/echidna/wiki/Config) options. For example, youh might want to adjust maxTimeDelay for certain functions....
I think it would be a great goal to try to match OZ's [governance contracts](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/governance) in this pattern, as some kind of governance is super important for the management of...
### Component Forge ### Describe the feature you would like Issue described in detail [here](https://github.com/gaslimitreached/foundry-hardhat-template/issues/1#issuecomment-1100921010). Many of use would like to use Foundry + Hardhat, which still has tons of...
Hello @saurfang! Thanks for this contribution, it has been super useful! One thing I have been wanting to try is to take in a Multihash as an input parameter and...
While the standard comment tags (`@notice`, `@dev`, ..) work great, Solidity also provides support for `@custom:`. Although everyone's use-case will be slightly different from custom tag, it would be super...
When using gitbook with dodoc, it seems the `@dev` is rendered improperly. For example: ``` /** * @dev Returns the address of the current owner. */ function owner() public view...
The b58 [encode](https://github.com/MrChico/verifyIPFS/blob/master/contracts/verifyIPFS.sol#L28) function is awesome, would there be a way to make a similar one that decodes instead?
If you want your entity to be called "Name", e.g.: ```go func (Name) Fields() []ent.Field { return []ent.Field{...} } ``` It breaks because some methods in the generated `mutation.go` have...
More of a question than an issue, but seemed like it would be an interesting topic. In a typical example, let's say we want to list the most recent items...