Class: FTX::API::Wallet
Instance Attribute Summary
Attributes inherited from Base
#config, #key, #secret
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Constructor Details
This class inherits a constructor from FTX::API::Base
Instance Method Details
#all_balances ⇒ Object
15
16
17
|
# File 'lib/ftx/api/wallet.rb', line 15
def all_balances
send_request(:get, "/wallet/all_balances", {})
end
|
#balances ⇒ Object
11
12
13
|
# File 'lib/ftx/api/wallet.rb', line 11
def balances
send_request(:get, "/wallet/balances", {})
end
|
#coins ⇒ Object
7
8
9
|
# File 'lib/ftx/api/wallet.rb', line 7
def coins
send_request(:get, "/wallet/coins", {})
end
|