com.bloxbean.cardano.client.spec.Era Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common-spec Show documentation
Show all versions of cardano-client-common-spec Show documentation
Cardano Client Lib - Common Spec classes used in other spec modules
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