Table of Contents

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

int

Jsonrpc

Gets or sets the JSON-RPC version.

[JsonProperty("jsonrpc")]
public string Jsonrpc { get; set; }

Property Value

string

Method

Gets or sets the method name for the RPC request.

[JsonProperty("method")]
public string Method { get; set; }

Property Value

string

Params

Gets or sets the parameters for the RPC request.

[JsonProperty("params")]
public object[] Params { get; set; }

Property Value

object[]