Skip to content

Commit

Permalink
Merge pull request #6651 from hummingbot/fix/update-connector-status
Browse files Browse the repository at this point in the history
(fix) update connector and client info
  • Loading branch information
rapcmia committed Nov 10, 2023
2 parents 0f0d20e + e043f9a commit 7aeffaf
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at dev@coinalpha.com. All
reported by contacting the project team at operations@hummingbot.org. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2022 CoinAlpha, Inc.
Copyright 2023 Hummingbot Foundation.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
19 changes: 9 additions & 10 deletions hummingbot/client/ui/layout.py
Expand Up @@ -60,20 +60,19 @@
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██████ ██ ██ ██ ██ ██ ██ ████ ██████ ██████ ██████ ██
=======================================================================================
Welcome to Hummingbot, an open source software client that helps you build and run
high-frequency trading (HFT) bots.
======================================================================================
Hummingbot is an open source software client that helps you build and run
market making, arbitrage, and other high-frequency trading bots.
Helpful Links:
- Get 24/7 support: https://discord.hummingbot.io
- Learn how to use Hummingbot: https://docs.hummingbot.io
- Earn liquidity rewards: https://miner.hummingbot.io
- Official repo: https://github.com/hummingbot/hummingbot
- Join the community: https://discord.gg/hummingbot
- Learn market making: https://hummingbot.org/botcamp
Useful Commands:
- connect List available exchanges and add API keys to them
- create Create a new bot
- import Import an existing bot by loading the configuration file
- help List available commands
- balance See your exchange balances
- start Start a script or strategy
- help List all commands
"""

Expand Down
51 changes: 26 additions & 25 deletions hummingbot/connector/connector_status.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python

connector_status = {
# client connectors
'ascend_ex': 'bronze',
'binance': 'gold',
'binance_perpetual': 'gold',
Expand All @@ -13,56 +14,56 @@
'bitmex_perpetual': 'bronze',
'bitmex_testnet': 'bronze',
'bitmex_perpetual_testnet': 'bronze',
'bit_com_perpetual': 'bronze',
'bit_com_perpetual_testnet': 'bronze',
'btc_markets': 'bronze',
'bybit_perpetual': 'bronze',
'bybit_perpetual_testnet': 'bronze',
'bybit_testnet': 'bronze',
'bybit': 'bronze',
'coinbase_pro': 'bronze',
'dydx_perpetual': 'gold',
'foxbit': 'bronze',
'gate_io': 'silver',
'gate_io_perpetual': 'silver',
'injective_v2': 'silver',
'injective_v2_perpetual': 'silver',
'hitbtc': 'bronze',
'huobi': 'silver',
'kraken': 'bronze',
'kucoin': 'silver',
'kucoin_perpetual': 'silver',
'mexc': 'bronze',
'ndax': 'bronze',
'ndax_testnet': 'bronze',
'okx': 'bronze',
'perpetual_finance': 'bronze',
'uniswap': 'bronze',
'uniswapLP': 'bronze',
'pancakeswap': 'bronze',
'sushiswap': 'bronze',
'traderjoe': 'bronze',
'quickswap': 'bronze',
'perp': 'bronze',
'openocean': 'bronze',
'pangolin': 'bronze',
'defira': 'bronze',
'mad_meerkat': 'bronze',
'vvs': 'bronze',
'ref': 'bronze',
'injective': 'bronze',
'xswap': 'bronze',
'dexalot': 'silver',
'kucoin_perpetual': 'silver',
'injective_perpetual': 'bronze',
'bit_com_perpetual': 'bronze',
'bit_com_perpetual_testnet': 'bronze',
'tinyman': 'bronze',
'phemex_perpetual': 'bronze',
'phemex_perpetual_testnet': 'bronze',
'polkadex': 'silver',
'vertex': 'bronze',
'vertex_testnet': 'bronze',
'injective_v2': 'silver',
'injective_v2_perpetual': 'silver',
# gateway connectors
'curve': 'bronze',
'dexalot': 'silver',
'defira': 'bronze',
'kujira': 'bronze',
'mad_meerkat': 'bronze',
'openocean': 'bronze',
'quickswap': 'bronze',
'pancakeswap': 'bronze',
'pangolin': 'bronze',
'perp': 'bronze',
'plenty': 'bronze',
'ref': 'bronze',
'sushiswap': 'bronze',
'tinyman': 'bronze',
'traderjoe': 'bronze',
'uniswap': 'bronze',
'uniswapLP': 'bronze',
'vvs': 'bronze',
'woo_x': 'bronze',
'woo_x_testnet': 'bronze',
'kujira': 'bronze',
'xswap': 'bronze',
}

warning_messages = {
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -151,8 +151,8 @@ def main():
version=version,
description="Hummingbot",
url="https://github.com/hummingbot/hummingbot",
author="CoinAlpha, Inc.",
author_email="dev@hummingbot.io",
author="Hummingbot Foundation",
author_email="dev@hummingbot.org",
license="Apache 2.0",
packages=packages,
package_data=package_data,
Expand Down

0 comments on commit 7aeffaf

Please sign in to comment.