Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/interfaces/IBullaFrendLend.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ interface IBullaFrendLend {
//////////////////////////////////////////////////////////////*/

event LoanOffered(
uint256 indexed loanId, address indexed offeredBy, LoanRequestParams loanOffer, ClaimMetadata metadata
uint256 indexed offerId, address indexed offeredBy, LoanRequestParams loanOffer, ClaimMetadata metadata
);
event LoanOfferAccepted(uint256 indexed loanId, uint256 indexed claimId, uint256 fee, ClaimMetadata metadata);
event LoanOfferRejected(uint256 indexed loanId, address indexed rejectedBy);
event LoanOfferAccepted(uint256 indexed offerId, uint256 indexed claimId, uint256 fee, ClaimMetadata metadata);
event LoanOfferRejected(uint256 indexed offerId, address indexed rejectedBy);
/// @notice grossInterestPaid = interest received by creditor + protocolFee
event LoanPayment(uint256 indexed claimId, uint256 grossInterestPaid, uint256 principalPaid, uint256 protocolFee);
event ProtocolFeeUpdated(uint16 oldFee, uint16 newFee);
Expand Down