MCPcopy Create free account
hub / github.com/ccxt/ccxt / fetch_extended_account

Method fetch_extended_account

python/ccxt/extended.py:2363–2370  ·  view source on GitHub ↗
(self, params={})

Source from the content-addressed store, hash-verified

2361 return result
2362
2363 def fetch_extended_account(self, params={}) -> Any:
2364 account = self.safe_dict(self.options, 'account')
2365 if account is not None:
2366 return account
2367 accountData = self.fetch_account(params)
2368 account = accountData['info']
2369 self.options['account'] = account
2370 return account
2371
2372 def create_order_settlement_data(self, isBuy: bool, amountString: str, priceString: str, params={}):
2373 totalFee = self.safe_string(params, 'totalFee')

Callers 3

withdrawMethod · 0.95
transferMethod · 0.95

Calls 2

fetch_accountMethod · 0.95
safe_dictMethod · 0.80

Tested by

no test coverage detected