Class RpcRequest
- Namespace
- Thirdweb
- Assembly
- Thirdweb.dll
Represents an RPC request.
public class RpcRequest
- Inheritance
-
RpcRequest
- Inherited Members
Properties
Id
Gets or sets the ID of the RPC request.
[JsonProperty("id")]
public int Id { get; set; }
Property Value
Jsonrpc
Gets or sets the JSON-RPC version.
[JsonProperty("jsonrpc")]
public string Jsonrpc { get; set; }
Property Value
Method
Gets or sets the method name for the RPC request.
[JsonProperty("method")]
public string Method { get; set; }
Property Value
Params
Gets or sets the parameters for the RPC request.
[JsonProperty("params")]
public object[] Params { get; set; }
Property Value
- object[]