com.binance4j.mining.param.AccountListParams 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.param;
import com.binance4j.core.annotation.Param;
import com.binance4j.core.param.Params;
import com.binance4j.mining.client.MiningClient;
/**
* {@link MiningClient#getAccountProfits} params.
*
* @param algo Algorithm.
* @param userName Mining account.
*/
@Param(weight = 5)
public record AccountListParams(String algo, String userName) implements Params {
}