Deep technical insights into blockchain and smart contract engineering
Posts
Gas Efficient Storage Bit Packing in Solidity: Reducing Gas Costs with Encoded Mappings
Posted on:October 29, 2025 at 09:26 AMComparing bit-packed encoding vs. struct storage layouts for gas efficiency on Ethereum. Analysis with Solidity, Foundry tests, and measurable gas savings.
Exploring Decentralized Systems: Peer-to-Peer (P2P) vs. Peer-to-Lead / Peer-to-Learn / Peer-to-Master
Posted on:May 18, 2025 at 02:06 PMA framework for analyzing decentralized systems, comparing traditional P2P consensus with Peer-to-Lead, Peer-to-Learn, and Peer-to-Master models, from Paxos to modern blockchain innovations.
The Difference Between Zero knowledge Proofs and Digital Signatures
Posted on:December 9, 2023 at 10:22 AMZero knowledge proofs are used for privacy preservation and secure authentication and digital signatures ensures the security and authenticity of transactions.
Advanced Struct Composition in Go Model Design and Best Practices
Posted on:September 29, 2023 at 09:26 AMIn Go, struct composition and interface implementation are two powerful ways to organize code efficiently without the complicated problems that come with inheritance.