Method: Excoin::API#excoin_wallets_summary

Defined in:
lib/excoin/api.rb

#excoin_wallets_summary(coin = nil) ⇒ Object

Reserves API



143
144
145
146
147
148
149
# File 'lib/excoin/api.rb', line 143

def excoin_wallets_summary(coin = nil)
  unless coin
    self.get("wallets/summary")
  else
    self.get("wallet/#{coin}")
  end
end