UNPKG

xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

19 lines (16 loc) 399 B
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry' export interface NFToken { NFToken: { Flags: number Issuer: string NFTokenID: string NFTokenTaxon: number URI?: string } } export interface NFTokenPage extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'NFTokenPage' NextPageMin?: string NFTokens: NFToken[] PreviousPageMin?: string }