@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
10 lines • 317 B
TypeScript
import { BaseRequest, BaseResponse } from './baseMethod';
export interface LedgerCurrentRequest extends BaseRequest {
command: 'ledger_current';
}
export interface LedgerCurrentResponse extends BaseResponse {
result: {
ledger_current_index: number;
};
}
//# sourceMappingURL=ledgerCurrent.d.ts.map