Class Transactions6
public class Transactions6
- Inheritance
-
Transactions6
- Inherited Members
Properties
Action
Type of action this transaction performs
[JsonProperty("action", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public Transactions6Action Action { get; set; }
Property Value
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
ChainId
Blockchain network identifier
[JsonProperty("chainId", Required = Required.Always)]
[Range(1, 2147483647)]
public int ChainId { get; set; }
Property Value
Data
Transaction data payload
[JsonProperty("data", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Data { get; set; }
Property Value
From
Transaction sender address
[JsonProperty("from", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string From { get; set; }
Property Value
Spender
Spender address for approval transactions
[JsonProperty("spender", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Spender { get; set; }
Property Value
To
Transaction recipient address
[JsonProperty("to", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string To { get; set; }
Property Value
Value
Transaction value in wei
[JsonProperty("value", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Value { get; set; }