RpcRequest

type RpcRequest<TParams> = object;

Describes the elements of a Rpc or RpcSubscriptions request.

Type Parameters

Type ParameterDefault type
TParamsunknown

Properties

methodName

readonly methodName: string;

Rhe name of the RPC method or subscription requested


params

readonly params: TParams;

The parameters to be passed to the RPC server

On this page