module Bitsor::Client::Trades

Public Instance Methods

trades(book:, marker: nil, sort: :desc, limit: 25) click to toggle source
# File lib/bitsor/client/trades.rb, line 6
def trades(book:, marker: nil, sort: :desc, limit: 25)
  normalize_response.with(:trade) do
    get('/v3/trades/', book: book, marker: marker, sort: sort, limit: limit)
  end
end