AaveClaimAave

Description

Action to claim AAVE rewards from stkAave token

Notes

Claims AAVE reward from stkAave token

Action ID

0x22ed53c6

SDK Action

const aaveClaimAAVEAction = new dfs.actions.aave.AaveClaimAAVEAction(
    amount,
    to
);

Action Type

STANDARD_ACTION

Input Parameters

    /// @param amount Amount of AAVE token to claim (uintMax is supported)
    /// @param to Address that will be receiving the rewards
    struct Params {
        uint256 amount;
        address to;
    }

Return Value

return bytes32(claimedAmount);

Events and Logs

emit ActionEvent("AaveClaimAAVE", logData);
logger.logActionDirectEvent("AaveClaimAAVE", logData);
bytes memory logData = abi.encode(params);

Last updated

Was this helpful?