Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.16 KB

README.md

File metadata and controls

55 lines (39 loc) · 1.16 KB

Eth develop tools

Etheremum dapp protocol

Folder structure

This repo have all the contracts of the protocol as well as the front end of the interface

.
├── migrations          # Migrations of the smart contracts
├── public              # Public folder for the react interface
├── test                # Tests scripts for testing smart contracts
└── src
    ├── abis            # Migration files for conection with the contracts
    ├── assets          # Assets for the interface
    ├── components      # React components for the interface
    ├── contracts       # Smart contracts written in Solidity

Set Up in Local

You will need to set a local blockchain, you can do it using ganache and truffle

git clone https://github.com/dvidd/eth-develop
cd eth-develop
npm install
npm start

Building the contracts

truffle compile

Testing contracts

truffle test

Migrating contracts to blockchain

truffle migrate