Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

fix #454

Merged
merged 1 commit into from
Sep 27, 2024
Merged

fix #454

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bindings/src/query_resp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ pub struct PerpetualParamsRaw {
pub leverage_max: Option<Decimal>,
pub borrow_interest_rate_max: Option<Decimal>,
pub borrow_interest_rate_min: Option<Decimal>,
pub min_borrow_interest_amount: Option<Uint128>,
pub min_borrow_interest_amount: Option<Int128>,
pub borrow_interest_rate_increase: Option<Decimal>,
pub borrow_interest_rate_decrease: Option<Decimal>,
pub health_gain_factor: Option<Decimal>,
Expand All @@ -698,7 +698,7 @@ pub struct PerpetualParamsRaw {
pub take_profit_borrow_interest_rate_min: Option<Decimal>,
pub funding_fee_base_rate: Option<Decimal>,
pub funding_fee_max_rate: Option<Decimal>,
pub funding_fee_min_rate: Option<Decimal>,
pub funding_fee_min_rate: Option<String>,
pub funding_fee_collection_address: Option<String>,
pub swap_fee: Option<Decimal>,
pub max_limit_order: Option<i64>,
Expand All @@ -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,
Expand All @@ -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,
Expand Down
Loading