@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
10 lines • 358 B
TypeScript
import { NFToken } from '../common';
import { BaseRequest, BaseResponse, LookupByLedgerRequest } from './baseMethod';
export interface NFTInfoRequest extends BaseRequest, LookupByLedgerRequest {
command: 'nft_info';
nft_id: string;
}
export interface NFTInfoResponse extends BaseResponse {
result: NFToken;
}
//# sourceMappingURL=nftInfo.d.ts.map