© 2026 Hashnode
Introduction After solving the Node Guardians Quest ‘Yul basics’, I've gained insights into writing assembly code for a SafeMath library. Since v0.8.0, Solidity supports overflow and underflow checks for arithmetic operations, but inline assembly doe...

Bit A bit is the smallest unit of data in a computer and can be represented in only two patterns 1 0r 0, which can represent on/off , yes/no , true/false. But a bit is too small to represent any meaningful data. Byte A byte is a collection of 8 bits...
