- ERC-1155
- multi-token standard
- ERC-20+ERC-721를 동시에 사용할 수 있으며, 주로 P2E에서 많이 사용.
- pros: gas savings
Functions
- setApprovalForAll: 전송하기 전 account에게 권한 부여
- isApprovedForAll: account의 권한 조회
- balanceOf, balanceOfBatch: account가 갖고 있는 token id의 잔액 조회
- safeTransferFrom: from에서 to로 token id의 value만큼 전송
- How can total minted tokens be counted?
- How can total minted tokens per tokenId be counted?
-> openzeppelin: ERC1155Supply
- send to EOA
- send to Smart Contract (e.g., staking, marketplace or game)