com.bloxbean.cardano.client.spec.EraSerializationConfig 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;
public enum EraSerializationConfig {
INSTANCE();
private Era era;
EraSerializationConfig() {
this.era = Era.Conway;
}
public Era getEra() {
return era;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy