Table of Contents

Class Forwarder_ForwardRequest

Namespace
Thirdweb
Assembly
Thirdweb.dll

Represents a forward request for a forwarder.

[Struct("ForwardRequest")]
public class Forwarder_ForwardRequest
Inheritance
Forwarder_ForwardRequest
Inherited Members

Properties

Data

Gets or sets the data to be sent with the transaction.

[Parameter("bytes", "data", 6)]
[JsonProperty("data")]
public string Data { get; set; }

Property Value

string

From

Gets or sets the address of the sender.

[Parameter("address", "from", 1)]
[JsonProperty("from")]
public string From { get; set; }

Property Value

string

Gas

Gets or sets the gas limit for the transaction.

[Parameter("uint256", "gas", 4)]
[JsonProperty("gas")]
public BigInteger Gas { get; set; }

Property Value

BigInteger

Nonce

Gets or sets the nonce for the transaction.

[Parameter("uint256", "nonce", 5)]
[JsonProperty("nonce")]
public BigInteger Nonce { get; set; }

Property Value

BigInteger

To

Gets or sets the address of the recipient.

[Parameter("address", "to", 2)]
[JsonProperty("to")]
public string To { get; set; }

Property Value

string

Value

Gets or sets the value to be transferred.

[Parameter("uint256", "value", 3)]
[JsonProperty("value")]
public BigInteger Value { get; set; }

Property Value

BigInteger