Class TokenERC20_MintRequest
- Namespace
- Thirdweb
- Assembly
- Thirdweb.dll
Represents a mint request for an ERC20 token.
[Struct("MintRequest")]
public class TokenERC20_MintRequest
- Inheritance
-
TokenERC20_MintRequest
- Inherited Members
Properties
Currency
Gets or sets the currency address.
[Parameter("address", "currency", 5)]
[JsonProperty("currency")]
public string Currency { get; set; }
Property Value
Price
Gets or sets the price of the tokens.
[Parameter("uint256", "price", 4)]
[JsonProperty("price")]
public BigInteger Price { get; set; }
Property Value
PrimarySaleRecipient
Gets or sets the primary sale recipient address.
[Parameter("address", "primarySaleRecipient", 2)]
[JsonProperty("primarySaleRecipient")]
public string PrimarySaleRecipient { get; set; }
Property Value
Quantity
Gets or sets the quantity of tokens to mint.
[Parameter("uint256", "quantity", 3)]
[JsonProperty("quantity")]
public BigInteger Quantity { get; set; }
Property Value
To
Gets or sets the address to mint the tokens to.
[Parameter("address", "to", 1)]
[JsonProperty("to")]
public string To { get; set; }
Property Value
Uid
Gets or sets the unique identifier for the mint request.
[Parameter("bytes32", "uid", 8)]
[JsonProperty("uid")]
public byte[] Uid { get; set; }
Property Value
- byte[]
ValidityEndTimestamp
Gets or sets the validity end timestamp.
[Parameter("uint128", "validityEndTimestamp", 7)]
[JsonProperty("validityEndTimestamp")]
public BigInteger ValidityEndTimestamp { get; set; }
Property Value
ValidityStartTimestamp
Gets or sets the validity start timestamp.
[Parameter("uint128", "validityStartTimestamp", 6)]
[JsonProperty("validityStartTimestamp")]
public BigInteger ValidityStartTimestamp { get; set; }