elrond.IProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erdjava Show documentation
Show all versions of erdjava Show documentation
The Java 1.8 SDK for interacting with the Elrond blockchain
package elrond;
import java.io.IOException;
import elrond.Exceptions.AddressException;
import elrond.Exceptions.CannotSerializeTransactionException;
import elrond.Exceptions.ProxyRequestException;
public interface IProvider {
NetworkConfig getNetworkConfig() throws IOException, ProxyRequestException;
AccountOnNetwork getAccount(Address address) throws IOException, AddressException, ProxyRequestException;
String sendTransaction(Transaction transaction) throws IOException, CannotSerializeTransactionException, ProxyRequestException;
}