Table of Contents

Class Transaction

Namespace
Thirdweb.Bridge
Assembly
Thirdweb.dll

Represents a transaction to be executed.

public class Transaction
Inheritance
Transaction
Inherited Members
Extension Methods

Properties

ChainId

The chain ID where the transaction will take place.

[JsonProperty("chainId")]
public BigInteger ChainId { get; set; }

Property Value

BigInteger

Data

The transaction data.

[JsonProperty("data")]
public string Data { get; set; }

Property Value

string

To

The address to which the transaction is sent, or null if not applicable.

[JsonProperty("to", NullValueHandling = NullValueHandling.Ignore)]
public string To { get; set; }

Property Value

string

Type

The type of the transaction (e.g., "eip1559").

[JsonProperty("type")]
public string Type { get; set; }

Property Value

string

Value

The value (amount) to be sent in the transaction.

[JsonProperty("value")]
public string Value { get; set; }

Property Value

string