@gearbox-protocol/sdk 8.27.7 → 8.27.8

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.
@@ -42,6 +42,7 @@ class CreditSuite extends import_base.SDKConstruct {
42
42
  creditManager;
43
43
  creditFacade;
44
44
  creditConfigurator;
45
+ marketConfigurator;
45
46
  state;
46
47
  constructor(sdk, marketData, index) {
47
48
  super(sdk);
@@ -54,6 +55,7 @@ class CreditSuite extends import_base.SDKConstruct {
54
55
  this.creditManager = (0, import_createCreditManager.default)(sdk, this.state);
55
56
  this.creditFacade = (0, import_createCreditFacade.default)(sdk, this.state);
56
57
  this.creditConfigurator = (0, import_createCreditConfigurator.default)(sdk, this.state);
58
+ this.marketConfigurator = marketData.configurator;
57
59
  }
58
60
  get router() {
59
61
  return this.sdk.routerFor(this);
@@ -9,6 +9,7 @@ class CreditSuite extends SDKConstruct {
9
9
  creditManager;
10
10
  creditFacade;
11
11
  creditConfigurator;
12
+ marketConfigurator;
12
13
  state;
13
14
  constructor(sdk, marketData, index) {
14
15
  super(sdk);
@@ -21,6 +22,7 @@ class CreditSuite extends SDKConstruct {
21
22
  this.creditManager = createCreditManager(sdk, this.state);
22
23
  this.creditFacade = createCreditFacade(sdk, this.state);
23
24
  this.creditConfigurator = createCreditConfigurator(sdk, this.state);
25
+ this.marketConfigurator = marketData.configurator;
24
26
  }
25
27
  get router() {
26
28
  return this.sdk.routerFor(this);
@@ -12,6 +12,7 @@ export declare class CreditSuite extends SDKConstruct {
12
12
  readonly creditManager: ICreditManagerContract;
13
13
  readonly creditFacade: CreditFacadeContract;
14
14
  readonly creditConfigurator: ICreditConfiguratorContract;
15
+ readonly marketConfigurator: Address;
15
16
  readonly state: CreditSuiteState;
16
17
  constructor(sdk: GearboxSDK, marketData: MarketData, index: number);
17
18
  get router(): IRouterContract;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "8.27.7",
3
+ "version": "8.27.8",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.js",