# Interface Contracts

## What Is An Interface Contract?

The interface contracts are used to define the functions that a contract must implement without providing the implementation of those functions.  They are similar to abstract contracts but cannot contain any implemented functions or state variables.  Interface contracts are particularly useful for defining the expected behaviours of other contracts that will interact with the implementing contract.

The interface contracts make it possible for anyone to build their own version of something while making sure the different implementations can talk to each other.

## 5 New Interfaces

There are 4 interface contracts that cover the 721J functions. There's 1 interface contract that covers the functions in The Contract Wizard. They are called:

* IERC721J / IERC721JUpgradeable [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/ierc721j.sol)
* IERC721JEnumerable / IERC721JEnumerableUpgradeable [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/ierc721jenumerable.sol)
* IERC721JFull / IERC721JFullUpgradeable [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/ierc721jfull.sol)
* IERC721JPromo / IERC721JPromoUpgradeable [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/ierc721jpromo.sol)
* IContractWizard [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/icontractwizard.sol)

The I stands for Interface. &#x20;

The 721J interfaces are named that way because the normal 721J ones are for the normal contract and the Upgradeable ones are for the 721J clones to be used with The Contract Wizard.

## Extra Interface Contracts

IERC2981 is for royalties. [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/other#ierc2981.sol)

IERC721, IERC721Metadata, IERC721Enumerable, and IERC721Receiver are to cover the functionality of a normal ERC721 contract. [here](https://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-contracts/other)


---

# 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://contract-wizard.gitbook.io/contract-wizard/create/smart-contracts/interface-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.
