The type of database context. Usually DbContext, if used with standard @tezos-dappetizer/database.
The type of your custom data that flows in indexingContext
through all indexers for a block. See createContextData.
Executed after block is already indexed, after the related database transaction is committed.
Executed after all other indexers are executed. This is an ideal place to refine your indexed data or write them to database in optimal way.
Executed before all other indexers execute.
Creates your custom data that flows through all indexers when indexing a block.
It flows in indexingContext.data
or as a dedicated parameter.
If not implemented, then undefined
is used.
Should roll back indexed changed on blockchain reorganization.
Generated using TypeDoc
Central indexing component that handles special/overall cases - see its methods.