IncreaseAmount

Curve Action Plugin - IncreaseAmount

Description

Deposit additional CRV into an existing lock.

Method

increase_amount(uint256)

Input Parameters

No required input parameters

Method Parameters

Returned Values

No returned values

Example

Example with initParams

const increaseAmount = new Curve.actions.IncreaseAmount({
   chainId: 1,
   initParams: {
     methodParams: {
       value: "...",
     }
   }
})

Example without initParams

const increaseAmount = new Curve.actions.IncreaseAmount({ chainId: 1 })

increaseAmount.input.set({
    methodParams: {
       value: "...",
    }
})

Learn more

Learn more about Curve increase amount function here

Last updated