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.
Optional
afterOptional
afterExecuted after all other indexers are executed. This is an ideal place to refine your indexed data or write them to database in optimal way.
Optional
beforeOptional
createCreates 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.
Optional
rollShould roll back indexed changed on blockchain reorganization.
Generated using TypeDoc
Central indexing component that handles special/overall cases - see its methods.