SolanaClient constructor

SolanaClient(
  1. String rpcUrl
)

Constructs a SolanaClient that is capable of sending various RPCs to rpcUrl

Implementation

SolanaClient(String rpcUrl) {
  _client = JsonRpcClient(rpcUrl);
}