> For the complete documentation index, see [llms.txt](https://gitbook.mor.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook.mor.org/smart-contracts/documentation.md).

# Documentation

At genesis, the Morpheus network utilizes six smart contracts, including the MOR token itself, used to incentivize key contributors to the network, as well as contracts enabling the [Techno Capital Machine](/tokenomics/techno-capital-machine.md) mechanism functioning.&#x20;

### **Morpheus Smart Contracts Set**

* [`MOROFT`](/smart-contracts/documentation/mor-oft.md) – the Morpheus token, a [LayerZero Omnichain Fungible Token](https://docs.layerzero.network/v2/developers/evm/oft/quickstart) (OFT)
* [`Distribution Protocol`](https://gitbook.mor.org/~/revisions/3ulU7lsttK8DsMz9IH4e/smart-contracts/documentation/distribution-protocol/v7-protocol) – used to lock capital for the Techno Capital Machine and claim rewards
* [`LinearDistributionIntervalDecrease`](/smart-contracts/documentation/distribution-protocol/v7-protocol/contracts/libs/lineardistributionintervaldecrease.md) – a library for calculating rewards
* [`L1Sender`](/smart-contracts/documentation/distribution-protocol/v7-protocol/contracts/l1senderv2/l1senderv3.md) – sends MOR claiming (minting) requests; wraps and transfers stETH to Arbitrum
* [`L2MessageReceiver`](/smart-contracts/documentation/distribution-protocol/v7-protocol/contracts/l2messagereceiver.md) – receives and processes MOR claiming (minting) requests on L2
* [`L2TokenReceiverV2` ](/smart-contracts/documentation/distribution-protocol/v7-protocol/contracts/l2tokenreceiverv2.md)– receives wstETH and manages Protocol-Owned Liquidity on L2

With the exception of the MOR token and `LinearDistributionIntervalDecrease` library, all contracts utilize the [UUPS proxy pattern](https://docs.openzeppelin.com/contracts/5.x/api/proxy#UUPSUpgradeable) to enable upgradeability and are owned by the [Morpheus multisignature accounts](/smart-contracts/multisig.md) on their respective chains.\
\
Within the contracts, **deposit token** is used to refer to the token deposited by Capital Providers (stETH) or its wrapped counterpart (wstETH), while **reward token** refers to the MOR token.

### Audits

The Morpheus smart contracts were audited [by Renascence](https://github.com/MorpheusAIs/Docs/blob/main/Security%20Audit%20Reports/Distribution%20Contract/Distribution%20V2%20Audit%20%7C%20Renascence.pdf) and later subject to a public [CodeHawks audit](https://www.codehawks.com/contests/clrzgrole0007xtsq0gfdw8if).


---

# 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, and the optional `goal` query parameter:

```
GET https://gitbook.mor.org/smart-contracts/documentation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
