Skip to content

Honeylemon mono-repo for synthetic BTC cloud mining contracts built on Ethereum. πŸ―πŸ‹β›πŸ€‘

License

Notifications You must be signed in to change notification settings

haythemsellami/dapp.honeylemon.market

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

HoneyLemonLogo Logo

GitHub GitHub last commit Generic badge Generic badge Twitter Follow

Documentation πŸ“–

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.

Mono Repo Structure πŸ—

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:

1) packages/contracts

Smart 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.

2) packages/honeylemon.js

Javascript 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.

3) packages/subgraph

The Graph subgraph used to index contract events for front end retrieval. Used directly by honeylemon.js.

4) packages/webapp

React Typescript, dapp front end. Can be found online here.

Setting up the Honeylemon protocol πŸ‘©β€πŸ’»

Development Environment πŸ‘·β€β™‚οΈ

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:

yarn

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.

make local-reset

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 al l the containers running.

Running TestsπŸ§ͺ

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 lifesycle interconnection between the Marketprotocol, 0x order book, DSProxy contracts and the custom honey lemon smart contracts.

TODO: UPDATE with actual commands.

yarn run contract-tests
yarn run honeylemon-service-tests
yarn run integration tests

React Front End πŸ–₯

Running the front end can be done by executing:

yarn start

Deploying Smart Contracts 🧨

If you want to deploy smart contracts to a test network you can run:

truffle migrate --network kovan

Updating MarketContractProxy Address πŸš€

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)

Running The Linter 🧽

To run the formatter, run:

npm run lint-fix

Coverage πŸ”Ž

We use the solidity-coverage 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:

./ci/coverage.sh core

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 covarge report on coveralls.

About

Honeylemon mono-repo for synthetic BTC cloud mining contracts built on Ethereum. πŸ―πŸ‹β›πŸ€‘

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 57.9%
  • JavaScript 41.1%
  • Other 1.0%