Aditya Bondeadityabonde.hashnode.dev·Oct 15, 2024Upgradeability Patterns in SolidityIn Solidity, once a smart contract is deployed, its code is immutable. This means you cannot directly modify the contract logic. However, as applications evolve, there’s often a need to update or upgrade a contract without losing critical data. This ...DiscussMastering Solidity Patternsupgradable smart contracts
Abhik Banerjeeabhik.hashnode.dev·Jul 20, 20226 Nuances of Using Upgradeable Smart ContractsPlease Note: I will be migrating to Hashnode after the conclusion of this series and will be using it as my primary Tech Blog for its advantages. I will continue to share on Dev.to but will be more active on Hashnode. If you liked my articles, feel f...Discuss·1.6K readsUpgradeable Smart Contracts in a Bunchupgradable smart contracts
Emmanuel Oaikhenanemmaodia.hashnode.dev·Jun 8, 2022How to Create Upgradeable Solidity Smart ContractsWhy Upgrade Smart Contracts? Smart Contracts are meant to be immutable! After all, that is a principal pillar on which decentralization rests. Why then do we have to need to create new versions of Smart Contracts (read upgrade)? Well, same reason why...DiscussProxy Pattern