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