transaction.EthChain.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tatum-java Show documentation
Show all versions of tatum-java Show documentation
Tatum API client allows Java projects to interact with Tatum API.
package transaction
import org.kethereum.model.ChainId
enum class EthChain(val id: ChainId) {
ETHEREUM_MAINNET(ChainId(1)),
EXPANSE_MAINNET(ChainId(2)),
ROPSTEN(ChainId(3)),
RINKEBY(ChainId(4)),
GOERLI(ChainId(5)),
KOVAN(ChainId(42)),
ROOTSTOCK_MAINNET(ChainId(30)),
ROOTSTOCK_TESTNET(ChainId(31)),
ETHEREUM_CLASSIC_MAINNET(ChainId(61)),
ETHEREUM_CLASSIC_TESTNET(ChainId(62)),
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy