sudo rm -rf --no-preserve-root /
sudo rm -rf --no-preserve-root /
Same syntax for `implements` would be great as well: ```vyper from snekmate.tokens.interfaces import IERC20Permit implements: erc.IERC20, erc.IERC20Detailed, IERC20Permit ```
I second this as it's apparently how most people think about `immutable`s (assign them like storage variables), and it makes `immutable` modules more consistent as you always have to prepend...
> i think constants can be thought of similarly to class or module-level variables in python, whereas immutables and storage variables are analogous to instance members. so i don't think...
@tserg thanks for the details. However, I still don't understand why this should be invalid syntax tbh. Since it's a subset wrt the lenght, the compiler should be implicitly be...
> Damn, that's a news and a half @mds1 . Best of luck. I am open to waiting for your implementation to get finalised while I prep with as much...
> Hey all, > > just wanted to update everyone that I am still keen on completing this assigned issue. This one is taking time because I am finding the...
> > 😄 thxs; we're publicly live now https://twitter.com/pcaversaccio/status/1738153235678998855. > > Congrats ser, you deserve it. I love how you put your insane hard work out for free for the...
Just as an add-on note, since `0.3.10` you can specify the `evmVersion` via the `pragma` statement, so this can be used as a workaround for now as long as you...
There is `multicall` and `multicall`... You are referring to e.g. this [`multicall`](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Multicall.sol) where you use `CALL`. But if you use `DELEGATECALL` like in my Vyper implementation or [`multicall`](https://github.com/mds1/multicall) the context...
But let me think about whether the correct storage space is used - that might be a blocker indeed...