Class NFTHistoryRequest
The nft_history method asks what has happened to a token.
Inherited Members
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class NFTHistoryRequest : BaseLedgerRequest
Remarks
A Clio method, like NFTInfoRequest: a plain rippled node answers
unknownCmd. Paginated the way account_tx is - keep passing
Marker back until the answer comes without one.
Constructors
| Edit this page View SourceNFTHistoryRequest(string)
Declaration
public NFTHistoryRequest(string nft_id)
Parameters
| Type | Name | Description |
|---|---|---|
| string | nft_id |
Properties
| Edit this page View SourceBinary
Return transactions as hex strings instead of JSON.
Declaration
[JsonPropertyName("binary")]
public bool? Binary { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Forward
Read oldest first instead of newest first.
Declaration
[JsonPropertyName("forward")]
public bool? Forward { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
LedgerIndexMax
The most recent ledger to search. -1 asks for the most recent available.
Declaration
[JsonPropertyName("ledger_index_max")]
public int? LedgerIndexMax { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
LedgerIndexMin
The earliest ledger to search. -1 asks for the earliest available.
Declaration
[JsonPropertyName("ledger_index_min")]
public int? LedgerIndexMin { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Limit
How many transactions to return at most.
Declaration
[JsonPropertyName("limit")]
public uint? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
Marker
The marker from a previous answer, to continue from where it stopped.
Declaration
[JsonPropertyName("marker")]
public object Marker { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
NFTokenID
The unique identifier of the NFToken whose history to read.
Declaration
[JsonPropertyName("nft_id")]
public string NFTokenID { get; set; }
Property Value
| Type | Description |
|---|---|
| string |