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

Method parse_transfer

python/ccxt/hyperliquid.py:3828–3842  ·  view source on GitHub ↗
(self, transfer: dict, currency: Currency = None)

Source from the content-addressed store, hash-verified

3826 return self.parse_transfer(response)
3827
3828 def parse_transfer(self, transfer: dict, currency: Currency = None) -> TransferEntry:
3829 #
3830 # {'response': {'type': 'default'}, 'status': 'ok'}
3831 #
3832 return {
3833 'info': transfer,
3834 'id': None,
3835 'timestamp': None,
3836 'datetime': None,
3837 'currency': None,
3838 'amount': None,
3839 'fromAccount': None,
3840 'toAccount': None,
3841 'status': 'ok',
3842 }
3843
3844 def withdraw(self, code: str, amount: float, address: str, tag: Str = None, params={}) -> Transaction:
3845 """

Callers 1

transferMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected