Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@solana/rpc-spec
Advanced tools
A generic implementation of JSON RPCs using proxies
This package contains types that describe the implementation of the JSON RPC API, as well as methods to create one. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK @solana/web3.js@rc
.
This API is designed to be used as follows:
const rpc =
// Step 1 - Create an `Rpc` instance. This may be stateful.
createSolanaRpc(mainnet('https://api.mainnet-beta.solana.com'));
const response = await rpc
// Step 2 - Call supported methods on it to produce `PendingRpcRequest` objects.
.getLatestBlockhash({ commitment: 'confirmed' })
// Step 3 - Call the `send()` method on those pending requests to trigger them.
.send({ abortSignal: AbortSignal.timeout(10_000) });
PendingRpcRequest<TResponse>
Pending requests are the result of calling a supported method on an Rpc
object. They encapsulate all of the information necessary to make the request without actually making it.
Calling the send(options)
method on a PendingRpcRequest
will trigger the request and return a promise for TResponse
.
Rpc<TRpcMethods, TRpcTransport>
An object that exposes all of the functions described by TRpcMethods
, and fulfils them using TRpcTransport
. Calling each method returns a PendingRpcRequest<TResponse>
where TResponse
is that method's response type.
RpcRequest
An object that describes the elements of a JSON RPC request. It consists of the following properties:
methodName
: The name of the JSON RPC method to be called.params
: The parameters to be passed to the JSON RPC method.RpcRequestTransformer
A function that accepts an RpcRequest
and returns another RpcRequest
. This allows the RpcApi
to transform the request before it is sent to the JSON RPC server.
RpcResponse
A type that represents the response from a JSON RPC server. This could be any sort of data which is why RpcResponse
defaults to unknown
. You may use a type parameter to specify the shape of the response — e.g. RpcResponse<{ result: number }>
.
RpcResponseTransformer
A function that accepts an RpcResponse
and returns another RpcResponse
. This allows the RpcApi
to transform the response before it is returned to the caller.
RpcApi<TRpcMethods>
For each of TRpcMethods
this object exposes a method with the same name that maps between its input arguments and a RpcApiRequestPlan<TResponse>
that describes how to prepare a JSON RPC request to fetch TResponse
.
RpcApiMethods
This is a marker interface that all RPC method definitions must extend to be accepted for use with the RpcApi
creator.
RpcApiRequestPlan
This type allows an RpcApi
to describe how a particular request should be issued to the JSON RPC server. Given a function that was called on a Rpc
, this object gives you the opportunity to:
TResponse
specified by the PendingRpcRequest<TResponse>
returned from that function.RpcSendOptions
A configuration object consisting of the following properties:
abortSignal
: An optional signal that you can supply when triggering a PendingRpcRequest
that you might later need to abort.RpcTransport
Any function that implements this interface can act as a transport for an Rpc
. It need only return a promise for a response given the following config:
payload
: A value of arbitrary type to be sent.signal
: An optional AbortSignal
on which the 'abort'
event will be fired if the request should be cancelled.createRpc(config)
Creates an RPC instance given an RpcApi<TRpcMethods>
and a RpcTransport
capable of fulfilling them.
A config object with the following properties:
api
: An instance of RpcApi
transport
: A function that implements the RpcTransport
interfacecreateRpcApi(config)
Creates a JavaScript proxy that converts any function call called on it to a RpcApiRequestPlan
by:
methodName
to the name of the function called, optionally transformed by config.requestTransformer
.params
to the arguments supplied to that function, optionally transformed by config.requestTransformer
.responseTransformer
to config.responseTransformer
, if provided.// For example, given this `RpcApi`:
const rpcApi = createRpcApi({
requestTransformer: (...rawParams) => rawParams.reverse(),
responseTransformer: response => response.result,
});
// ...the following function call:
rpcApi.foo('bar', { baz: 'bat' });
// ...will produce the following `RpcApiRequestPlan` object:
//
// {
// methodName: 'foo',
// params: [{ baz: 'bat' }, 'bar'],
// responseTransformer: (response) => response.result,
// }
A config object with the following properties:
requestTransformer<T>(request: RpcRequest<T>): RpcRequest
: An optional function that transforms the RpcRequest
before it is sent to the JSON RPC server.responseTransformer<T>(response: RpcResponse, request: RpcRequest): RpcResponse<T>
: An optional function that transforms the RpcResponse
before it is returned to the caller.isJsonRpcPayload(payload)
A helper function that returns true
if the given payload is a JSON RPC v2 payload. This means, the payload is an object such that:
jsonrpc
property with a value of '2.0'
.method
property that is a string.params
property of any type.import { isJsonRpcPayload } from '@solana/rpc-spec';
if (isJsonRpcPayload(payload)) {
const payloadMethod: string = payload.method;
const payloadParams: unknown = payload.params;
}
FAQs
A generic implementation of JSON RPCs using proxies
The npm package @solana/rpc-spec receives a total of 4,701 weekly downloads. As such, @solana/rpc-spec popularity was classified as popular.
We found that @solana/rpc-spec demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.