# Flatten a Smart Contract

Flattening a smart contract is the process of combining the main contract with all its dependencies (interfaces, libraries, inherited contracts) into a single, standalone `.sol` file. This makes it much easier to validate the deployed contract.

{% hint style="info" %}
You do not need to flatten your contract to deploy it.&#x20;

Flattening is primarily a post-deployment step used to verify your source code on an explorer.
{% endhint %}

Because Chiliz Chain is an EVM-compatible blockchain, there are several tools available to flatten a contract.&#x20;

{% hint style="info" %}
If you deploy from your original files, then flatten them to verify the whole contract, you must ensure that nothing changes in the compilation settings.

Otherwise, you risk to get a "Bytecode mismatch" sort of error, and verification will fail.
{% endhint %}

## Flatten using Remix IDE

In the File Explorer, right-click your main contract, and choose "Flatten" in the menu.

<figure><img src="https://3400301555-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F4L7rBH2rmyoBTn93MSdx%2Fuploads%2FDosUVE90Zlvkm7XJ8vvX%2FScreenshot%202026-01-09%20at%2015.18.06.png?alt=media&#x26;token=83bce594-98c4-4872-b7ce-752ecbc5a4b7" alt="" width="375"><figcaption></figcaption></figure>

Remix will generate a `CONTRACT_flattened.sol` contract in your folder.

## Flatten using Hardhat

Adapt the following line to your workflow:

```bash
npx hardhat flatten contracts/MyContract.sol > Flattened.sol
```

{% hint style="warning" %}
Because a flattened contract can be thousands of lines long, they are terrible for actual development and maintenance.

They should only be generated when you need them, for instance when verifying the deployed contract.
{% endhint %}
