@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
14 lines • 407 B
TypeScript
import { BaseRequest, BaseResponse } from './baseMethod';
export interface ChannelVerifyRequest extends BaseRequest {
command: 'channel_verify';
amount: string;
channel_id: string;
public_key: string;
signature: string;
}
export interface ChannelVerifyResponse extends BaseResponse {
result: {
signature_verified: boolean;
};
}
//# sourceMappingURL=channelVerify.d.ts.map