All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.api.etherscan.core.IContractApi Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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 look for
     * @return abi for contract
     */
    @NotNull Abi contractAbi(String address) throws ApiException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy