gitextract_scp6vz3s/ ├── .gitignore ├── README.md ├── client/ │ ├── .gitignore │ ├── README.md │ ├── lib/ │ │ ├── Web3Container.js │ │ ├── getContract.js │ │ └── getWeb3.js │ ├── next.config.js │ ├── package.json │ └── pages/ │ ├── accounts.js │ ├── dapp.js │ └── index.js ├── contracts/ │ ├── Migrations.sol │ └── SimpleStorage.sol ├── migrations/ │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── package.json ├── test/ │ ├── TestSimpleStorage.sol │ └── simplestorage.js ├── truffle-box.json └── truffle.js