> ## Documentation Index
> Fetch the complete documentation index at: https://sequence-0fb8d9e6-shop-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Bootstrap your Game

> Documentation for Unreal SDK API for reading from the blockchain with the Sequence infrastructure stack for web3 gaming.

Sequence's Unreal SDK includes a range of features to help you bootstrap your game.
You can create them as shown below or duplicate the `.uasset` files from the `Plugins/SequencePlugin Content/Samples/`
folder and customize them to fit your needs.

## Login

Create the `Sequence Login` widget to bootstrap your login integration.

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/boilerplate_login.png" />
</Frame>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/create_login.png" />
</Frame>

## Inventory

Create the `Sequence Inventory` widget to show all items owned by a user from any ERC1155 or ERC721 contract.

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/boilerplate_inventory.png" />
</Frame>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/feature_inventory.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) on which the specified contract is deployed.

  **Wallet Address (FString)**

  The wallet address of the user for whom you want to list the inventory items.

  **Contract (FString)**

  The address of an ERC1155 or ERC721 contract where the specified wallet address owns items.
</Accordion>

## Primary Sale

Accelerate your game growth by selling items directly to your players. Create the `Sequence Primary Sale` widget to show an In-Game Shop that utilizes game items
from a ERC1155 contract, which users purchase using any custom or existing ERC20 currency.

[Primary Sales Contract](/solutions/collectibles/contracts/deploy-primary-sales-contract/): Learn how to set up and deploy contracts for launching a primary sale.

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/boilerplate_shop.png" />
</Frame>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/feature_sale.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) on which the specified contract is deployed.

  **Token Contract Address (FString)**

  The address of the ERC1155 or ERC721 token contract you deployed using Sequence's Builder.

  **Sale Contract Address (FString)**

  The address of the sale contract you deployed using Sequence's Builder.

  **Payment Token (FString)**

  The ERC20 token address you specified on the 'Mint Access' section of your Sale contract.

  **Price (Integer)**

  The price for each token you specified on the 'Mint Access' section of your Sale contract.

  **Tokens for Sale (Integer Array)**

  A list of token IDs (e.g. \[0, 1, 2]) that you display in your user interface.
</Accordion>

## Player Profile

Create the `Sequence Profile` widget to display a QR code to receive funds or send funds to other wallets.

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/boilerplate_profile.png" />
</Frame>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/sequence-0fb8d9e6-shop-docs/images/unreal/feature_wallet.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) where you want to run your game.

  **Wallet Address (FString)**

  The wallet address of the user for whom you want to display this view.

  **Enable Send (Boolean)**

  Indicates whether to enable the button to open a send view. Set this to false if you want to display the profile of another user.
</Accordion>
