This video should be mandatory to every solidity dev out there.
@sunguru9813 жыл бұрын
What an eye opening video … Diamond class
@SK-vg3mw Жыл бұрын
Really great presentation, thank you!
@javier1234543213 жыл бұрын
The compiler should really be at least attempting to pack the structs without the devs needing to do it for them. It seems like a massive oversight, any idea if this is being worked on?
@realbotix2 жыл бұрын
Great video. Thank you. The address/uint96 design pattern example is great.
@shafu0x Жыл бұрын
great talk! not so sure what to think about the s_ syntax though...
@crypto_peng2 жыл бұрын
Thank you for the presentation and clear materials here.
@belialvandals42843 жыл бұрын
Very informative!
@DelishShell2 жыл бұрын
Thanks Alex it was very helpful
@pinalikefruit2 жыл бұрын
This is amazing!
@foxcryptoboss3 жыл бұрын
Finally it's here
@oxmoo24762 жыл бұрын
Great info
@g-g12332 жыл бұрын
Thanks for the video, very informative for a newbie like me. Question: Would using a uint96 cost more gas for arithmetic operations since evm is optimized for 256 byte data? If so, how do we balance the tradeoffs between the gas cost of storage vs the gas cost of math when struct packing?
@ha2709 Жыл бұрын
Same to me, the cost for converting from uint96 to uint256 is higher
@raunaquepatra39662 жыл бұрын
Does unchecked arithmetic save gas wrt safe Maths?