multichain-api
Version:
MultiChain JSON-RPC Client
21 lines (20 loc) • 639 B
TypeScript
import { RpcRequest } from '../RpcRequest';
import { RpcResponse } from '../RpcResponse';
/**
* JSON-RPC request for the *liststreamkeys* command.
*/
export interface ListStreamKeysRequest extends RpcRequest {
readonly method: 'liststreamkeys';
readonly params?: any[];
}
/**
* JSON-RPC response for the *liststreamkeys* command.
*/
export interface ListStreamKeysResponse extends RpcResponse {
readonly result: ListStreamKeysResult | null;
}
/**
* Result of the *liststreamkeys* command.
*/
export declare type ListStreamKeysResult = any;
export declare function ListStreamKeys(...params: any[]): ListStreamKeysRequest;