UniswapClaim
Last updated
/// @param index Index of the claim in the merkle tree
/// @param to Address where to send the claimed UNI
/// @param amount Amount of UNI allocated to the smart wallet in the merkle tree
/// @param merkleProof Merkle proof of the claim
struct Params {
uint256 index;
address to;
uint256 amount;
bytes32[] merkleProof;
}return bytes32(claimedAmount);emit ActionEvent("UniswapClaim", logData);
logger.logActionDirectEvent("UniswapClaim", logData);
bytes memory logData = abi.encode(params);