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

Method fetch_transactions_with_method

python/ccxt/coinbase.py:892–897  ·  view source on GitHub ↗
(self, method, code: Str = None, since: Int = None, limit: Int = None, params={})

Source from the content-addressed store, hash-verified

890 return self.parse_trades(buys['data'], None, since, limit)
891
892 def fetch_transactions_with_method(self, method, code: Str = None, since: Int = None, limit: Int = None, params={}):
893 request = None
894 request, params = self.prepare_account_request_with_currency_code(code, limit, params)
895 self.load_markets()
896 response = getattr(self, method)(self.extend(request, params))
897 return self.parse_transactions(response['data'], None, since, limit)
898
899 def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
900 """

Callers 3

fetch_withdrawalsMethod · 0.95
fetch_depositsMethod · 0.95

Calls 4

parse_transactionsMethod · 0.80
load_marketsMethod · 0.45
extendMethod · 0.45

Tested by

no test coverage detected