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

com.bloxbean.cardano.client.spec.Era Maven / Gradle / Ivy

There is a newer version: 0.6.2
Show newest version
package com.bloxbean.cardano.client.spec;

/**
 * List of Eras which can be used during transaction serialization
 */
public enum Era {
    Babbage(6),
    Conway(7);

    public final int value;
    Era(int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy