CombinedResolver
@twine-protocol/twine-core v0.1.0 • Docs
twine-js / @twine-protocol/twine-core / CombinedResolver
Interface: CombinedResolver
A resolver that combines multiple resolvers
Extends
Properties
add
Add a resolver to the combined resolver
remove
Remove a resolver from the combined resolver
setCacheSize
(count
: number
) => void
Set the maximum number of items to cache
Methods
close()
close():
Awaitable
<void
>
Close the resolver (if cleanup is needed in sub-resolvers)
Returns
Awaitable
<void
>
Defined in
packages/twine-core/src/resolver/combine.ts:67
resolve()
resolve(query, options)
resolve(
query
,options
?):Promise
<ChainResolution
>
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
Promise
<ChainResolution
>
A chain or pulse resolution
Examples
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:233
resolve(query, options)
resolve(
query
,options
?):Promise
<PulseResolution
>
Resolve a pulse (with its chain) from a query
Parameters
query
options
?
Returns
Promise
<PulseResolution
>
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:237
resolveLatest()
resolveLatest(
chain
,options
?):Promise
<PulseResolution
>
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
Promise
<PulseResolution
>
A pulse resolution
Examples
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:260
resolveIndex()
resolveIndex(
chain
,index
,options
?):Promise
<PulseResolution
>
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
Promise
<PulseResolution
>
A pulse resolution
Example
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:278
has()
has(
cid
):Awaitable
<boolean
>
Check if a cid can be resolved
Parameters
cid
The CID to check
Returns
Awaitable
<boolean
>
True if the CID can be resolved, false otherwise
Example
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:295
pulses()
pulses(
chain
,start
?,options
?):AsyncGenerator
<Pulse
,any
,any
> |Generator
<Pulse
,any
,any
> |AnyIterable
<Pulse
>
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
AsyncGenerator
<Pulse
, any
, any
> | Generator
<Pulse
, any
, any
> | AnyIterable
<Pulse
>
An sync/async iterable of pulses
Example
Inherited from
Defined in
packages/twine-core/src/resolver/types.ts:313
chains()
chains():
AsyncGenerator
<Chain
,any
,any
> |Generator
<Chain
,any
,any
> |AnyIterable
<Chain
>
Get the chains that are known to the resolver
Returns
AsyncGenerator
<Chain
, any
, any
> | Generator
<Chain
, any
, any
> | AnyIterable
<Chain
>
An sync/async iterable of chains
Example
Inherited from
Defined in
Last updated