Resolver
Last updated
Last updated
• Docs
/ / Resolver
Resolves a query into a chain or pulse
Resolvers are the primary way to fetch twines from somewhere. This specifies a general interface for all resolvers.
Resolvers are expected to verify the signature of the resolved twine.
resolve(query, options)
Resolve a chain from a query
This is the main way to get a pulse or chain from somewhere and have it automatically verified.
If the input is already a successful resolution, it will be returned as is.
If the input is a chain or pulse, it will be resolved as a chain or pulse resolution.
Parameters
query
The query to resolve
options
?
Options for the resolution
Returns
A chain or pulse resolution
Examples
Defined in
resolve(query, options)
Resolve a pulse (with its chain) from a query
Parameters
query
options
?
Returns
Defined in
Resolve the latest pulse of a chain
Parameters
chain
The chain CID or chain itself to resolve the latest pulse from
options
?
Options for the resolution
Returns
A pulse resolution
Examples
Defined in
Resolve a pulse by index
Parameters
chain
The chain CID or chain itself to resolve the pulse from
index
number
The index of the pulse to resolve
options
?
Options for the resolution
Returns
A pulse resolution
Example
Defined in
Check if a cid can be resolved
Parameters
cid
The CID to check
Returns
True if the CID can be resolved, false otherwise
Example
Defined in
Get the pulses of a chain
Parameters
chain
The chain CID or chain itself to get the pulses from
start
?
The index or CID of the pulse to start from
options
?
Options for the resolution
Returns
An sync/async iterable of pulses
Example
Defined in
Get the chains that are known to the resolver
Returns
An sync/async iterable of chains
Example
Defined in
resolve(query
, options
?): Promise
<>
Promise
<>
resolve(query
, options
?): Promise
<>
Promise
<>
resolveLatest(chain
, options
?): Promise
<>
Promise
<>
resolveIndex(chain
, index
, options
?): Promise
<>
Promise
<>
has(cid
): <boolean
>
<boolean
>
pulses(chain
, start
?, options
?): AsyncGenerator
<, any
, any
> | Generator
<, any
, any
> | <>
number
|
AsyncGenerator
<, any
, any
> | Generator
<, any
, any
> | <>
chains(): AsyncGenerator
<, any
, any
> | Generator
<, any
, any
> | <>
AsyncGenerator
<, any
, any
> | Generator
<, any
, any
> | <>