dsa-connectors-2.0/contracts/mainnet/connectors/merkleDistributor/events.sol
2024-05-20 20:07:08 +05:30

21 lines
434 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
contract Events {
event LogClaim(
uint256 cumulativeAmount,
address fToken,
uint256 cycle,
bytes32[] merkleProof,
uint256 getId
);
event LogClaimOnBehalf(
address recipient_,
uint256 cumulativeAmount,
address fToken,
uint256 cycle,
bytes32[] merkleProof,
uint256 getId
);
}