Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 589 Bytes

File metadata and controls

12 lines (10 loc) · 589 Bytes

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