Create a project
Most of the TronBox commands are run under the directories of TronBox projects. So the first step is to create a TronBox project. You can create a bare project, but for those getting started, you can use TronBox Boxes, which offers example applications and project templates. We'll use the MetaCoin box, which creates a token that can be transferred between accounts.
- Create a directory for MetaCoin:
shell
mkdir MetaCoin
cd MetaCoin- Download ("unbox") the MetaCoin project:
shell
tronbox unbox metacoinTIP
NOTE: You can create a bare project without smart contracts using tronbox init.
Once this operation is completed, you will have a project directory structure with the following items:
contracts/: Directory for Solidity contractsmigrations/: Directory for scriptable deployment filestest/: Directory for test contractstronbox.js: TronBox configuration file

