@exponent-labs/exponent-types 0.9.14 → 0.9.16
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/build/kamino.d.ts +8 -0
- package/package.json +1 -1
- package/src/kamino.ts +8 -0
package/build/kamino.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export interface KaminoSyState {
|
|
|
11
11
|
tokenProgramBase: PublicKey;
|
|
12
12
|
klendProgramId: PublicKey;
|
|
13
13
|
klendMarketId: PublicKey;
|
|
14
|
+
reserveLiquiditySupply?: PublicKey;
|
|
15
|
+
reserveCollateralMint?: PublicKey;
|
|
16
|
+
reserveDestinationDepositCollateral?: PublicKey;
|
|
17
|
+
klendObligationDepositsCount?: number;
|
|
14
18
|
scopePriceFeed?: PublicKey;
|
|
15
19
|
}
|
|
16
20
|
export interface KaminoSyStateJson {
|
|
@@ -22,6 +26,10 @@ export interface KaminoSyStateJson {
|
|
|
22
26
|
tokenProgramBase: string;
|
|
23
27
|
klendProgramId: string;
|
|
24
28
|
klendMarketId: string;
|
|
29
|
+
reserveLiquiditySupply?: string;
|
|
30
|
+
reserveCollateralMint?: string;
|
|
31
|
+
reserveDestinationDepositCollateral?: string;
|
|
32
|
+
klendObligationDepositsCount?: number;
|
|
25
33
|
scopePriceFeed?: string;
|
|
26
34
|
}
|
|
27
35
|
export interface KaminoSyMetaAccount {
|
package/package.json
CHANGED
package/src/kamino.ts
CHANGED
|
@@ -13,6 +13,10 @@ export interface KaminoSyState {
|
|
|
13
13
|
tokenProgramBase: PublicKey
|
|
14
14
|
klendProgramId: PublicKey
|
|
15
15
|
klendMarketId: PublicKey
|
|
16
|
+
reserveLiquiditySupply?: PublicKey
|
|
17
|
+
reserveCollateralMint?: PublicKey
|
|
18
|
+
reserveDestinationDepositCollateral?: PublicKey
|
|
19
|
+
klendObligationDepositsCount?: number
|
|
16
20
|
scopePriceFeed?: PublicKey
|
|
17
21
|
}
|
|
18
22
|
|
|
@@ -25,6 +29,10 @@ export interface KaminoSyStateJson {
|
|
|
25
29
|
tokenProgramBase: string
|
|
26
30
|
klendProgramId: string
|
|
27
31
|
klendMarketId: string
|
|
32
|
+
reserveLiquiditySupply?: string
|
|
33
|
+
reserveCollateralMint?: string
|
|
34
|
+
reserveDestinationDepositCollateral?: string
|
|
35
|
+
klendObligationDepositsCount?: number
|
|
28
36
|
scopePriceFeed?: string
|
|
29
37
|
}
|
|
30
38
|
|