com.casper.sdk.model.balance.BalanceHoldWithProof Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of casper-java-sdk Show documentation
Show all versions of casper-java-sdk Show documentation
SDK to streamline the 3rd party Java client integration processes. Such 3rd parties include exchanges & app developers.
The newest version!
package com.casper.sdk.model.balance;
import lombok.*;
import java.math.BigInteger;
/**
* Holds active at the requested point in time.
*
* @author [email protected]
*/
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
@Builder
public class BalanceHoldWithProof {
/** The block time at which the hold was created. */
private long time;
/** The amount in the hold. */
private BigInteger amount;
/** A proof that the given value is present in the Merkle trie. */
private String proof;
}