com.binance4j.mining.dto.Algorithm 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;
/**
* A mining algorithm.
*
* @param algoName Algorithm name.
* @param algoId Algorithm id.
* @param poolIndex Sequence.
* @param unit Unit.
*/
public record Algorithm(String algoName, long algoId, long poolIndex, String unit) {
}