getRecentPerformanceSamplesRaw method
Future<JsonRpcSuccessResponse<List<PerformanceSample> > >
getRecentPerformanceSamplesRaw({
- usize? limit,
inherited
Returns a list of recent performance samples, in reverse slot order. Performance samples are taken every 60 seconds and include the number of transactions and slots that occur in a given time window.
Implementation
Future<JsonRpcSuccessResponse<List<PerformanceSample>>> getRecentPerformanceSamplesRaw({
final usize? limit,
}) => send(GetRecentPerformanceSamples(limit: limit));