Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 819 Bytes

File metadata and controls

42 lines (28 loc) · 819 Bytes

OpenWebinars - Tools to Blockchain Developers

In this course I have learned how to use the tools Remix IDE and Truffle to develop Smart Contracts.

Truffle

  1. Install Truffle using npm.
$ npm install -g truffle
  1. Create a new project.
$ truffle init
  1. Or use an example webpack-based app.
truffle unbox webpack
  1. Run the development console.
truffle develop
  1. Compile and migrate the smart contracts.
truffle(develop)> compile
truffle(develop)> migrate
  1. Run the tests.
truffle(develop)> test