gnosis/gnosis-dapp-box

Name: gnosis-dapp-box

Owner: GNOSIS

Description: Gnosis Drizzle React Truffle Box

Created: 2018-02-28 07:59:20.0

Updated: 2018-02-28 08:00:56.0

Pushed: 2018-02-28 08:00:55.0

Homepage: null

Size: 367

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Drizzle Truffle Box

This box comes with everything you need to start using smart contracts from a react app with Drizzle. It includes drizzle, drizzle-react and drizzle-react-components to give you a complete overview of Drizzle's capabilities.

Installation
  1. Install Truffle and Ganache CLI globally. If you prefer, the graphical version of Ganache works as well!

    install -g truffle
    install -g ganache-cli
    
  2. Download the box. This also takes care of installing the necessary dependencies.

    fle unbox drizzle
    
  3. Run the development blockchain, we recommend passing in a blocktime. Otherwise, its difficult to track things like loading indicators because Ganache will mine instantly.

     second blocktime.
    che-cli -b 3
    
  4. Compile and migrate the smart contracts. Note inside the development console we don't preface commands with truffle.

    ile
    ate
    
  5. Run the webpack server for front-end hot reloading (outside the development console). Smart contract changes must be manually recompiled and migrated.

    erves the front-end on http://localhost:3000
    run start
    
  6. Truffle can run tests written in Solidity or JavaScript against your smart contracts. Note the command varies slightly if you're in or outside of the development console.

    f inside the development console.
    
    
    f outside the development console..
    fle test
    
  7. Jest is included for testing React components. Compile your contracts before running Jest, or you may receive some file not found errors.

    un Jest outside of the development console for front-end component tests.
    run test
    
  8. To build the application for production, use the build command. A production build will be in the build_webpack folder.

    run build
    
FAQ

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.