Skip to content

Commit

Permalink
Add platformfee event. Remove not needed files
Browse files Browse the repository at this point in the history
  • Loading branch information
hexlivelive committed Jan 7, 2024
1 parent 226d8dd commit 4e88343
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3,031 deletions.
Expand Up @@ -49,6 +49,7 @@ contract MintraDirectListings is IDirectListings, Multicall, ReentrancyGuard {
);

event RoyaltyUpdated(address assetContract, uint256 royaltyAmount, address royaltyRecipient);
event PlatformFeeUpdated(uint256 platformFeeBps);

address public immutable wizard;
address private immutable mintTokenAddress;
Expand Down Expand Up @@ -679,5 +680,7 @@ contract MintraDirectListings is IDirectListings, Multicall, ReentrancyGuard {
require(_platformFeeBps <= 369, "Fee not in range");

platformFeeBps = _platformFeeBps;

emit PlatformFeeUpdated(_platformFeeBps);
}
}

0 comments on commit 4e88343

Please sign in to comment.