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

elrond.IProvider Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy