RemoveTokenApproval

Description

Helper action to remove token approval given to a spender

Notes

Remove approval for spender to pull tokens from user wallet

Action ID

0x64514212

SDK Action

const removeTokenApprovalAction = new dfs.actions.basic.RemoveTokenApprovalAction(
    token,
    spender
);

Action Type

STANDARD_ACTION

Input Parameters

    /// @param tokenAddr Address of the token to remove approval from
    /// @param spender Address of the spender
    struct Params {
        address tokenAddr;
        address spender;
    }

Return Value

Events and Logs

Last updated

Was this helpful?