> For the complete documentation index, see [llms.txt](https://docs.kinetex.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kinetex.io/flash-trade-protocol/trusted-forwarders.md).

# Trusted Forwarders

The standard order execution flow assumes that the executor must be the resolver address specified in the order structure. While this is important for security, it also creates certain restrictions for resolvers since it eliminates the possibility of indirectly calling the order execution method, for example, from custom smart contacts.

For this purpose, the **Trusted Forwarders** mechanism ([EIP-2771](https://eips.ethereum.org/EIPS/eip-2771)) was implemented in Flash Trade.

The `KinetexForwarder` contract is an `ERC2771Forwarder` implementation based on the OpenZeppelin library. It extends signature-recovery options to allow both meta transactions from externally owned accounts (EOAs) and ERC-1271 signatures from smart contract via the `SignatureChecker` library implemented by OpenZeppelin.

Some of the main Kinetex Flash contracts inherit OpenZeppelin's `ERC2771Context`, which allows meta transactions from constructor-initialized trusted forwarder contract addresses. The `KinetexForwarder` contract will be deployed and used as the trusted forwarder in these contexts.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kinetex.io/flash-trade-protocol/trusted-forwarders.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
