Interface RequestMessage

Request message

interface RequestMessage {
    id: null | string | number;
    jsonrpc: string;
    method: string;
    params?: object | any[];
}

Hierarchy (View Summary)

Properties

id: null | string | number

The request id.

jsonrpc: string
method: string

The method to be invoked.

params?: object | any[]

The method's params.