MetaConnectorOptimizations
The MetaConnectorOptimizations type lists optional bulk operations a connector can implement to improve performance.
{
readTimestamps?: (address: TimestampsAddress<Depth>) => Promise<Timestamps>;
getMeta?: () => Promise<Meta>;
}| Type | Description | |
|---|---|---|
readTimestamps? | (address: TimestampsAddress<Depth>) => Promise<Timestamps> | The readTimestamps optimization callback can retrieve all |
getMeta? | () => Promise<Meta> | The getMeta optimization callback can return the connector's complete metadata tree in a single operation. This is used by |
Since
v0.0.0