# Contracts

## **Deployed Instances**

In order to keep deployment costs low for all creators Manifold Creator Contracts are deployed using a [delegate proxy implementation (EIP-897)](https://eips.ethereum.org/EIPS/eip-897). In this implementation, a customized Manifold smart contract with individual ASCII art, token name, and token symbol is deployed and includes an interface that delegates its logic to the complete and immutable Manifold Creator Core contract. Not only is the Creator Core implementation immutable, but so is the delegation of the proxy. Mainnet and Rinkeby immutable contract implementations are as follows:

* [Mainnet ERC721 Creator Core immutable implementation](https://etherscan.io/address/0x5133522ea5A0494EcB83F26311A095DDD7a9D4b6)
* [Goerli ERC721 Creator Core immutable implementation](https://goerli.etherscan.io/address/0xa60e235c7e7e27AB9f5E7b5a7d67e82088314CA6#code)
* [Mainnet ERC1155 Creator Core immutable implementation](https://etherscan.io/address/0xE9FF7CA11280553Af56d04Ecb8Be6B8c4468DCB2)
* [Goerli ERC1155 Creator Core immutable implementation](https://goerli.etherscan.io/address/0x6e3434B2E7fb6Ad844Ad0aDf758ff1a6ef34431f#code)

## Function Permissions

With the Manifold Creator Core Contract architecture, each contract function has one of the following permission types:

* **Public** - A function callable by anyone regardless of ownership or relationship to a specific contract or token (e.g. looking up royalties).
* **Owner/Admin Only** - A function callable only by the contract owner or a wallet address that has been made an admin of the contract by the contract owner (e.g. minting tokens). A handful of functions are limited to Owner Only and specified as such (e.g. approving an admin).
* **Registered Extensions Only** - A function callable only by a specific extension registered to the base contract (e.g. overriding token URI when minting from an extension).

The following sections will detail the various functions of the Creator Contract architecture.


---

# Agent Instructions: 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.manifold.xyz/manifold-for-developers/smart-contracts/manifold-creator/contracts.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.
