You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

channelVerify.d.ts 407B

1234567891011121314
  1. import { BaseRequest, BaseResponse } from './baseMethod';
  2. export interface ChannelVerifyRequest extends BaseRequest {
  3. command: 'channel_verify';
  4. amount: string;
  5. channel_id: string;
  6. public_key: string;
  7. signature: string;
  8. }
  9. export interface ChannelVerifyResponse extends BaseResponse {
  10. result: {
  11. signature_verified: boolean;
  12. };
  13. }
  14. //# sourceMappingURL=channelVerify.d.ts.map