Module: Bitfinex::RESTv1AccountInfo

Included in:
RESTv1
Defined in:
lib/rest/v1/account_info.rb

Instance Method Summary collapse

Instance Method Details

#account_infoHash

Get account information

@example:

client.

Returns:

  • (Hash)

    your account information



8
9
10
11
# File 'lib/rest/v1/account_info.rb', line 8

def 
  resp = authenticated_post("account_infos")
  resp.body
end

#feesHash

See the fees applied to your withdrawals

@example:

client.fees

Returns:

  • (Hash)


18
19
20
21
# File 'lib/rest/v1/account_info.rb', line 18

def fees
  resp = authenticated_post("account_fees")
  resp.body
end