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

com.casper.sdk.identifier.era.BlockEraIdentifier 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.identifier.era;

import com.casper.sdk.identifier.block.BlockIdentifier;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

/**
 * Era identifier using an era's block identifier
 *
 * @author [email protected]
 */
@AllArgsConstructor
@Getter
@Setter
@Builder
public class BlockEraIdentifier implements EraIdentifier {
    @JsonProperty("Block")
    private BlockIdentifier blockIdentifier;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy