Module: Uphold::API::Transparency

Included in:
Uphold::API
Defined in:
lib/uphold/api/transparency.rb

Instance Method Summary collapse

Instance Method Details

#ledgerObject



9
10
11
12
# File 'lib/uphold/api/transparency.rb', line 9

def ledger
  request_data = RequestData.new(Endpoints::LEDGER, Entities::LedgerEntry, authorization_header)
  Request.perform_with_objects(:get, request_data)
end

#statisticsObject



4
5
6
7
# File 'lib/uphold/api/transparency.rb', line 4

def statistics
  request_data = RequestData.new(Endpoints::STATS, Entities::Asset, authorization_header)
  Request.perform_with_objects(:get, request_data)
end