class Bitex::Transaction

Utility class for fetching an heterogeneous list of objects that compose your transaction history.

Public Class Methods

all() click to toggle source

@return

[Array<Bitex::Bid, Bitex::Ask, Bitex::SpecieDeposit, Bitex::SpecieWithdrawal, Bitex::UsdDeposit, Bitex::UsdWithdrawal>]
Returns an heterogeneous array with all your transactions for the past 15 days sorted by descending date.

@see bitex.la/developers#user-account-summary

# File lib/bitex/transaction.rb, line 9
def self.all
  Api.private(:GET, '/private/account_summary').map { |t| Api.deserialize(t) }
end