eip1193-types
    Preparing search index...

    Interface JsonRpcRequest

    interface JsonRpcRequest {
        id: string | undefined;
        jsonrpc: "2.0";
        method: string;
        params?: any[];
    }
    Index

    Properties

    id: string | undefined
    jsonrpc: "2.0"
    method: string
    params?: any[]