@carrot-protocol/boost-http-client 0.2.15-group-refactor1-dev-54bdd58 → 0.2.15-group-refactor1-dev-fcc481c
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/index.js +0 -2
- package/dist/types.d.ts +0 -2
- package/package.json +1 -1
- package/src/index.ts +0 -2
- package/src/types.ts +0 -2
package/dist/index.js
CHANGED
|
@@ -133,12 +133,10 @@ class Client {
|
|
|
133
133
|
assetBalance: new anchor_1.BN(b.assetBalance, "hex"),
|
|
134
134
|
assetBalanceUi: Number(b.assetBalanceUi),
|
|
135
135
|
assetValue: Number(b.assetValue),
|
|
136
|
-
assetYieldBps: Number(b.assetYieldBps),
|
|
137
136
|
assetYieldApy: Number(b.assetYieldApy),
|
|
138
137
|
liabilityBalance: new anchor_1.BN(b.liabilityBalance, "hex"),
|
|
139
138
|
liabilityBalanceUi: Number(b.liabilityBalanceUi),
|
|
140
139
|
liabilityValue: Number(b.liabilityValue),
|
|
141
|
-
liabilityBorrowCostBps: Number(b.liabilityBorrowCostBps),
|
|
142
140
|
liabilityBorrowCostApy: Number(b.liabilityBorrowCostApy),
|
|
143
141
|
price: Number(b.price),
|
|
144
142
|
liquidation,
|
package/dist/types.d.ts
CHANGED
|
@@ -117,12 +117,10 @@ export interface ClendAccountBalance {
|
|
|
117
117
|
assetBalance: BN;
|
|
118
118
|
assetBalanceUi: number;
|
|
119
119
|
assetValue: number;
|
|
120
|
-
assetYieldBps: number;
|
|
121
120
|
assetYieldApy: number;
|
|
122
121
|
liabilityBalance: BN;
|
|
123
122
|
liabilityBalanceUi: number;
|
|
124
123
|
liabilityValue: number;
|
|
125
|
-
liabilityBorrowCostBps: number;
|
|
126
124
|
liabilityBorrowCostApy: number;
|
|
127
125
|
price: number;
|
|
128
126
|
liquidation: ClendAccountAssetLiquidation | null;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -154,12 +154,10 @@ export class Client {
|
|
|
154
154
|
assetBalance: new BN(b.assetBalance, "hex"),
|
|
155
155
|
assetBalanceUi: Number(b.assetBalanceUi),
|
|
156
156
|
assetValue: Number(b.assetValue),
|
|
157
|
-
assetYieldBps: Number(b.assetYieldBps),
|
|
158
157
|
assetYieldApy: Number(b.assetYieldApy),
|
|
159
158
|
liabilityBalance: new BN(b.liabilityBalance, "hex"),
|
|
160
159
|
liabilityBalanceUi: Number(b.liabilityBalanceUi),
|
|
161
160
|
liabilityValue: Number(b.liabilityValue),
|
|
162
|
-
liabilityBorrowCostBps: Number(b.liabilityBorrowCostBps),
|
|
163
161
|
liabilityBorrowCostApy: Number(b.liabilityBorrowCostApy),
|
|
164
162
|
price: Number(b.price),
|
|
165
163
|
liquidation,
|
package/src/types.ts
CHANGED
|
@@ -134,12 +134,10 @@ export interface ClendAccountBalance {
|
|
|
134
134
|
assetBalance: BN;
|
|
135
135
|
assetBalanceUi: number;
|
|
136
136
|
assetValue: number;
|
|
137
|
-
assetYieldBps: number;
|
|
138
137
|
assetYieldApy: number;
|
|
139
138
|
liabilityBalance: BN;
|
|
140
139
|
liabilityBalanceUi: number;
|
|
141
140
|
liabilityValue: number;
|
|
142
|
-
liabilityBorrowCostBps: number;
|
|
143
141
|
liabilityBorrowCostApy: number;
|
|
144
142
|
price: number;
|
|
145
143
|
liquidation: ClendAccountAssetLiquidation | null;
|