operation
Operation index allows you to query only those operations related to your DApp and do pattern matching on its content (internal calls chain). It is the closest thing to fully-fledged event logs.
Filters
DipDup supports filtering operations by kind
, source
, destination
(if applicable), and originated_contract
(if applicable).
DipDup fetches only applied operations.
contracts
indexes:
my_index:
kind: operation
datasource: tzkt
contracts:
- contract1
- contract2
In this example, DipDup will fetch all the operations where any of source and destination is equal to either contract1 or contract2 address. contracts
field is obligatory, there has to be at least one contract alias (from the inventory).
types
By default, DipDup works only with transactions, but you can explicitly list operation types you want to subscribe to (currently transaction
and origination
types are supported):
indexes:
my_index:
kind: operation
datasource: tzkt
contracts:
- contract1
types:
- transaction
- origination
Note that in the case of originations, DipDup will query operations where either source or originated contract address is equal to contract1.
Handlers
Each operation handler contains two required fields:
callback
— name of the async function with a particular signature; DipDup will try to load it from the module with the same name<package_name>.handlers.<callback>
pattern
— a non-empty list of items that have to be matched
indexes:
my_index:
kind: operation
datasource: tzkt
contracts:
- contract1
handlers:
- callback: on_call
pattern:
- destination: contract1
entrypoint: call
You can think of operation pattern as a regular expression on a sequence of operations (both external and internal) with global flag enabled (can be multiple matches) and where various operation parameters (type, source, destination, entrypoint, originated contract) are used for matching.
Pattern
Here are the supported filters for matching operations (all optional):
type
— (either transaction or origination) usually inferred from the existence of other fieldsdestination
— invoked contract alias (from the inventory)entrypoint
— invoked entrypoint namesource
— operation sender alias (from the inventory)originated_contract
— originated contract alias (from the inventory)similar_to
— originated contract has the same parameter and storage types as the reference one (from the inventory)strict
— stronger thesimilar_to
filter by comparing the entire code rather than just parameter+storageoptional
— continue matching even if this item is not found (with limitations, see below)
It's unnecessary to match the entire operation content; you can skip external/internal calls that are not relevant. However, there is a limitation: optional items cannot be followed by operations ignored by the pattern.
pattern:
- destination: contract_1
entrypoint: call_1
- destination: contract_2
entrypoint: internal_call_2
- source: contract_1
type: transaction
- source: contract_2
type: origination
similar_to: contract_3
strict: true
optional: true
You will get slightly different callback argument types depending on whether you specify destination+entrypoint for transactions and originated_contract for originations. Namely, in the first case, DipDup will generate the dataclass for a particular entrypoint/storage, and in the second case not (meaning you will have to handle untyped parameters/storage updates).