@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
18 lines • 487 B
TypeScript
import { BaseRequest, BaseResponse } from './baseMethod';
export interface ManifestRequest extends BaseRequest {
command: 'manifest';
public_key: string;
}
export interface ManifestResponse extends BaseResponse {
result: {
details?: {
domain: string;
ephemeral_key: string;
master_key: string;
seq: number;
};
manifest?: string;
requested: string;
};
}
//# sourceMappingURL=manifest.d.ts.map