/truffleRopstenBoilerplate

A HelloWorld.sol template for deploying to test networks with truffle

Primary LanguageJavaScript

Truffle Ropsten Boilerplate

Detailed tutorial here

Setup

  1. npm install dependencies: npm install --save truffle-hdwallet-provider
  2. Add your wallet mneumonic to truffle.js
  3. Add your infura key to truffle.js
  4. Create your contracts in ./contracts
  5. Deploy your new contract with truffle deploy --network ropsten
  6. Migrate future contracts with truffle migrate --network ropsten
  7. Interact with your contracts via truffle console --network ropsten