Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kybernetwork/sanity-price-monitor
https://github.com/kybernetwork/sanity-price-monitor
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kybernetwork/sanity-price-monitor
- Owner: KyberNetwork
- License: mit
- Created: 2018-01-02T11:07:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T17:02:47.000Z (over 3 years ago)
- Last Synced: 2023-02-28T21:01:10.499Z (almost 2 years ago)
- Language: Python
- Size: 225 KB
- Stars: 5
- Watchers: 4
- Forks: 74
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sanity Price Monitor
Determines maximum conversion rates for the main contract.# Installing
## Clone the repo
This repo makes use of the [smart-contracts](https://github.com/KyberNetwork/smart-contracts) as a submodule for it's
configuration, so to clone this repo run:
$ git clone https://github.com/KyberNetwork/sanity-price-monitor.git --recursive
## Installing library dependencies
Enter the folder and use pipenv to install library dependencies:$ cd sanity-price-monitor
$ pipenv install
## Running the monitor$ cd sanity-price-monitor
$ pipenv shell
$ python -m pricemonitor.monitor
## Running coverage$ cd sanity-price-monitor/tests
$ pipenv shell
$ py.test --cov-report html --cov=pricemonitor --verbose && open htmlcov/index.html