clandestine.eth

Results 23 issues of clandestine.eth

### Component General design optimization (improving efficiency, cleanliness, or developer experience) ### Describe the suggested feature and problem it solves. Using Forge instead of NPM would significantly improve Foundry developer...

### Component Cast ### Describe the feature you would like Something like this would be nice for computing CREATE2 initcode hashes on the fly: ```sh cast create2 initcodehash ``` Output...

T-feature

I have developed a validation pattern that can greatly reduce the gas associated with wallet deployment and usage. The concept behind this pattern is rather straightforward: instead of storing various...

Hey guys, been watching the project unfold for months and have learned a lot. As a way to give back I thought I'd contribute some improvements for the smart contracts....

**Is your feature request related to a problem? Please describe.** Yes, the main concern in this issue is gas usage. `MIPS.sol` could benefit from a rewrite in Huff, as well...

```solidity // Short-circuit to save gas for non-overflow cases, 256 by 256 division. if iszero(z1) { let freeMemoryPointer := mload(0x40) mstore(freeMemoryPointer, div(z0, denominator)) return(freeMemoryPointer, 32) } ``` Feel free to...

Hello, I've been looking over the codebase the last few days and I noticed you could use some help optimizing the contract so that it may be better suited for...