class BittrexEnterprise::Currencies
Public Class Methods
info(symbol)
click to toggle source
———————————— INFO ————————————————– Retrieve info on a specified currency.
—— PARAMS —— symbol: string - required - symbol of the currency to retrieve
# File lib/bittrex-enterprise/currencies.rb, line 23 def self.info(symbol) get 'currencies/{symbol}', symbol: symbol end
list()
click to toggle source
————————————- LIST ————————————————- List currencies
# File lib/bittrex-enterprise/currencies.rb, line 12 def self.list get 'currencies' end