Favour Ajayefavourajaye.hashnode.dev·Feb 29, 2024Understanding the ways smart contracts call each otherCan contracts call each other? Are message calls similar to transactions? Hello again 😊. It's nice to have you here. If you have read my previous articles, thank you. If this is your first time reading my article, thank you! You can check out my das...10 likesdirectfunctioncall
Tech Myssteequeaqfatma.hashnode.dev·Oct 3, 2023Solidity's delegateCall() Unveiled: Risks, Solutions, and Best Coding PracticesIn the ever-evolving landscape of blockchain technology, smart contracts are still the backbone of decentralized applications, enabling seamless and trustworthy transactions. Among many functions in Solidity, which is the primary programming language...2 likes·32 readsBlockchain
Anirudh Reddyanirudhreddyrachamalla.hashnode.dev·May 28, 2023Curious case of delegate callWarm Introduction Most devs starting to learn solidity find delegate-call a bit complex to understand. Most articles online provide a good explanation of the theory behind delegate-call but I want to take a different approach here. I would provide a ...20 likes·160 readsSolidity
Johnny Timejohnnytime.hashnode.dev·Apr 7, 2023DelegateCall in Solidity — With ExamplesDelegateCall Solidity DelegateCall is a unique feature in Solidity, which allows contract A to execute code in contract B with contract A storage, and the preserving the msg (msg.sender, msg.value, etc..). Today, we will discuss how DelegateCall work...Solidity