> For the complete documentation index, see [llms.txt](https://docs.qremix.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.qremix.org/core-modules/accessing-and-interacting-with-the-deployed-contracts.md).

# Accessing and Interacting with the Deployed Contracts

Once a contract has been successfully deployed in **Q-Remix IDE**, it becomes available in the **Deployed Contracts** section. This section is located just below the **Deploy button** in the *Deploy & Run* tab. It provides a graphical interface for interacting with your contract's functions directly within the IDE.

#### What You Can Do

* **View Recently Deployed Contracts**:\
  Only the **last five deployed contracts** are retained and interactable within this section. If more than five contracts are deployed, the oldest one will be removed from the list.
* **Interact with Contract Functions**:\
  Each listed contract instance includes an interactive panel that exposes all its **public** and **external** functions. For each function:
  * Input fields are shown for required parameters.
  * `View` and `Pure` functions return values directly in the terminal.
  * `Payable` and state-changing functions initiate blockchain transactions.
* **Collapse or Expand Interface**:\
  Each deployed contract can be expanded to show available functions or collapsed for a cleaner interface.
* **Copy Address**:\
  The contract address can be copied for use in frontend integration or other tooling.

#### Transaction Output and Logging

* Any function interaction or transaction from the Deployed Contracts section is reflected in the **Terminal Panel** (bottom section of the IDE).
* Logs include:
  * Transaction hash
  * Status (success or failure)
  * Gas used
  * Return values (for `view`/`pure` functions)
  * Contract address and timestamp

> Tip: Use this section to thoroughly test your smart contract before pushing to a live blockchain.

<figure><img src="https://3633094706-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fj7rwyc4EeGqNoC2Ji4bS%2Fuploads%2FnvmHvywv2vZoIaQeLLdL%2Fimage.png?alt=media&amp;token=2c719f06-d735-4846-9534-47dffd1d5989" alt=""><figcaption></figcaption></figure>

Any transaction done in this manner would be reflected in the terminal.&#x20;

<figure><img src="https://3633094706-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fj7rwyc4EeGqNoC2Ji4bS%2Fuploads%2Fvsx1t2kyyfAlto7iykFw%2Fimage.png?alt=media&amp;token=e6786afa-88d7-4c52-9dc9-279d8c6d678d" alt=""><figcaption></figcaption></figure>
