Ayesha Siddiquaayeshatechtalk.hashnode.dev·Nov 26, 2023Proxy Method: JavaScript Design PatternIn this article, we will see what are Proxy Patterns using JavaScript, which is one of the Design Pattern. Prerequisites: Javascript But before moving ahead with Proxy Patterns, what are Design Patterns? → Design patterns are elegant solutions to sol...Discuss·5 likesJavaScript
Iman Roustairousta.hashnode.dev·Mar 8, 2023JavaScript Proxy: A Practical GuideIn JavaScript, a Proxy object is an object that wraps another object (target) and intercepts the fundamental operations of the target object. The Proxy object allows you to create an object that can be used in place of the original object, but which ...Discuss·37 readsJavaScript
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