Generated by DocFX

Class SendTokenTxData

Data carrier for sending token

Inheritance
System.Object
SendTokenTxData
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 SendTokenTxData

Constructors

| Improve this Doc View Source

SendTokenTxData()

Init the metdata dictionary in constructor

Declaration
public SendTokenTxData()

Properties

| Improve this Doc View Source

Amount

Amount of the tokens

Declaration
public double Amount { get; set; }
Property Value
Type Description
System.Double
| 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<To> MultipleReceivers { get; set; }
Property Value
Type Description
System.Collections.Generic.List<To>
| Improve this Doc View Source

NeblUtxo

If you wish to add specific neblio utxo as source for the fee

Declaration
public string NeblUtxo { get; set; }
Property Value
Type Description
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 where token will be send

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

SendEvenNeblUtxoNotFound

If this is set and you will provide NeblUtxo, but it is not found in the list of spendable nebl utxos it will find another spendable utxo If this is not set and utxo is not found it will throw exception

Declaration
public bool SendEvenNeblUtxoNotFound { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

sendUtxo

Initial Utxo for sending transaction from if you want to specify them

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

Symbol

Symbol of token

Declaration
public string Symbol { 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