@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.
- package/dist/cjs/sdk/index.cjs +2 -1
- package/dist/esm/sdk/index.mjs +2 -1
- package/package.json +1 -1
package/dist/cjs/sdk/index.cjs
CHANGED
|
@@ -17584,7 +17584,8 @@ var CreditFacadeContract = class extends BaseContract {
|
|
|
17584
17584
|
super(sdk, {
|
|
17585
17585
|
...creditFacade.baseParams,
|
|
17586
17586
|
name: `CreditFacadeV3(${creditManager.name})`,
|
|
17587
|
-
|
|
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,
|
package/dist/esm/sdk/index.mjs
CHANGED
|
@@ -17582,7 +17582,8 @@ var CreditFacadeContract = class extends BaseContract {
|
|
|
17582
17582
|
super(sdk, {
|
|
17583
17583
|
...creditFacade.baseParams,
|
|
17584
17584
|
name: `CreditFacadeV3(${creditManager.name})`,
|
|
17585
|
-
|
|
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,
|