@carrot-protocol/boost-http-client 0.2.1 → 0.2.2-more-math-dev-135409c
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 +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/types.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -129,6 +129,7 @@ class Client {
|
|
|
129
129
|
healthFactorRiskAdjusted: Number(jsonRawResponse.clendAccount.healthFactorRiskAdjusted),
|
|
130
130
|
notionalLeverage: Number(jsonRawResponse.clendAccount.notionalLeverage),
|
|
131
131
|
riskAdjustedLeverage: Number(jsonRawResponse.clendAccount.riskAdjustedLeverage),
|
|
132
|
+
liquidationPrice: Number(jsonRawResponse.clendAccount.liquidationPrice),
|
|
132
133
|
};
|
|
133
134
|
// get events for account
|
|
134
135
|
const events = [];
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED