Interface RPCResponse<T>

interface RPCResponse<T> {
    error?: any;
    id: string | number;
    jsonrpc: string;
    result: T;
}

Type Parameters

  • T

Properties

Properties

error?: any
id: string | number
jsonrpc: string
result: T