- Clone the repository into ~/workspace:
git clone https://github.com/rynobey/EIP20.git
- Make sure ganache-cli is running
- Migrate onto ganache-cli:
truffle migrate --network development1
- Run the tests:
truffle test --network development1
- Connect to truffle console:
truffle console --network development1
- Get the deployed instance of the contract:
let eip20; EIP20.deployed().then(function(instance) {eip20 = instance;});