namespace MoralisUnity.SolanaApi.Interfaces
{
public interface ISolanaApi
{
///
/// AccountApi operations.
///
IAccountApi Account { get; }
///
/// TokenApi operations.
///
INftApi Nft { get; }
///
/// Indicates that the client has been initialized.
///
bool IsInitialized { get; }
///
/// Initialize the client using serverUrl. If serverUrl is null default is used.
/// ApiKey is passed via Configuration signleton.
///
///
void Initialize(string serverUrl = null);
}
}