org.interledger.stream.Denominations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-core Show documentation
Show all versions of stream-core Show documentation
Core libraries for implementing the STREAM protocol.
package org.interledger.stream;
public final class Denominations {
private Denominations() {
}
public static final Denomination XRP = Denomination.builder()
.assetCode("XRP")
.assetScale((short) 6)
.build();
public static final Denomination USD = Denomination.builder()
.assetCode("USD")
.assetScale((short) 0)
.build();
public static final Denomination US_CENTS = Denomination.builder()
.assetCode("USD")
.assetScale((short) 2)
.build();
public static final Denomination EUR = Denomination.builder()
.assetCode("EUR")
.assetScale((short) 0)
.build();
public static final Denomination EUR_CENTS = Denomination.builder()
.assetCode("EUR")
.assetScale((short) 2)
.build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy