From 01ea7bef74a334a057a6475845cece48fba880be Mon Sep 17 00:00:00 2001 From: fedorovdg Date: Sat, 3 Aug 2024 19:27:38 +0400 Subject: [PATCH 1/2] fix: fixed GaugePool --- src/pools/gaugePool.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pools/gaugePool.ts b/src/pools/gaugePool.ts index b04ab6b5..14d22e3b 100644 --- a/src/pools/gaugePool.ts +++ b/src/pools/gaugePool.ts @@ -31,9 +31,9 @@ export class GaugePool implements IGaugePool { this.address = address; this.poolName = poolName; this.estimateGas = { - addReward: this.addRewardEstimateGas, - depositRewardApprove: this.depositRewardApproveEstimateGas, - depositReward: this.depositRewardEstimateGas, + addReward: this.addRewardEstimateGas.bind(this), + depositRewardApprove: this.depositRewardApproveEstimateGas.bind(this), + depositReward: this.depositRewardEstimateGas.bind(this), } } From bf272111b3ef638e46e4740ed1ab9b19fe110865 Mon Sep 17 00:00:00 2001 From: fedorovdg Date: Sat, 3 Aug 2024 19:32:43 +0400 Subject: [PATCH 2/2] build: v2.61.11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c2633c78..46691618 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@curvefi/api", - "version": "2.61.10", + "version": "2.61.11", "description": "JavaScript library for curve.fi", "main": "lib/index.js", "author": "Macket",