All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.casper.sdk.model.balance.BalanceHoldWithProof Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy