Skip to main content

What can you build on it?

Immutable X allows you to create applications on layer 2 by interacting with its API and developer tools. It provides the key functionality you'll need to build Web3 games or NFT applications without having to deploy your own complicated smart contracts.

Before starting to build on Immutable X, it's important to understand:

What functionality do Web3 games and applications typically need?

There are two main types:

  1. Facilitate user transactions
  2. Retrieve data about current state and historical transactions

1. Facilitate user transactions

These enable users to do things that update state on the blockchain. These transactions include:

  • Buying and selling assets
  • Minting NFTs
  • Transferring assets to other users
  • Depositing assets to L2 (ie. ERC20 tokens)

These transactions require user signatures to authorize because they update state on the blockchain (as opposed to simply reading data).

Examples and use cases:

ExampleDescriptionUse cases
Minting assetsMinting assets simply means to call a function in a token smart contract that brings into existence new tokens.

Users can mint an asset either for themselves, or another user.
  • Creators can launch a collection of NFTs on a website that users can mint from
  • Games can release a new category of in-game items and allow players to mint them
Creating ordersAn order is a sale listing. It can be created by users who want to sell an asset that they own. They can specify things like price, sale period, etc.
  • A marketplace wanting to allow users to put their assets up for sale so that other users can buy them.
  • Games can create their own in-game marketplace, allowing players to sell in-game items that they own.
Creating tradesA trade is simply filling an order. A user executes a trade by agreeing to purchase an asset at the terms specified in the order and then becomes the new owner of the asset.
  • An NFT marketplace can display assets for sale and enable users to buy them.
  • An exchange can allow users to trade their fungible (ERC-20) tokens.
  • Games can allow players to buy assets from other players in their own in-game marketplace.
TransfersA user can transfer the ownership of an asset that they own to another user.
  • Games may allow players to give assets to each other.
  • Games might mint a collection of in-game items and transfer them to players based on the fulfilment of certain achivements.
Deposit assets from L1 to L2Deposits are when users transfer assets that they own on layer 1 to layer 2 (ie. ETH or ERC20 tokens)
  • An NFT marketplace can implement a 'bridging mechanism' which allows users to transfer ETH that they own from L1 to L2 so that they can purchase assets on L2

2. Retrieve data about current state and historical transactions

Applications often need to provide information about the current state (ie. who owns which assets) and historical transactions (ie. past owners of an asset, previous sales of an asset) on a blockchain. This information can be used for analysis purposes, or to provide users with the information they need in order to execute a transaction (ie. an NFT marketplace application providing information on current sale orders enables users to be able to create a trade that fills the order - purchases the asset).

Examples and use cases:

ExampleDescriptionExamples of use
Asset dataDetails about non-fungible tokens on Immutable X, like metadata, image URL, current owner, etc.
  • NFT marketplaces display the details of an asset that is listed for sale so that buyers know what they are purchasing
  • Game mechanics utilize the attributes of an in-game asset in order to know what action to execute
Order dataDetails about orders, like sale price, sale period, etc.
  • NFT marketplaces will list orders in order to show buyers what is for sale and provide them with the opportunity to purchase
User dataDetails about users, like the types of tokens they own and the balance of each token.
  • Wallet applications can display to their users their token balances
  • Marketplaces can let users know that an attempt to purchase an asset will fail because the user has insufficient tokens to fulfil the order

What functionality does Immutable X provide?

Our basic guides cover the key functionality provided for by the Immutable platform.

For the full list of functionality, please see our API reference.

⚒️ Get started building

Immutable provide SDKs which are a wrapper around the API functions and make it easy for developers to integrate Immutable X with their application's particular language or framework.

For more information on the SDKs that we have and how they work together, please see here.