Processor Contract

The Processor will be a contract on each domain within the program. The Processor handles execution of message batches it receives from the Authorization contract. Depending on the Processor type in use, its features will vary. There are currently two types of processors: Lite Processor and Processor. The former is a simplified version of the latter. The Lite Processor has limited functionality to optimize for gas-constrained domains.

The Processor will be instantiated in advance with the correct address that can send messages to them, according to the InstantiationFlow described in the Assumptions section.

In the table below we summarize the main characteristics of the processors supported:

ProcessorLite Processor
Execution EnvironmentCosmWasmEVM
Stores batches in queuesYes, FIFO queue with priorityNo, executed immediately by relayer
Needs to be tickedYes, permissionlesslyNo
Messages can be retriedYesNo
Can confirm non-atomic function with callbackYesNo
Supports Pause operationYesYes
Supports Resume operationYesYes
Supports SendMsgs operationYesYes
Supports InsertMsgs operationYesNo, no queues to insert in
Supports EvictMsgs operationYesNo, no queues to remove from