Machinomy contracts ![Build Status](https://img.shields.io/travis/machinomy/machinomy-contracts.svg)
Machinomy contracts is TS interface for Ethereum contracts managed by Truffle used by Machinomy.
Install
$ yarn add @machinomy/contracts
Workflow
Use testrpc for fast development. Start testrpc by command:
$ testrpc --networkid 999 --mnemonic "testtest"
Then deploy contracts to the tesrpc network:
$ yarn truffle:migrate
Truffle generates json files by default. You need to compile the json files to ts files. Run:
$ yarn build
Now package is ready to use by Machinony.
Deployment
To deploy the package to the Ropsten network you need to run local geth instance and then run commands:
$ yarn truffle:migrate:ropsten
$ yarn build