Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 401 Bytes

eth-connect.rpcmessage.md

File metadata and controls

18 lines (14 loc) · 401 Bytes

Home > eth-connect > RPCMessage

RPCMessage type

Signature:

export type RPCMessage = {
    jsonrpc: '2.0';
    id: number;
    method: string;
    params: any[] | {
        [key: string]: any;
    };
};