@gearbox-protocol/sdk 12.6.7 → 12.6.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.
|
@@ -74,6 +74,7 @@ class CreditSuite extends import_base.SDKConstruct {
|
|
|
74
74
|
}
|
|
75
75
|
stateHuman(raw = true) {
|
|
76
76
|
return {
|
|
77
|
+
isExpired: this.isExpired,
|
|
77
78
|
creditFacade: this.creditFacade.stateHuman(raw),
|
|
78
79
|
creditManager: this.creditManager.stateHuman(raw),
|
|
79
80
|
creditConfigurator: this.creditConfigurator.stateHuman(raw)
|
|
@@ -41,6 +41,7 @@ class CreditSuite extends SDKConstruct {
|
|
|
41
41
|
}
|
|
42
42
|
stateHuman(raw = true) {
|
|
43
43
|
return {
|
|
44
|
+
isExpired: this.isExpired,
|
|
44
45
|
creditFacade: this.creditFacade.stateHuman(raw),
|
|
45
46
|
creditManager: this.creditManager.stateHuman(raw),
|
|
46
47
|
creditConfigurator: this.creditConfigurator.stateHuman(raw)
|
|
@@ -100,6 +100,7 @@ export interface CreditManagerStateHuman extends BaseContractStateHuman {
|
|
|
100
100
|
}
|
|
101
101
|
export type CreditConfiguratorStateHuman = BaseContractStateHuman;
|
|
102
102
|
export interface CreditSuiteStateHuman {
|
|
103
|
+
isExpired: boolean;
|
|
103
104
|
creditFacade: CreditFacadeStateHuman;
|
|
104
105
|
creditManager: CreditManagerStateHuman;
|
|
105
106
|
creditConfigurator: CreditConfiguratorStateHuman;
|