Skip to content

Latest commit

 

History

History

OpenWebinars - Tools to Blockchain Developers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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