Action that withdraws LP tokens from a Liquidity Gauge.
Action ID
0x8240bdb7
SDK Action
const curveGaugeWithdrawAction = new dfs.actions.curve.CurveGaugeWithdrawAction(
gaugeAddr,
lpToken,
receiver,
amount
);
Action Type
STANDARD_ACTION
Input Parameters
/// @param gaugeAddr Address of the gauge to withdraw from
/// @param lpToken Address of the LP token to withdraw
/// @param receiver Address that will receive the withdrawn tokens
/// @param amount Amount of LP tokens to withdraw
struct Params {
address gaugeAddr;
address lpToken;
address receiver;
uint256 amount;
}