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
andPure
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.
Any transaction done in this manner would be reflected in the terminal.
Last updated