upgradable-contract icon indicating copy to clipboard operation
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

  1. checkout branch to feat/delegatecall
  2. install truffle
    npm i -g truffle
    
  3. install node module dependency
    npm install
    

Test

npm run test

Upgradable Smart Contract

WIP