From e043f9a0b7c85b103e2b8a201cbe0225c5c369e9 Mon Sep 17 00:00:00 2001 From: Michael Feng Date: Thu, 9 Nov 2023 08:17:40 -0800 Subject: [PATCH] (fix) update connector and client info --- CODE_OF_CONDUCT.md | 2 +- LICENSE | 2 +- hummingbot/client/ui/layout.py | 19 +++++---- hummingbot/connector/connector_status.py | 51 ++++++++++++------------ setup.py | 4 +- 5 files changed, 39 insertions(+), 39 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 1d159577bd..604d66e0ad 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -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. diff --git a/LICENSE b/LICENSE index ae3660ee96..e998fcfee5 100644 --- a/LICENSE +++ b/LICENSE @@ -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. diff --git a/hummingbot/client/ui/layout.py b/hummingbot/client/ui/layout.py index 0d5fc8b843..5ebe80b0b5 100644 --- a/hummingbot/client/ui/layout.py +++ b/hummingbot/client/ui/layout.py @@ -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 """ diff --git a/hummingbot/connector/connector_status.py b/hummingbot/connector/connector_status.py index d6ce7c2226..7c61ce2d70 100644 --- a/hummingbot/connector/connector_status.py +++ b/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', @@ -13,6 +14,8 @@ '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', @@ -20,49 +23,47 @@ '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 = { diff --git a/setup.py b/setup.py index f64e05d15b..c5ce75d116 100644 --- a/setup.py +++ b/setup.py @@ -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,