UNPKG

@nextrope/xrpl

Version:

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

9 lines 344 B
import { BaseTransaction, Account } from './common'; export interface NFTokenModify extends BaseTransaction { TransactionType: 'NFTokenModify'; NFTokenID: string; Owner?: Account; URI?: string | null; } export declare function validateNFTokenModify(tx: Record<string, unknown>): void; //# sourceMappingURL=NFTokenModify.d.ts.map