Anton Bukov
Anton Bukov
`block.coinbase` is the address that receives the block reward (ETH emission) and priority fees. Why shouldn't it be `payable`? As I understand it, `payable` denotes an address's ability to receive...
Since the concept of `pure` does not exist at the EVM level, I have always wondered what specific problem the `pure` keyword in Solidity is intended to solve. In practice,...
Any ETA? I wish I could make external data structures like `AddressSet` be able to be placed in transient storage.
Latest version of the lib has business logic built on top of try-catch behavior. I don’t really like it anymore, but the code was kinda expressive and compact with this...
@dmosites true
Would be cool to have it for storage, can do with Solidity libs nowadays
What would you say about having new array access modifiers? - `storage slice` - `memory slice` Which would have 2 variables on stack, similar to `calldata` offset and length? Where...
But this was desired behavior, why do you think it should be fixed? This `balance` is being used exclusively in `rescueFunds()` which lets distributor to withdraw some rewards - that's...