@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
13 lines • 425 B
TypeScript
import { Amount } from '../common';
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
export interface NFTokenOffer extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'NFTokenOffer';
Amount: Amount;
Destination?: string;
Expiration: number;
Flags: number;
NFTokenOfferNode?: string;
Owner: string;
OwnerNode?: string;
}
//# sourceMappingURL=NFTokenOffer.d.ts.map