UNPKG

@nextrope/xrpl

Version:

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

10 lines 274 B
import { BaseRequest, BaseResponse } from './baseMethod'; export interface RandomRequest extends BaseRequest { command: 'random'; } export interface RandomResponse extends BaseResponse { result: { random: string; }; } //# sourceMappingURL=random.d.ts.map