com.binance4j.mining.dto.HashrateData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-mining Show documentation
Show all versions of binance4j-mining Show documentation
Connector for the mining endpoints of the Binance API
package com.binance4j.mining.dto;
/**
* Hashrate data.
*
* @param time Time in ms.
* @param hashrate Hashrate.
* @param reject Rejection Rate.
*/
public record HashrateData(long time, String hashrate, long reject) {
}