The following specifies a multi-token contract as a simplified alternative to the ERC-1155 Multi-Token Standard. In contrast to ERC-1155, callbacks and batching have been removed from the interface and the permission system is a hybrid operator-approval scheme for granular and scalable permissions. Functionally, the interface has been reduced to the bare minimum required to manage multiple tokens under the same contract.
Motivation
The ERC-1155 standard includes unnecessary features such as requiring recipient accounts with code to implement callbacks returning specific values and batch-calls in the specification. In addition, the single operator permission scheme grants unlimited allowance on every token ID in the contract. Backwards compatibility is deliberately removed only where necessary. Additional features such as batch calls, increase and decrease allowance methods, and other user experience improvements are deliberately omitted in the specification to minimize the required external interface.
According to ERC-1155, callbacks are required for each transfer and batch transfer to contract accounts. This requires potentially unnecessary external calls to the recipient when the recipient account is a contract account. While this behavior may be desirable in some cases, there is no option to opt-out of this behavior, as is the case for ERC-721 having both transferFrom and safeTransferFrom. In addition to runtime performance of the token contract itself, it also impacts the runtime performance and codesize of recipient contract accounts, requiring multiple callback functions and return values to receive the tokens.
Batching transfers, while useful, are excluded from this standard to allow for opinionated batch transfer operations on different implementations. For example, a different ABI encoding may provide different benefits in different environments such as calldata size optimization for rollups with calldata storage commitments or runtime performance for environments with expensive gas fees.
A hybrid allowance-operator permission scheme enables granular yet scalable controls on token approvals. Allowances enable an external account to transfer tokens of a single token ID on a user’s behalf w by their ID while operators are granted full transfer permission for all token IDs for the user.
Specification
The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC 2119 and RFC 8174.
Definitions
infinite: The maximum value for a uint256 (2 ** 256 - 1).
caller: The caller of the current context (msg.sender).
spender: An account that transfers tokens on behalf of another account.
operator: An account that has unlimited transfer permissions on all token ids for another account.
mint: The creation of an amount of tokens. This MAY happen in a mint method or as a transfer from the zero address.
burn: The removal an amount of tokens. This MAY happen in a burn method or as a transfer to the zero address.
Methods
balanceOf
The total amount of a token id that an owner owns.
Transfers an amount of a token id from a sender to a receiver by the caller.
MUST revert when the caller is not an operator for the sender and the caller’s allowance for the token id for the sender is insufficient.
MUST revert when the sender’s balance for the token id is insufficient.
MUST log the Transfer event.
MUST decrease the caller’s allowance by the same amount of the sender’s balance decrease if the caller is not an operator for the sender and the caller’s allowance is not infinite.
SHOULD NOT decrease the caller’s allowance for the token id for the sender if the allowance is infinite.
SHOULD NOT decrease the caller’s allowance for the token id for the sender if the caller is an operator.
{"title":"Contract Metadata","type":"object","properties":{"name":{"type":"string","description":"The name of the contract."},"description":{"type":"string","description":"The description of the contract."},"image_url":{"type":"string","format":"uri","description":"The URL of the image representing the contract."},"banner_image_url":{"type":"string","format":"uri","description":"The URL of the banner image of the contract."},"external_link":{"type":"string","format":"uri","description":"The external link of the contract."},"editors":{"type":"array","items":{"type":"string","description":"An Ethereum address representing an authorized editor of the contract."},"description":"An array of Ethereum addresses representing editors (authorized editors) of the contract."},"animation_url":{"type":"string","description":"An animation URL for the contract."}},"required":["name"]}
JSON Example (Minimal):
{"name":"Example Contract Name",}
Token URI
MUST replace occurrences of {id} in the returned URI string by the client.
JSON Schema:
{"title":"Asset Metadata","type":"object","properties":{"name":{"type":"string","description":"Identifies the token"},"description":{"type":"string","description":"Describes the token"},"image":{"type":"string","description":"A URI pointing to an image resource."},"animation_url":{"type":"string","description":"An animation URL for the token."}},"required":["name","description","image"]}
While the “operator model” from the ERC-1155 standard allows an account to set another account as an operator, giving full permissions to transfer any amount of any token id on behalf of the owner, this may not always be the desired permission scheme. The “allowance model” from ERC-20 allows an account to set an explicit amount of the token that another account can spend on the owner’s behalf. This standard requires both be implemented, with the only modification being to the “allowance model” where the token id must be specified as well. This allows an account to grant specific approvals to specific token ids, infinite approvals to specific token ids, or infinite approvals to all token ids. If an account is set as an operator, the allowance SHOULD NOT be decreased when tokens are transferred on behalf of the owner.
Removal of Batching
While batching operations is useful, its place should not be in the standard itself, but rather on a case-by-case basis. This allows for different tradeoffs to be made in terms of calldata layout, which may be especially useful for specific applications such as roll-ups that commit calldata to global storage.
Removal of Required Callbacks
Callbacks MAY be used within a multi-token compliant contract, but it is not required. This allows for more gas efficient methods by reducing external calls and additional checks.
Removal of “Safe” Naming
The safeTransfer and safeTransferFrom naming conventions are misleading, especially in the context of the ERC-1155 and ERC-721 standards, as they require external calls to receiver accounts with code, passing the execution flow to an arbitrary contract, provided the receiver contract returns a specific value. The combination of removing mandatory callbacks and removing the word “safe” from all method names improves the safety of the control flow by default.
Backwards Compatibility
This is not backwards compatible with ERC-1155 as some methods are removed. However, wrappers can be implemented for the ERC-20, ERC-721, and ERC-1155 standards.
Reference Implementation
// SPDX-License-Identifier: CC0-1.0
pragmasolidity0.8.19;/// @title ERC6909 Multi-Token Reference Implementation
/// @author jtriley.eth
contractERC6909{/// @dev Thrown when owner balance for id is insufficient.
/// @param owner The address of the owner.
/// @param id The id of the token.
errorInsufficientBalance(addressowner,uint256id);/// @dev Thrown when spender allowance for id is insufficient.
/// @param spender The address of the spender.
/// @param id The id of the token.
errorInsufficientPermission(addressspender,uint256id);/// @notice The event emitted when a transfer occurs.
/// @param sender The address of the sender.
/// @param receiver The address of the receiver.
/// @param id The id of the token.
/// @param amount The amount of the token.
eventTransfer(addresscaller,addressindexedsender,addressindexedreceiver,uint256indexedid,uint256amount);/// @notice The event emitted when an operator is set.
/// @param owner The address of the owner.
/// @param spender The address of the spender.
/// @param approved The approval status.
eventOperatorSet(addressindexedowner,addressindexedspender,boolapproved);/// @notice The event emitted when an approval occurs.
/// @param owner The address of the owner.
/// @param spender The address of the spender.
/// @param id The id of the token.
/// @param amount The amount of the token.
eventApproval(addressindexedowner,addressindexedspender,uint256indexedid,uint256amount);/// @notice Owner balance of an id.
mapping(addressowner=>mapping(uint256id=>uint256amount))publicbalanceOf;/// @notice Spender allowance of an id.
mapping(addressowner=>mapping(addressspender=>mapping(uint256id=>uint256amount)))publicallowance;/// @notice Checks if a spender is approved by an owner as an operator.
mapping(addressowner=>mapping(addressspender=>bool))publicisOperator;/// @notice Transfers an amount of an id from the caller to a receiver.
/// @param receiver The address of the receiver.
/// @param id The id of the token.
/// @param amount The amount of the token.
functiontransfer(addressreceiver,uint256id,uint256amount)publicreturns(bool){if(balanceOf[msg.sender][id]<amount)revertInsufficientBalance(msg.sender,id);balanceOf[msg.sender][id]-=amount;balanceOf[receiver][id]+=amount;emitTransfer(msg.sender,msg.sender,receiver,id,amount);returntrue;}/// @notice Transfers an amount of an id from a sender to a receiver.
/// @param sender The address of the sender.
/// @param receiver The address of the receiver.
/// @param id The id of the token.
/// @param amount The amount of the token.
functiontransferFrom(addresssender,addressreceiver,uint256id,uint256amount)publicreturns(bool){if(sender!=msg.sender&&!isOperator[sender][msg.sender]){uint256senderAllowance=allowance[sender][msg.sender][id];if(senderAllowance<amount)revertInsufficientPermission(msg.sender,id);if(senderAllowance!=type(uint256).max){allowance[sender][msg.sender][id]=senderAllowance-amount;}}if(balanceOf[sender][id]<amount)revertInsufficientBalance(sender,id);balanceOf[sender][id]-=amount;balanceOf[receiver][id]+=amount;emitTransfer(msg.sender,sender,receiver,id,amount);returntrue;}/// @notice Approves an amount of an id to a spender.
/// @param spender The address of the spender.
/// @param id The id of the token.
/// @param amount The amount of the token.
functionapprove(addressspender,uint256id,uint256amount)publicreturns(bool){allowance[msg.sender][spender][id]=amount;emitApproval(msg.sender,spender,id,amount);returntrue;}/// @notice Sets or removes a spender as an operator for the caller.
/// @param spender The address of the spender.
/// @param approved The approval status.
functionsetOperator(addressspender,boolapproved)publicreturns(bool){isOperator[msg.sender][spender]=approved;emitOperatorSet(msg.sender,spender,approved);returntrue;}/// @notice Checks if a contract implements an interface.
/// @param interfaceId The interface identifier, as specified in ERC-165.
/// @return supported True if the contract implements `interfaceId`.
functionsupportsInterface(bytes4interfaceId)publicpurereturns(boolsupported){returninterfaceId==0x0f632fb3||interfaceId==0x01ffc9a7;}function_mint(addressreceiver,uint256id,uint256amount)internal{// WARNING: important safety checks should precede calls to this method.
balanceOf[receiver][id]+=amount;emitTransfer(msg.sender,address(0),receiver,id,amount);}function_burn(addresssender,uint256id,uint256amount)internal{// WARNING: important safety checks should precede calls to this method.
balanceOf[sender][id]-=amount;emitTransfer(msg.sender,sender,address(0),id,amount);}}
Security Considerations
Approvals and Operators
The specification includes two token transfer permission systems, the “allowance” and “operator”
models. There are two security considerations in regards to delegating permission to transfer.
The first consideration is consistent with all delegated permission models. Any account with an allowance may transfer the full allowance for any reason at any time until the allowance is revoked. Any account with operator permissions may transfer any amount of any token id on behalf of the owner until the operator permission is revoked.
The second consideration is unique to systems with both delegated permission models. In accordance with the transferFrom method, spenders with operator permission are not subject to allowance restrictions, spenders with infinite approvals SHOULD NOT have their allowance deducted on delegated transfers, but spenders with non-infinite approvals MUST have their balance deducted on delegated transfers. A spender with both operator permission and a non-infinite approval may introduce functional ambiguity. If the operator permission takes precedence, that is, the allowance is never deducted when a spender has operator permissions, there is no ambiguity. However, in the event the allowance takes precedence over the operator permissions, an additional branch may be necessary to ensure an allowance underflow does not occur. The following is an example of such an issue.
contractERC6909OperatorPrecedence{// -- snip --
functiontransferFrom(addresssender,addressreceiver,uint256id,uint256amount)public{// check if `isOperator` first
if(msg.sender!=sender&&!isOperator[sender][msg.sender]){require(allowance[sender][msg.sender][id]>=amount,"insufficient allowance");allowance[sender][msg.sender][id]-=amount;}// -- snip --
}}contractERC6909AllowancePrecedence{// -- snip --
functiontransferFrom(addresssender,addressreceiver,uint256id,uint256amount)public{// check if allowance is sufficient first
if(msg.sender!=sender&&allowance[sender][msg.sender][id]<amount){require(isOperator[sender][msg.sender],"insufficient allowance");}// ERROR: when allowance is insufficient, this panics due to arithmetic underflow, regardless of
// whether the caller has operator permissions.
allowance[sender][msg.sender][id]-=amount;// -- snip
}}