Skip to content

Commit 0411916

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
Remove unused FundsWithdrawn event from ITokenERC721
1 parent 9f85de4 commit 0411916

File tree

3 files changed

+0
-46
lines changed

3 files changed

+0
-46
lines changed

contracts/interfaces/token/ITokenERC721.sol

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,6 @@ interface ITokenERC721 is IERC721Upgradeable {
4343
MintRequest mintRequest
4444
);
4545

46-
/// @dev Emitted when accrued royalties are withdrawn from the contract.
47-
event FundsWithdrawn(
48-
address indexed paymentReceiver,
49-
address feeRecipient,
50-
uint256 totalAmount,
51-
uint256 feeCollected
52-
);
53-
5446
/**
5547
* @notice Verifies that a mint request is signed by an account holding
5648
* MINTER_ROLE (at the time of the function call).

docs/ITokenERC721.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -302,25 +302,6 @@ event ApprovalForAll(address indexed owner, address indexed operator, bool appro
302302
| operator `indexed` | address | undefined |
303303
| approved | bool | undefined |
304304

305-
### FundsWithdrawn
306-
307-
```solidity
308-
event FundsWithdrawn(address indexed paymentReceiver, address feeRecipient, uint256 totalAmount, uint256 feeCollected)
309-
```
310-
311-
312-
313-
*Emitted when accrued royalties are withdrawn from the contract.*
314-
315-
#### Parameters
316-
317-
| Name | Type | Description |
318-
|---|---|---|
319-
| paymentReceiver `indexed` | address | undefined |
320-
| feeRecipient | address | undefined |
321-
| totalAmount | uint256 | undefined |
322-
| feeCollected | uint256 | undefined |
323-
324305
### TokensMinted
325306

326307
```solidity

docs/TokenERC721.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,25 +1016,6 @@ event DefaultRoyalty(address newRoyaltyRecipient, uint256 newRoyaltyBps)
10161016
| newRoyaltyRecipient | address | undefined |
10171017
| newRoyaltyBps | uint256 | undefined |
10181018

1019-
### FundsWithdrawn
1020-
1021-
```solidity
1022-
event FundsWithdrawn(address indexed paymentReceiver, address feeRecipient, uint256 totalAmount, uint256 feeCollected)
1023-
```
1024-
1025-
1026-
1027-
1028-
1029-
#### Parameters
1030-
1031-
| Name | Type | Description |
1032-
|---|---|---|
1033-
| paymentReceiver `indexed` | address | undefined |
1034-
| feeRecipient | address | undefined |
1035-
| totalAmount | uint256 | undefined |
1036-
| feeCollected | uint256 | undefined |
1037-
10381019
### OwnerUpdated
10391020

10401021
```solidity

0 commit comments

Comments
 (0)