Type Alias TransportRequest<TMethod, TParams>

TransportRequest<TMethod, TParams>: {
    method: TMethod;
    params?: TParams;
}

Generic request structure for RPC calls

Type Parameters

  • TMethod = string
  • TParams = unknown