Class Intent
public class Intent
- Inheritance
-
Intent
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Amount
The amount in wei
[JsonProperty("amount", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Amount { get; set; }
Property Value
DestinationChainId
Destination chain ID
[JsonProperty("destinationChainId", Required = Required.Always)]
[Range(1, 2147483647)]
public int DestinationChainId { get; set; }
Property Value
DestinationTokenAddress
Destination token address
[JsonProperty("destinationTokenAddress", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string DestinationTokenAddress { get; set; }
Property Value
OriginChainId
Origin chain ID
[JsonProperty("originChainId", Required = Required.Always)]
[Range(1, 2147483647)]
public int OriginChainId { get; set; }
Property Value
OriginTokenAddress
Origin token address
[JsonProperty("originTokenAddress", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string OriginTokenAddress { get; set; }
Property Value
Receiver
Receiver address
[JsonProperty("receiver", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Receiver { get; set; }
Property Value
Sender
Sender address
[JsonProperty("sender", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Sender { get; set; }