Skip to main content

Manage Your Contract

The dashboard is a central location where you and your team can manage and analyze your smart contract, with tools that allow you to perform common admin operations, with features such as:

  • Contract Explorer: Execute any function on your contract, and see the results in real-time.
  • Events: View A live-updating feed of events emitted by your contract.
  • Settings: Update contract metadata, royalty and platform fees, and more.
  • Sources: View all of your contract's source code, and verify your contract on Etherscan.
  • Code: Learn how to use the SDK to interact with your contract.

Each extension you implement also unlocks additional features in the dashboard. For example, the contract you deployed in the previous step has the NFTs and Permissions tabs unlocked.

Contract Explorer

Connect your wallet and execute any available function on your smart contract directly from the dashboard.

Contract Explorer

NFTs

Since our contract implements the ERC721 standard, we unlock the NFTs tab in the dashboard.

Here, we can see all of the NFTs minted by our contract, and even mint new ones.

NFTs

Permissions

As our contract also implements the Permissions extension, we unlock the Permissions tab in the dashboard.

Easily invite members of your team with tiered permission levels, and manage their access to your contract.

Permissions

Code

The Code tab provides the steps to creating a new application with our SDK, and interacting with your contract.

Let's take a look at how we can use the SDK to build a web application next: