unofficial_tabdeal_api.wallet ============================= .. py:module:: unofficial_tabdeal_api.wallet .. autoapi-nested-parse:: This module holds the WalletClass. Classes ------- .. autoapisummary:: unofficial_tabdeal_api.wallet.WalletClass Module Contents --------------- .. py:class:: WalletClass(*, user_hash, authorization_key, _is_test = False) Bases: :py:obj:`unofficial_tabdeal_api.base.BaseClass` This is the class storing methods related to account wallet. .. py:method:: get_wallet_usdt_balance() :async: Gets the balance of wallet in USDT and returns it as Decimal. :returns: Wallet USDT balance in Decimal :rtype: Decimal .. py:method:: transfer_usdt_from_wallet_to_margin_asset(*, transfer_amount, isolated_symbol) :async: Transfers USDT from wallet to margin asset. :param transfer_amount: Amount of USDT to transfer :type transfer_amount: Decimal :param isolated_symbol: Isolated symbol to transfer USDT to :type isolated_symbol: str .. py:method:: transfer_usdt_from_margin_asset_to_wallet(*, transfer_amount, isolated_symbol) :async: Transfers USDT from margin asset to wallet. :param transfer_amount: Amount of USDT to transfer :type transfer_amount: Decimal :param isolated_symbol: Isolated symbol to transfer USDT from :type isolated_symbol: str