coinbase-pro-rs
coinbase-pro-rs copied to clipboard
Add pagination to the Public::get_trades API
The Public::get_trades()
method does not support pagination which is required to retrieve historical trade data. To avoid a breaking change this could be addressed by adding a new method resembling pub fn get_trades_paginated(&self, product_id: &str, before: Option<usize>, after: Option<usize>) ...
.