Package-level declarations

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

Types

Link copied to clipboard
class JsonRpcProvider(val url: String, httpService: HttpService, ignoreUnknownJsonKeys: Boolean) : Provider

A provider for interacting with Starknet using JSON-RPC. You should reuse it in your application to share the httpService or provide it with your own httpService.

Link copied to clipboard
@Serializable
data class JsonRpcRequest(val id: Int, val jsonRpc: String, val method: String, val params: JsonElement)