📄️ edeXa ERC1155 SDK
Understanding ERC1155: A Revolution in Blockchain Token Standards
📄️ Minting Tokens
This guide outlines the process of minting tokens within your blockchain application using the ERC1155 API. The mintToken method enables the creation of new tokens, adding them to the total supply and assigning them to a specific account.
📄️ Batch Minting Tokens
The batchMint method enables developers to mint multiple tokens in a single operation, simplifying the process of issuing tokens on the blockchain. This functionality is essential for creating tokens in bulk, whether for initial distribution, rewards, or other purposes.
📄️ Retrieving User
This guide details the process for retrieving the account ID (username) of a user within your blockchain application using the ERC1155 API's getAccount method. This functionality is crucial for managing user-specific operations, such as token transfers.
📄️ Setting Token URI
This guide outlines the process of setting or updating the Uniform Resource Identifier (URI) for a token using the ERC1155 API. The setTokenURI method enables you to associate a new URL with a specific token, providing essential information about the token's properties or metadata.
📄️ Retrieving Token URI
This guide explains how to use the getTokenURI method to retrieve the Uniform Resource Identifier (URI) of a token within your blockchain application using the ERC1155 API. The URI provides essential information about the token, often pointing to a JSON file that describes the token's properties.
📄️ Checking Token Balance with the ERC1155 API
This guide explains how to use the getBalance method to inquire about the token balance in your account or to view the balance of a specific user with the ERC1155 API.
📄️ Checking Batch Token Balances
This guide explains how to use the getBatchBalance method to check the balance of multiple tokens for a specific account using the ERC1155 API. This functionality is essential for applications that need to display or manage the token holdings of users efficiently.
📄️ Transferring Tokens to Users
This guide explains how to use the tokenTransfer method to transfer tokens to users within your blockchain application using the ERC1155 API. The method allows for the secure and efficient transfer of tokens between accounts.
📄️ Batch Token Transfer to Multiple Users
This guide outlines the process for transferring multiple tokens to multiple users in a single operation using the ERC1155 API. The tokenTransferMultiUsers method facilitates this process, enhancing the efficiency of token distributions.
📄️ Setting Token Approval
This guide provides detailed instructions on how to set approval for token access using the ERC1155 API, a key feature for managing token permissions within your blockchain application. By following this guide, developers can allow users to grant permission to third parties, enabling them to spend tokens on their behalf.
📄️ Checking Approval Status
This guide describes how to check the approval status for a specific spender using the ERC1155 API, an essential feature for managing token allowances and spender permissions within your blockchain application.
📄️ Batch Token Transfer
The batchTokenTransfer method enables the efficient transfer of multiple tokens to a single user or multiple users in a single operation. This functionality is essential for applications that need to distribute tokens to users en masse, such as rewards distribution, airdrops, or bulk transfers.
📄️ Burning Tokens
The burnToken method enables developers to permanently remove tokens from circulation within their blockchain application. This functionality is essential for managing the token supply, redeeming tokens, or other scenarios where reducing the number of tokens is necessary.
📄️ Batch Burning Tokens
The batchBurn method in the ERC1155 API allows developers to efficiently burn (permanently remove) multiple tokens in a single operation. This functionality is crucial for managing token supply and can be used in various scenarios, such as redeeming tokens, removing expired tokens, or adjusting the token supply for balancing.