Skip to content
Utkarsh Gupta edited this page Feb 3, 2018 · 3 revisions

Welcome to the truffle-security wiki!

This documentation is a work in progress.

The only integration in truffle security box right now is of Solium linting. The default configuration files are provided.

Installation & Usage

  • Install Truffle globally

      npm install -g truffle
    

  • Download the box. This also takes care of installing the necessary dependencies.

      truffle unbox UtkarshGupta-CS/truffle-security
    

  • Enter the boilerplate

      cd truffle-security
    

  • Install npm dependencies

      npm install
    

  • Compile the Contracts

      truffle compile
    

  • Deploy the compiled contracts

      truffle migrate
    

  • Linting the Solidity Contracts

      npm run lint:sol
    

Clone this wiki locally