For the complete documentation index, see llms.txt. This page is also available as Markdown.

CompV3Allow

Description

Allow or disallow manager for Compound V3. Manager will be able to perform actions on behalf of the user.

Action ID

0xf2bccef8

SDK Action

const compoundV3AllowAction = new dfs.actions.compoundV3.CompoundV3AllowAction(
    market,
    manager,
    isAllowed
);

Action Type

STANDARD_ACTION

Input Parameters

    /// @param market Main Comet proxy contract that is different for each compound market
    /// @param manager Address of the manager
    /// @param isAllowed True for allow, false for disallow
    struct Params {
        address market;
        address manager;
        bool isAllowed;
    }

Return Value

Events and Logs

Last updated