Middleware is a well-known concept in software engineering. In traditional web development (web 2.0) for example, middleware is a piece of software that is implemented in the HTTP request-response cycle. One or more pieces of middleware stacked on top have access to the request and response object when an HTTP request comes in at a web server. They can execute custom logic for adding authentication, requesting headers, parsing request bodies, error handling, and many other tasks.
The use of middleware enables the composability and reusability of logical building blocks while allowing applications to focus on their application-specific logic. This suits the Interchain philosophy well, and it is, therefore, no surprise that middleware can also play an important role in Inter-Blockchain Communication Protocol (IBC) applications.
In this section, you will learn how to:
This document serves as a guide for middleware developers who want to write their own middleware, and for chain developers who want to use IBC middleware on their chains.
IBC applications are designed to be self-contained modules that implement their own application-specific logic through a set of interfaces with the core IBC handlers. This is discussed in the hands-on section.
These core IBC handlers are designed to enforce the correctness properties of IBC (transport, authentication, ordering) while delegating all application-specific handling to the IBC application modules. However, there are cases where some functionality may be desired by many applications, yet not appropriate to place in core IBC...this is where middleware enters the picture.
Middleware allows developers to define the extensions to the application and core IBC logic as separate modules that can wrap over the base application. This middleware can perform its custom logic and pass data into the application, which in turn may run its own logic without being aware of the middleware's existence.
This design allows both the application and the middleware to implement their own isolated logic while still being able to run as part of a single packet flow.
In addition, as multiple middlewares can be stacked this design enables modularity, where chain developers can build the required business logic using plug-and-play components consisting of a base IBC application module and a stack of middlewares.
Before we continue, it is important to define the semantics:
Middleware
: A self-contained module that sits between core IBC and an underlying IBC application during packet execution. All messages between core IBC and the underlying application must flow through the middleware, which may perform its own custom logic.Underlying Application
: An underlying application is an application that is directly connected to the middleware in question. This underlying application may itself be middleware that is chained to a base application.Base Application
: A base application is an IBC application that does not contain any middleware. It may be nested by 0 or multiple middlewares to form an application stack.Application Stack (or stack)
: A stack is the complete set of application logic (middleware(s) + base application) that is connected to core IBC. A stack may be just a base application, or it may be a series of middlewares that nest a base application.The diagram below gives an overview of a middleware stack consisting of two middlewares (one stateless, the other stateful).
Keep in mind that:
To summarize, this section has explored: