
io.api.etherscan.core.IContractApi 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.core;
import io.api.etherscan.error.ApiException;
import io.api.etherscan.model.Abi;
import org.jetbrains.annotations.NotNull;
/**
* EtherScan - API Descriptions https://etherscan.io/apis#contracts
*
* @author GoodforGod
* @since 28.10.2018
*/
public interface IContractApi {
/**
* Get Verified Contract Sources
*
* @param address to verify
* @return ABI verified
* @throws ApiException parent exception class
*/
@NotNull
Abi contractAbi(String address) throws ApiException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy