Skip to content

Commit

Permalink
fix : added indexed params in events
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabh Sharma committed Aug 31, 2023
1 parent 5c16fe6 commit 0ceb919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ interface IMultiRoyaltyDistributor is IERC165, IMultiRoyaltyRecipients {
event TokenRoyaltyRemoved(uint256 tokenId);
event DefaultRoyaltyBpsSet(uint16 royaltyBPS);

event DefaultRoyaltyReceiverSet(address recipient);
event DefaultRoyaltyReceiverSet(address indexed recipient);

event RoyaltyRecipientSet(address splitter, address recipient);
event RoyaltyRecipientSet(address indexed splitter, address indexed recipient);

event TokenRoyaltySplitterSet(uint256 tokenId, address splitterAddress);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import {Recipient} from "@manifoldxyz/royalty-registry-solidity/contracts/overri
/// @title IRoyaltyManager
/// @notice interface for RoyaltyManager Contract
interface IRoyaltyManager {
event RecipientSet(address commonRecipient);
event RecipientSet(address indexed commonRecipient);

event SplitSet(uint16 commonSplit);

event RoyaltySet(uint16 royaltyBps, address contractAddress);
event RoyaltySet(uint16 royaltyBps, address indexed contractAddress);

event TrustedForwarderSet(address indexed previousForwarder, address indexed newForwarder);

Expand Down

0 comments on commit 0ceb919

Please sign in to comment.