io.api.etherscan.model.EthNetwork Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.model;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 28.10.2018
*/
public enum EthNetwork {
MAINNET("api"),
ROPSTEN("api-ropsten"),
KOVAN("api-kovan"),
TOBALABA("api-tobalaba"),
GORLI("api-goerli"),
RINKEBY("api-rinkeby");
private final String domain;
EthNetwork(String domain) {
this.domain = domain;
}
public String getDomain() {
return domain;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy