Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 452 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 452 Bytes

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