multichain-api
Version:
MultiChain JSON-RPC Client
21 lines (20 loc) • 713 B
TypeScript
import { RpcRequest } from '../RpcRequest';
import { RpcResponse } from '../RpcResponse';
/**
* JSON-RPC request for the *appendrawchange* command.
*/
export interface AppendRawChangeRequest extends RpcRequest {
readonly method: 'appendrawchange';
readonly params: [string, string, number | undefined];
}
/**
* JSON-RPC response for the *appendrawchange* command.
*/
export interface AppendRawChangeResponse extends RpcResponse {
readonly result: AppendRawChangeResult | null;
}
/**
* Result of the *appendrawchange* command.
*/
export declare type AppendRawChangeResult = any;
export declare function AppendRawChange(transaction: string, address: string, fee?: number): AppendRawChangeRequest;