@bulletxyz/bullet-sdk 0.25.4-rc.2 → 0.25.4-rc.3
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/browser/index.js +33 -11
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.js +33 -11
- package/dist/node/index.js.map +2 -2
- package/package.json +1 -1
package/dist/node/index.js
CHANGED
|
@@ -9589,17 +9589,39 @@ var Client = class _Client {
|
|
|
9589
9589
|
init_borrow_lend_market: {
|
|
9590
9590
|
args: {
|
|
9591
9591
|
asset_id: asset,
|
|
9592
|
-
optimal_utilisation_rate:
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9592
|
+
optimal_utilisation_rate: BulletWasm.convert_rust_decimal_to_json(
|
|
9593
|
+
optimalUtilisationRate.toFixed()
|
|
9594
|
+
),
|
|
9595
|
+
min_borrow_rate: BulletWasm.convert_rust_decimal_to_json(
|
|
9596
|
+
minBorrowRate.toFixed()
|
|
9597
|
+
),
|
|
9598
|
+
max_borrow_rate: BulletWasm.convert_rust_decimal_to_json(
|
|
9599
|
+
maxBorrowRate.toFixed()
|
|
9600
|
+
),
|
|
9601
|
+
optimal_borrow_rate: BulletWasm.convert_rust_decimal_to_json(
|
|
9602
|
+
optimalBorrowRate.toFixed()
|
|
9603
|
+
),
|
|
9604
|
+
asset_weight: BulletWasm.convert_rust_decimal_to_json(
|
|
9605
|
+
assetWeight.toFixed()
|
|
9606
|
+
),
|
|
9607
|
+
initial_liability_weight: BulletWasm.convert_rust_decimal_to_json(
|
|
9608
|
+
initialLiabilityWeight.toFixed()
|
|
9609
|
+
),
|
|
9610
|
+
maintenance_liability_weight: BulletWasm.convert_rust_decimal_to_json(
|
|
9611
|
+
maintenanceLiabilityWeight.toFixed()
|
|
9612
|
+
),
|
|
9613
|
+
deposit_limit: BulletWasm.convert_rust_decimal_to_json(
|
|
9614
|
+
depositLimit.toFixed()
|
|
9615
|
+
),
|
|
9616
|
+
borrow_limit: BulletWasm.convert_rust_decimal_to_json(
|
|
9617
|
+
borrowLimit.toFixed()
|
|
9618
|
+
),
|
|
9619
|
+
liquidation_reward_ratio: BulletWasm.convert_rust_decimal_to_json(
|
|
9620
|
+
liquidationRewardRatio.toFixed()
|
|
9621
|
+
),
|
|
9622
|
+
liability_liquidation_limit_ratio: BulletWasm.convert_rust_decimal_to_json(
|
|
9623
|
+
liabilityLiquidationLimitRatio.toFixed()
|
|
9624
|
+
)
|
|
9603
9625
|
}
|
|
9604
9626
|
}
|
|
9605
9627
|
}
|