Class Utxos
Inheritance
System.Object
Utxos
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.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public class Utxos
Properties
| Improve this Doc View SourceAdditionalProperties
Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Blockheight
Blockheight of the UTXO
Declaration
[JsonProperty("blockheight", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Blockheight { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Blocktime
Blocktime of the UTXO
Declaration
[JsonProperty("blocktime", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Blocktime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Index
Index of the UTXO at this address
Declaration
[JsonProperty("index", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Index { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
ScriptPubKey
Object representing the scruptPubKey of the UTXO
Declaration
[JsonProperty("scriptPubKey", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public object ScriptPubKey { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Tokens
Array of NTP1 tokens in this UTXO.
Declaration
[JsonProperty("tokens", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Tokens> Tokens { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Tokens> |
Txid
Txid of this UTXO
Declaration
[JsonProperty("txid", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Txid { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Used
Whether the UTXO has been used
Declaration
[JsonProperty("used", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool? Used { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Value
Value of the UTXO in NEBL satoshi
Declaration
[JsonProperty("value", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Value { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |