From cca246aa3ee94c43c7c436f78ddc6d636aaf8194 Mon Sep 17 00:00:00 2001 From: cryptokage <26vivek06@gmail.com> Date: Fri, 27 Sep 2024 22:33:16 +0530 Subject: [PATCH] fix (#454) --- bindings/src/query_resp.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/src/query_resp.rs b/bindings/src/query_resp.rs index 1caeffff..08a04a03 100644 --- a/bindings/src/query_resp.rs +++ b/bindings/src/query_resp.rs @@ -680,7 +680,7 @@ pub struct PerpetualParamsRaw { pub leverage_max: Option, pub borrow_interest_rate_max: Option, pub borrow_interest_rate_min: Option, - pub min_borrow_interest_amount: Option, + pub min_borrow_interest_amount: Option, pub borrow_interest_rate_increase: Option, pub borrow_interest_rate_decrease: Option, pub health_gain_factor: Option, @@ -698,7 +698,7 @@ pub struct PerpetualParamsRaw { pub take_profit_borrow_interest_rate_min: Option, pub funding_fee_base_rate: Option, pub funding_fee_max_rate: Option, - pub funding_fee_min_rate: Option, + pub funding_fee_min_rate: Option, pub funding_fee_collection_address: Option, pub swap_fee: Option, pub max_limit_order: Option, @@ -709,7 +709,7 @@ pub struct PerpetualParams { pub leverage_max: Decimal, pub borrow_interest_rate_max: Decimal, pub borrow_interest_rate_min: Decimal, - pub min_borrow_interest_amount: Uint128, + pub min_borrow_interest_amount: Int128, pub borrow_interest_rate_increase: Decimal, pub borrow_interest_rate_decrease: Decimal, pub health_gain_factor: Decimal, @@ -727,7 +727,7 @@ pub struct PerpetualParams { pub take_profit_borrow_interest_rate_min: Decimal, pub funding_fee_base_rate: Decimal, pub funding_fee_max_rate: Decimal, - pub funding_fee_min_rate: Decimal, + pub funding_fee_min_rate: String, pub funding_fee_collection_address: String, pub swap_fee: Decimal, pub max_limit_order: i64,