Generated by DocFX

Class MintNFTData

Mint NFT Data Dto for NeblioTransactionHelpers MintNFT functions

Inheritance
System.Object
MintNFTData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite
Assembly: VEDriversLite.dll
Syntax
public class MintNFTData

Constructors

| Improve this Doc View Source

MintNFTData()

Init the metdata dictionary in constructor

Declaration
public MintNFTData()

Properties

| Improve this Doc View Source

Id

Id of token

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Metadata

Metadata dictionary, key-value pairs

Declaration
public IDictionary<string, string> Metadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>
| Improve this Doc View Source

MultipleReceivers

Fill when you have multiple receivers Works now just for multimint of NFTs example in VEBlazor.Demo.TicketsAndEvents for minting tickets

Declaration
public List<string> MultipleReceivers { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
| Improve this Doc View Source

Password

If the account is locked you can provide password directly in the send token api command if the account is unlocked or the QT wallet is connected fill empty string

Declaration
public string Password { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ReceiverAddress

Address from where to send new NFT

Declaration
public string ReceiverAddress { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SenderAddress

Address from where token will be send

Declaration
public string SenderAddress { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

sendUtxo

Initial Utxo for sending transaction from

Declaration
public string sendUtxo { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

UseRPCPrimarily

If you use RPC and NBitcoin you can preffer using RPC with set this to true

Declaration
public bool UseRPCPrimarily { get; set; }
Property Value
Type Description
System.Boolean