Skip to content

Commit

Permalink
Merge pull request #5203 from hummingbot/update_connector_status_v1.2.0
Browse files Browse the repository at this point in the history
refactor/ update connector status in the client for v1.2.0
  • Loading branch information
JeremyKono committed Mar 30, 2022
2 parents e534d47 + 04cb7bb commit 46c8faf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -20,12 +20,12 @@ We created hummingbot to promote **decentralized market-making**: enabling membe

| logo | id | name | ver | doc | status | referral |
|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
| <img src="assets/altmarkets_logo1.png" alt="AltMarkets.io" width="90" /> | altmarkets | [AltMarkets.io](https://altmarkets.io/) | 2 | [API](https://altmarkets.io/) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) |
| <img src="assets/altmarkets_logo1.png" alt="AltMarkets.io" width="90" /> | altmarkets | [AltMarkets.io](https://altmarkets.io/) | 2 | [API](https://altmarkets.io/) |![GREEN](https://via.placeholder.com/15/008000/?text=+) |
| <img src="assets/ascendex-logo.jpg" alt="AscendEx" width="90" /> | ascend_ex | [AscendEx](https://ascendex.com/en/global-digital-asset-platform) | 1 | [API](https://ascendex.github.io/ascendex-pro-api/#ascendex-pro-api-documentation) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) | [UEIXNXKW](https://ascendex.com/register?inviteCode=UEIXNXKW)
| <img src="assets/beaxy-logo.png" alt="Beaxy" width="90" /> | beaxy | [Beaxy](https://beaxy.com/) | 2 | [API](https://beaxyapiv2trading.docs.apiary.io/) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) |
| <img src="assets/binance_futures-logo.jpg" alt="Binance Perpetual" width="90" /> | binance_perpetual | [Binance Futures](https://www.binance.com/) | 1 | [API](https://binance-docs.github.io/apidocs/futures/en/) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) | [54499305](https://www.binance.com/en/futures/ref/hummingbot)
| <img src="assets/binance_us-logo.jpg" alt="Binance US" width="90" /> | binance_us | [Binance US](https://www.binance.com/) | 3 | [API](https://github.com/binance-us/binance-official-api-docs/blob/master/rest-api.md) |![GREEN](https://via.placeholder.com/15/008000/?text=+) |
| <img src="assets/binance-logo.jpg" alt="Binance" width="90" /> | binance | [Binance](https://www.binance.com/) | 3 | [API](https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) | [FQQNNGCD](https://www.binance.com/en/register?ref=FQQNNGCD)
| <img src="assets/binance-logo.jpg" alt="Binance" width="90" /> | binance | [Binance](https://www.binance.com/) | 3 | [API](https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md) |![GREEN](https://via.placeholder.com/15/008000/?text=+) | [FQQNNGCD](https://www.binance.com/en/register?ref=FQQNNGCD)
| <img src="assets/bitfinex-logo.jpg" alt="Bitfinex" width="90" /> | bitfinex | [Bitfinex](https://www.bitfinex.com/) | 2 | [API](https://docs.bitfinex.com/docs/introduction) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) | [dxCUrjvc](https://bitfinex.com/?refcode=-dxCUrjvc)
| <img src="assets/bittrex_global-logo.jpg" alt="Bittrex Global" width="90" height="30" />| bittrex | [Bittrex Global](https://global.bittrex.com/) | 3 | [API](https://bittrex.github.io/api/v3) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) |
| <img src="assets/bitmart-logo.jpg" alt="BitMart" width="90" /> | bitmart | [BitMart](https://www.bitmart.com/) | 1 | [API](https://developer-pro.bitmart.com/en/) |![YELLOW](https://via.placeholder.com/15/ffff00/?text=+) | [UM6fQV](https://www.bitmart.com/en?r=UM6fQV)
Expand Down
4 changes: 2 additions & 2 deletions hummingbot/connector/connector_status.py
@@ -1,11 +1,11 @@
#!/usr/bin/env python

connector_status = {
'altmarkets': 'yellow',
'altmarkets': 'green',
'ascend_ex': 'yellow',
'balancer': 'green',
'beaxy': 'yellow',
'binance': 'yellow',
'binance': 'green',
'binance_perpetual': 'yellow',
'binance_perpetual_testnet': 'yellow',
'binance_us': 'green',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -33,7 +33,7 @@ def build_extensions(self):

def main():
cpu_count = os.cpu_count() or 8
version = "20220228"
version = "20220330"
packages = find_packages(include=["hummingbot", "hummingbot.*"])
package_data = {
"hummingbot": [
Expand Down

0 comments on commit 46c8faf

Please sign in to comment.