In this example, the defaultAdmin, primarySaleRecipient, and
royaltyRecipient parameters are the same address but can be set distinctly
based on your use case.
The Multi-Token template is an audited, ready-to-deploy smart contract for the ERC-1155 multi-token standard. ERC-1155 is a versatile token standard that allows for creating and managing multiple types of tokens within a single smart contract. Unlike other token standards, like ERC-20 and ERC-721, ERC-1155 supports fungible and non-fungible tokens, providing flexibility for various use cases.
The ERC-1155 standard enables the creation of tokens representing different types of assets, such as digital collectibles, in-game items, unique artwork, and more, all within the same contract. This reduces the need to deploy separate contracts for different token types, improving efficiency and reducing costs.
Some use cases of the standard include:
Gaming assets: With ERC-1155, developers can create game assets that can be fungible or non-fungible. For example, fungible ERC-1155 tokens can represent in-game currencies, while non-fungible ERC-1155 tokens can represent unique weapons, characters, or virtual land.
Digital collectibles: Similar to ERC-721, ERC-1155 can be used to create and trade digital collectibles. However, ERC-1155 offers additional flexibility, allowing for the creation of fungible and non-fungible tokens under the same contract. This enables the creation of collections with varying levels of scarcity and uniqueness.
Tokenized real-world assets: ERC-1155 tokens can also represent ownership of real-world assets such as real estate or shares in a company. By combining fungible and non-fungible tokens, ERC-1155 offers a more efficient solution for fractional ownership of assets.
Batch operations: One of the significant advantages of ERC-1155 is the ability to perform batch operations. Developers can transfer multiple tokens in a single transaction, making it more cost-efficient and reducing gas fees.
In this comprehensive guide, you explore the Multi-Token template, which provides all the necessary information to deploy and understand the contract's common functions.
The Multi-Token template creates a smart contract representing and controlling
any number of token types. These tokens can of the ERC-20, ERC-721 or any other
standard. To create a contract using this template, provide the following
parameter values when deploying a smart contract template using the
POST: /templates/{id}/deploy
API.
Template ID: aea21da6-0aa2-4971-9a1a-5098842b1248
| Parameter | Type | Required | Description |
|---|---|---|---|
name | String | X | Name of the contract - stored on-chain. |
symbol | String | Symbol of the token - stored onchain. The symbol is usually 3 or 4 characters in length. | |
defaultAdmin | String | X | The address of the default admin. This address can execute permissioned functions on the contract. |
primarySaleRecipient | String | X | The recipient address for first-time sales. |
platformFeeRecipient | String | The recipient address for all sale fees. | |
platformFeePercent | Float | The percentage of sales that go to the platform fee recipient. For example, set it as 0.1 if you want 10% of sales fees to go to platformFeeRecipient. | |
royaltyRecipient | String | X | The recipient address for all royalties (secondary sales). This allows the contract creator to benefit from further sales of the contract token. |
royaltyPercent | Float | X | The percentage of secondary sales that go to the royalty recipient. For example, set it as 0.05 if you want royalties to be 5% of secondary sales. |
contractUri | String | The URL for the marketplace metadata of your contract. | |
trustedForwarders | String[] | A list of addresses that can forward ERC2771 meta-transactions to this contract. |
Here is an example of the templateParametersJSON object within the request
body to
deploy a contract from a template
for the ERC-1155 Multi-Token template.
In this example, the defaultAdmin, primarySaleRecipient, and
royaltyRecipient parameters are the same address but can be set distinctly
based on your use case.
...
"templateParameters": {
"name": "My Multi-Token Contract",
"defaultAdmin": "0x4F77E56dfA40990349e1078e97AC3Eb479e0dAc6",
"primarySaleRecipient": "0x4F77E56dfA40990349e1078e97AC3Eb479e0dAc6",
"royaltyRecipient": "0x4F77E56dfA40990349e1078e97AC3Eb479e0dAc6",
"royaltyPercent": 0.05
}
This section lists the most commonly used functions on the Multi-Token template, along with their respective parameters and potential failure scenarios. These functions include:
At this time, not all failure scenarios or error messages received from the
blockchain are passed through Circle's APIs. Instead, you will receive a
generic
ESTIMATION_ERROR
error. If available, the errorDetails field will have more information on
the cause of failure.
The mintTo function allows you to create new NFTs or increase the supply of
existing NFTs. It is a flexible function that can cater to both scenarios.
| Parameter | Type | Description |
|---|---|---|
_to | address | The address to which the newly minted NFT will be assigned. |
_tokenId | unit256 | The unique identifier for the NFT. If the value is set to type(uint256).max, the function will assign the next available token ID. Otherwise, it will assign the provided _tokenId value. |
_uri | calldata | The Uniform Resource Identifier (URI) for the NFT's metadata. It specifies the location from where the metadata can be retrieved. |
_amount | unit256 | The amount of the newly minted NFTs to be assigned. |
mintTo function is defined with the
onlyRole(MINTER\_ROLE) modifier, meaning only addresses with the
MINTER\_ROLE can call this function. The function will revert and fail if
the caller does not have the necessary role._tokenId parameter is set to
type(uint256).max (the maximum value for a uint256), the function will
attempt to create a new token and assign the next available token ID. However,
an overflow can occur if the nextTokenIdToMint variable has reached its
maximum value. This overflow condition will cause the function to fail._tokenId parameter is not set to
type(uint256).max, the function will attempt to mint an NFT with the
specified token ID. However, if the provided _tokenId value is greater than
or equal to the value of nextTokenIdToMint, the function will revert and
fail with the following error message._tokenId is provided and
already exists, the function checks whether the associated metadata URI for
that token ID is empty. If the URI is not empty, the token has already been
minted and has an associated URI. In this case, the function will fail and
revert, preventing the same token ID from being minted multiple times._to address is
the zero address address(0). Minting tokens to the zero address is
prohibited, as it represents an invalid or non-existent address. If _to is
the zero address, the function will fail and revert with the following error
message._to is a
contract, the function will attempt to call the onERC1155Received function
of that contract to check if the contract supports receiving the NFT. If the
contract's onERC1155Received function rejects the transfer by returning a
value other than IERC1155ReceiverUpgradeable.onERC1155Received.selector, the
function will revert and fail with the following error message.type(uint256).max via the _tokenId
parameter, the function will create a new NFT with _tokenId equal to
nextTokenIdToMint and assign it to the specified _to address. The _uri
parameter allows you to provide the metadata URI for the newly created NFT.
The amount parameter allows you to specify how many instances of this NFT
with the given ID should be minted.tokenId parameter, the function will increase the supply of that
specific NFT. Instead of creating a new token ID, the function will mint
additional instances of the existing NFT, adding to the current supply. Again,
the _amount parameter determines how many additional instances of the NFT
should be minted.// Lets an account with MINTER_ROLE mint an NFT.
function mintTo(
address _to,
uint256 _tokenId,
string calldata _uri,
uint256 _amount
) external onlyRole(MINTER_ROLE) {
uint256 tokenIdToMint;
if (_tokenId == type(uint256).max) {
tokenIdToMint = nextTokenIdToMint;
nextTokenIdToMint += 1;
} else {
require(_tokenId < nextTokenIdToMint, "invalid id");
tokenIdToMint = _tokenId;
}
// `_mintTo` is re-used. `mintTo` just adds a minter role check.
_mintTo(_to, _uri, tokenIdToMint, _amount);
}
The safeTransferFrom function allows for transferring a specified amount of a
particular token ID from one address from to another address to.
| Parameter | Type | Description |
|---|---|---|
from | address | The address of the current token owner, from whom the tokens will be transferred. |
to | address | The address of the recipient who will receive the transferred tokens. |
id | uint256 | The unique identifier for transferring the token. |
amount | uint256 | The amount of tokens being transferred. This represents the number of tokens to be transferred. |
data | bytes | Optional additional data to pass to the receiver contract if it is a contract. This can include custom arguments or instructions for the receiving contract. |
address(0). Transfers to the zero address are not permitted, as
it represents an invalid or non-existent address. If the to address is the
zero address, the function fails and reverts with the following error
message._msgSender() function is either the owner of the tokens (from) or has been
approved as an operator for from. If the caller is neither the token owner
nor an approved operator, the function fails and reverts with the following
error message._beforeTokenTransfer and _afterTokenTransfer hooks to update any necessary
state or perform additional checks. These hooks may contain custom business
logic that can cause the transfer to fail if certain conditions are not met.to address is a contract, the
function attempts to call the onERC1155Received function of that contract to
check if the contract supports receiving the tokens. If the contract's
onERC1155Received function rejects the transfer by returning a value other
than IERC1155ReceiverUpgradeable.onERC1155Received.selector, the function
fails and reverts with the following error message.// See IERC1155-safeTransferFrom.
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner or approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
The setApprovalForAll function is used to set the approval status for an
operator to manage all tokens of the caller (owner) on their behalf.
| Parameter | Type | Description |
|---|---|---|
operator | address | The operator's address for whom the approval status is set. The operator will be able to manage all tokens owned by the caller. |
approved | bool | The boolean value indicates whether the operator is approved (true) or disapproved (false) to manage all tokens on behalf of the caller. |
setApprovalForAll function, they can
act on behalf of the token owner. This includes performing actions such as
transferring tokens.// See {IERC1155-setApprovalForAll}.
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
// Approve `operator` to operate on all of `owner` tokens
// Emits an {ApprovalForAll} event.
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
The setTokenURI function is used to set the metadata URI for a given NFT.
| Parameter | Type | Description |
|---|---|---|
tokenId | unit256 | The unique identifier of the NFT for which the metadata URI needs to be set. |
uri | string | The URI string represents the metadata's location associated with the NFT. |
_uri is an empty string._canSetMetadata() function returns false. It
indicates that the caller has no authority or permission to set the metadata
for the given NFT.uriFrozen is true, indicating that the metadata is
frozen and cannot be updated.// Sets the metadata URI for a given NFT.
function setTokenURI(uint256 _tokenId, string memory _uri) public virtual {
require(_canSetMetadata(), "NFTMetadata: not authorized to set metadata.");
require(!uriFrozen, "NFTMetadata: metadata is frozen.");
_setTokenURI(_tokenId, _uri);
}
// Sets the metadata URI for a given NFT.
function _setTokenURI(uint256 _tokenId, string memory _uri) internal virtual {
require(bytes(_uri).length > 0, "NFTMetadata: empty metadata.");
_tokenURI[_tokenId] = _uri;
emit MetadataUpdate(_tokenId);
}
This function allows a token owner to burn a specified amount (value) of tokens they own.
| Parameter | Type | Description |
|---|---|---|
account | address | The address of the token owner who wants to burn their tokens. |
id | unit256 | The unique identifier of the token to be burned. |
value | unit256 | The amount of tokens to be burned. |
amount) is greater than the balance of tokens (fromBalance) owned by the
specified account.// Lets a token owner burn the tokens they own (i.e. destroy for good)
function burn(address account, uint256 id, uint256 value) public virtual {
require(
account == _msgSender() || isApprovedForAll(account, _msgSender()),
"ERC1155: caller is not owner nor approved."
);
_burn(account, id, value);
}
This function enables the safe transfer of multiple ERC1155 tokens from one
address (from) to another address (to) in a batch.
| Parameter | Type | Description |
|---|---|---|
from | address | The address from which the tokens are transferred. |
to | address | The address to which the tokens are transferred. |
ids | uint256[] | An array of unique identifiers of the tokens to be transferred. |
amounts | uint256[] | An array specifying the corresponding amounts of tokens to be transferred for each ID. |
data | bytes | Additional data to pass along with the transfer. Optional parameter. |
ids and amounts arrays do not match.
Each ID should have a corresponding amount to be transferred. The arrays
should have the same length.to address is the zero address (0x000...).
Transferring tokens to the zero address is not allowed as it is generally used
to represent an invalid or non-existent address.onERC1155BatchReceived function from the
IERC1155ReceiverUpgradeable interface or if the function returns a value
other than onERC1155BatchReceived.selector. This check ensures that the
receiving contract can handle the transferred tokens properly.// IERC1155-safeBatchTransferFrom
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner or approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
The balanceOfBatch function retrieves the balances of multiple accounts for
multiple token IDs in a single function call.
| Parameter | Type | Description |
|---|---|---|
accounts | address[] | An array of addresses representing the accounts to query the balances for. |
ids | unit256[] | An array of unique identifiers of the tokens to query the balances for. |
ids array. If this condition is
not met, it will throw a required exception with the following error
message.// IERC1155-balanceOfBatch
// Requirements:
// `accounts` and `ids` must have the same length.
function balanceOfBatch(
address[] memory accounts,
uint256[] memory ids
) public view virtual override returns (uint256[] memory) {
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
The balanceOf function retrieves the balance of a specific account for a
particular token ID.
| Parameter | Type | Description |
|---|---|---|
account | address | The EVM address for which the balance is being queried. |
id | unit256 | The unique token identifier for which the balance is being queried. |
address(0). If this condition is not met, it will throw
a required exception with the following error message.// See IERC1155-balanceOf
// Requirements:
// account cannot be the zero address.
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: address zero is not a valid owner");
return _balances[id][account];
}
The URI function retrieves the associated URI with a specific token ID. This URI provides a way to access metadata and additional information about the token.
| Parameter | Type | Description |
|---|---|---|
tokenId | unit256 | This is the unique token identifier for retrieving the URI. |
// Returns the URI for a tokenId
function uri(uint256 _tokenId) public view override returns (string memory) {
return _tokenURI[_tokenId];
}
Public variables are accessible from within the contract and can be accessed from external contracts. Solidity automatically generates a getter function for public state variables.
The nextTokenIdToMint variable is a public constant on the smart contract. An
unsigned integer (uint256) represents the next token ID minted or created when
type(uint256).max is passed to the mintTo function.
// The next token ID of the NFT to mint.
uint256 public nextTokenIdToMint;