module Bitfinex::RESTv1AccountInfo

Public Instance Methods

account_info() click to toggle source

Get account information

@return [Hash] your account information @example:

client.account_info
# File lib/rest/v1/account_info.rb, line 8
def account_info
  resp = authenticated_post("account_infos")
  resp.body
end
fees() click to toggle source

See the fees applied to your withdrawals

@return [Hash] @example:

client.fees
# File lib/rest/v1/account_info.rb, line 18
def fees
  resp = authenticated_post("account_fees")
  resp.body
end