@gearbox-protocol/sdk 3.0.0-vfour.33 → 3.0.0-vfour.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17584,7 +17584,8 @@ var CreditFacadeContract = class extends BaseContract {
17584
17584
  super(sdk, {
17585
17585
  ...creditFacade.baseParams,
17586
17586
  name: `CreditFacadeV3(${creditManager.name})`,
17587
- abi: creditFacadeV3Abi
17587
+ // Add multicall strictly for parsing, but use only creditFacadeV3Abi in types, so only this part is visible to typescript elsewhere
17588
+ abi: [...creditFacadeV3Abi, ...iCreditFacadeV3MulticallAbi]
17588
17589
  });
17589
17590
  this.state = {
17590
17591
  ...this.contractData,
@@ -17582,7 +17582,8 @@ var CreditFacadeContract = class extends BaseContract {
17582
17582
  super(sdk, {
17583
17583
  ...creditFacade.baseParams,
17584
17584
  name: `CreditFacadeV3(${creditManager.name})`,
17585
- abi: creditFacadeV3Abi
17585
+ // Add multicall strictly for parsing, but use only creditFacadeV3Abi in types, so only this part is visible to typescript elsewhere
17586
+ abi: [...creditFacadeV3Abi, ...iCreditFacadeV3MulticallAbi]
17586
17587
  });
17587
17588
  this.state = {
17588
17589
  ...this.contractData,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.33",
3
+ "version": "3.0.0-vfour.34",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,