You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
|
|
from huobi.client.wallet import WalletClient
|
|
from huobi.constant import *
|
|
from huobi.utils import *
|
|
|
|
|
|
wallet_client = WalletClient(api_key=g_api_key, secret_key=g_secret_key)
|
|
list_obj = wallet_client.get_account_withdraw_quota(currency="btc")
|
|
LogInfo.output_list(list_obj)
|
|
|
|
list_obj = wallet_client.get_account_withdraw_quota(currency="usdt")
|
|
LogInfo.output_list(list_obj)
|
|
|
|
|
|
|
|
|
|
|