- Truffle (
v5.4.2
)sudo npm install -g truffle
- Ganache (local blockchain)
sudo npm install -g ganache-cli
Local blockchain with 10 accounts.
ganache-cli -a 10 -p 8550
Deploy contracts to it:
truffle migrate
Start console:
truffle console
Initialize helpers:
const orange = await Orange.deployed();
const accounts = await web3.eth.getAccounts();
truffle test