sdk/src/main/java/network/xyo/client/EcConstants.kt
package network.xyo.client
import java.math.BigInteger
/**
* An object to hold static values used when doing point math.
*/
object EcConstants {
val ZERO : BigInteger = BigInteger.ZERO
val ONE : BigInteger = BigInteger.valueOf(1)
val TWO : BigInteger = BigInteger.valueOf(2)
val THREE : BigInteger = BigInteger.valueOf(3)
}