module Uphold::API::Transparency

Public Instance Methods

ledger() click to toggle source
# 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
statistics() click to toggle source
# 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