bt_getdeposithistory: Retrieve Deposit History

View source: R/private-interface.r

bt_getdeposithistoryR Documentation

Retrieve Deposit History

Description

The bt_getdeposithistory() function retrieves the deposit history for an account on https://bittrex.com. This function can only be used after you provide authentication information.

Usage

bt_getdeposithistory(currency)

Arguments

currency

(optional) the currency to retrieve the deposits for. If this is not specified then deposit history for all currencies is retrieved.

Value

A named list with the following elements:

  • success: a boolean indicating whether the request was successful.

  • message: a string describing the error if the request was not successful, otherwise an empty string.

  • result: a data.frame providing data about previously completed orders including the order uuid, the currency, the time of the withdraw, the quantity, etc.

References

https://bittrex.com/api/v1.1/account/getdeposithistory

See Also

bt_authenticate()

Examples

## Not run: 
bt_getdeposithistory()
# $success
# [1] TRUE
#
# $message
# [1] ""
#
# $result
#         id     amount currency confirmations        last_updated
# 1 20774372 0.39125728      ETH            49 2017-06-22 16:05:50
# 2 18255803 0.05936286      BTC             6 2017-05-19 16:28:36
#                                                                tx_id
# 1 0xbecc44384d8b94f1d03834ffb9324e97e4fa2a8161e17e61116aaabd5fb35050
# 2   7084cad99373475d8137547ce947b1472bfcb2d23b5160b05010f1f15e3c6287
#                               crypto_address
# 1 0x0ceac821a72037b07df691a53e201d797252b5a6
# 2         1Q6WissSMNF7NCNw3sDXQ2F7AbrSCYouj2

## End(Not run)

kaneplusplus/bittrex documentation built on July 6, 2022, 10:02 p.m.