Skip to content

Commit

Permalink
Remove unused FundsWithdrawn event from ITokenERC721
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishang Nadgauda authored and Krishang Nadgauda committed Apr 29, 2022
1 parent 9f85de4 commit 0411916
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 46 deletions.
8 changes: 0 additions & 8 deletions contracts/interfaces/token/ITokenERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ interface ITokenERC721 is IERC721Upgradeable {
MintRequest mintRequest
);

/// @dev Emitted when accrued royalties are withdrawn from the contract.
event FundsWithdrawn(
address indexed paymentReceiver,
address feeRecipient,
uint256 totalAmount,
uint256 feeCollected
);

/**
* @notice Verifies that a mint request is signed by an account holding
* MINTER_ROLE (at the time of the function call).
Expand Down
19 changes: 0 additions & 19 deletions docs/ITokenERC721.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,25 +302,6 @@ event ApprovalForAll(address indexed owner, address indexed operator, bool appro
| operator `indexed` | address | undefined |
| approved | bool | undefined |

### FundsWithdrawn

```solidity
event FundsWithdrawn(address indexed paymentReceiver, address feeRecipient, uint256 totalAmount, uint256 feeCollected)
```



*Emitted when accrued royalties are withdrawn from the contract.*

#### Parameters

| Name | Type | Description |
|---|---|---|
| paymentReceiver `indexed` | address | undefined |
| feeRecipient | address | undefined |
| totalAmount | uint256 | undefined |
| feeCollected | uint256 | undefined |

### TokensMinted

```solidity
Expand Down
19 changes: 0 additions & 19 deletions docs/TokenERC721.md
Original file line number Diff line number Diff line change
Expand Up @@ -1016,25 +1016,6 @@ event DefaultRoyalty(address newRoyaltyRecipient, uint256 newRoyaltyBps)
| newRoyaltyRecipient | address | undefined |
| newRoyaltyBps | uint256 | undefined |

### FundsWithdrawn

```solidity
event FundsWithdrawn(address indexed paymentReceiver, address feeRecipient, uint256 totalAmount, uint256 feeCollected)
```





#### Parameters

| Name | Type | Description |
|---|---|---|
| paymentReceiver `indexed` | address | undefined |
| feeRecipient | address | undefined |
| totalAmount | uint256 | undefined |
| feeCollected | uint256 | undefined |

### OwnerUpdated

```solidity
Expand Down

0 comments on commit 0411916

Please sign in to comment.