For full implementation details please see github.
Our docs site is here. Here you will find details on the protocol design, financial contracts and main net deployment addresses. You can also find it directly from this repo in the documentation folder.
The repository is broken up into 4 main packages, managed using yarn workspaces. You can find these in the packages directory. These packages are as follows:
packages/contractsSmart contracts, deployment scripts and integration tests for the Honeylemon protocol. The contract bring together MarketProtcol 0x MinterBridge and custom HoneyLemon contracts to create the protocols financial contracts.
packages/honeylemon.jsJavascript library used to connect to the Honeylemon protocol. This library is used by the front end to wrap complex interactions like submitting orders or batch token redemption.
packages/subgraphThe Graph subgraph used to index contract events for front end retrieval. Used directly by honeylemon.js.
packages/webappReact Typescript, dApp front end. Can be found online .
You'll need the latest LTS release of nodejs and npm installed. You'll also need Docker installed for your operating system. Assuming that's done, run:
Once this is done you can start the local development env by running a make command. This will clean all data and start/restart docker containers. Some unit tests are coupled and require you to run this between executions as well such as running If running order-test.js script.
After running this you will have a local 0x API, a Ganache instance and a Subgraph running on your local machine in docker containers. You can run docker ps -a to see all the containers running.
Next, you can run the tests. There are three main tests kinds of tests: 1) Smart contract tests, 2) Honeylemon.js service tests that validate the service data retrieval and on-chain interactions including the Graph Protocol and 3) integration tests that show full life cycle interconnection between the Marketprotocol, 0x order book, DSProxy contracts and the custom honey lemon smart contracts.
TODO: UPDATE with actual commands.
Running the front end can be done by executing:
If you want to deploy smart contracts to a test network you can run:
When MarketContractProxy address changes it needs to be updated in the following places:
docker/docker-compose-local.yml (look for HONEYLEMON_MARKET_CONTARCT_PROXY_ADDRESS)
subgraph/subgraph.yml (in the MarketContractProxy source address field)
To run the formatter, run:
We use the package to generate our coverage reports. These can be generated manually by developers. There are no regression tests or published reports. CircleCI does generate a coverage report automatically, but if you'd like to generate it locally, run:
The full report can be viewed by opening the core/coverage/index.html file in a browser. The full report can be viewed by opening the core/coverage/index.html file in a browser. You can also find an online version of our coverage report on .
yarnmake local-resetyarn run contract-tests
yarn run honeylemon-service-tests
yarn run integration testsyarn starttruffle migrate --network kovannpm run lint-fix./ci/coverage.sh core