upgradable-contract
upgradable-contract copied to clipboard
Demonstration to show how delegatecall work and how we can implement upgradable smart contract architecture
upgradable-contract
This repository is for demonstrate two things
- How delegatecall, call can be done in Solidity
- How upgradable smart contract architecture can be done
DelegateCall
Setup
- checkout branch to
feat/delegatecall - install truffle
npm i -g truffle - install node module dependency
npm install
Test
npm run test
Upgradable Smart Contract
WIP