Skip to content

Commit 312a7b6

Browse files
authored
Burn functions - ERC1155Drop base contract (#290)
* add burn functions to ERC1155Drop base contract * v3.2.8
1 parent 8a7c67f commit 312a7b6

File tree

4 files changed

+86
-2
lines changed

4 files changed

+86
-2
lines changed

contracts/base/ERC1155Drop.sol

+48
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,54 @@ contract ERC1155Drop is
9292
interfaceId == type(IERC2981).interfaceId; // ERC165 ID for ERC2981
9393
}
9494

95+
/*//////////////////////////////////////////////////////////////
96+
Minting/burning logic
97+
//////////////////////////////////////////////////////////////*/
98+
99+
/**
100+
* @notice Lets an owner or approved operator burn NFTs of the given tokenId.
101+
*
102+
* @param _owner The owner of the NFT to burn.
103+
* @param _tokenId The tokenId of the NFT to burn.
104+
* @param _amount The amount of the NFT to burn.
105+
*/
106+
function burn(
107+
address _owner,
108+
uint256 _tokenId,
109+
uint256 _amount
110+
) external virtual {
111+
address caller = msg.sender;
112+
113+
require(caller == _owner || isApprovedForAll[_owner][caller], "Unapproved caller");
114+
require(balanceOf[_owner][_tokenId] >= _amount, "Not enough tokens owned");
115+
116+
_burn(_owner, _tokenId, _amount);
117+
}
118+
119+
/**
120+
* @notice Lets an owner or approved operator burn NFTs of the given tokenIds.
121+
*
122+
* @param _owner The owner of the NFTs to burn.
123+
* @param _tokenIds The tokenIds of the NFTs to burn.
124+
* @param _amounts The amounts of the NFTs to burn.
125+
*/
126+
function burnBatch(
127+
address _owner,
128+
uint256[] memory _tokenIds,
129+
uint256[] memory _amounts
130+
) external virtual {
131+
address caller = msg.sender;
132+
133+
require(caller == _owner || isApprovedForAll[_owner][caller], "Unapproved caller");
134+
require(_tokenIds.length == _amounts.length, "Length mismatch");
135+
136+
for (uint256 i = 0; i < _tokenIds.length; i += 1) {
137+
require(balanceOf[_owner][_tokenIds[i]] >= _amounts[i], "Not enough tokens owned");
138+
}
139+
140+
_burnBatch(_owner, _tokenIds, _amounts);
141+
}
142+
95143
/*///////////////////////////////////////////////////////////////
96144
Overriden metadata logic
97145
//////////////////////////////////////////////////////////////*/

contracts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thirdweb-dev/contracts",
33
"description": "Collection of smart contracts deployable via the thirdweb SDK, dashboard and CLI",
4-
"version": "3.2.8-0",
4+
"version": "3.2.8",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",

docs/ERC1155Drop.md

+36
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,42 @@ function balanceOfBatch(address[] accounts, uint256[] ids) external view returns
5656
|---|---|---|
5757
| _0 | uint256[] | undefined |
5858

59+
### burn
60+
61+
```solidity
62+
function burn(address _owner, uint256 _tokenId, uint256 _amount) external nonpayable
63+
```
64+
65+
Lets an owner or approved operator burn NFTs of the given tokenId.
66+
67+
68+
69+
#### Parameters
70+
71+
| Name | Type | Description |
72+
|---|---|---|
73+
| _owner | address | The owner of the NFT to burn. |
74+
| _tokenId | uint256 | The tokenId of the NFT to burn. |
75+
| _amount | uint256 | The amount of the NFT to burn. |
76+
77+
### burnBatch
78+
79+
```solidity
80+
function burnBatch(address _owner, uint256[] _tokenIds, uint256[] _amounts) external nonpayable
81+
```
82+
83+
Lets an owner or approved operator burn NFTs of the given tokenIds.
84+
85+
86+
87+
#### Parameters
88+
89+
| Name | Type | Description |
90+
|---|---|---|
91+
| _owner | address | The owner of the NFTs to burn. |
92+
| _tokenIds | uint256[] | The tokenIds of the NFTs to burn. |
93+
| _amounts | uint256[] | The amounts of the NFTs to burn. |
94+
5995
### claim
6096

6197
```solidity

lib/forge-std

0 commit comments

Comments
 (0)