Show / Hide Table of Contents

Class NFTHistoryRequest

The nft_history method asks what has happened to a token.

Inheritance
object
BaseRequest
BaseLedgerRequest
NFTHistoryRequest
Inherited Members
BaseLedgerRequest.LedgerHash
BaseLedgerRequest.LedgerIndex
BaseRequest.Id
BaseRequest.Command
BaseRequest.ApiVersion
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 Source

NFTHistoryRequest(string)

Declaration
public NFTHistoryRequest(string nft_id)
Parameters
Type Name Description
string nft_id

Properties

| Edit this page View Source

Binary

Return transactions as hex strings instead of JSON.

Declaration
[JsonPropertyName("binary")]
public bool? Binary { get; set; }
Property Value
Type Description
bool?
| Edit this page View Source

Forward

Read oldest first instead of newest first.

Declaration
[JsonPropertyName("forward")]
public bool? Forward { get; set; }
Property Value
Type Description
bool?
| Edit this page View Source

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?
| Edit this page View Source

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?
| Edit this page View Source

Limit

How many transactions to return at most.

Declaration
[JsonPropertyName("limit")]
public uint? Limit { get; set; }
Property Value
Type Description
uint?
| Edit this page View Source

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
| Edit this page View Source

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
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX