XYOracleNetwork/sdk-xyo-client-android

View on GitHub
sdk/src/main/java/network/xyo/client/EcConstants.kt

Summary

Maintainability
A
0 mins
Test Coverage
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)
}