Package com.swmansion.starknet.provider.rpc

Provider implementing the JSON RPC interface to communicate with the network.

// JsonRpcProvider can only be created using constructor
new JsonRpcProvider("https://example-node-url.com/rpc");
// or with a custom HttpService
new JsonRpcProvider("https://example-node-url.com/rpc", myHttpService);

See: Description