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

multiversx.IProvider Maven / Gradle / Ivy

package multiversx;

import java.io.IOException;

import multiversx.Exceptions.AddressException;
import multiversx.Exceptions.CannotSerializeTransactionException;
import multiversx.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