UNPKG

@nextrope/xrpl

Version:

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

17 lines 481 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; } //# sourceMappingURL=NFTokenPage.d.ts.map