Submitted on Oct 12th 2024 at 17:50:20 UTC by @SeveritySquad for IOP | Swaylend
Report Type: Smart Contract
Target: https://github.com/Swaylend/swaylend-monorepo/blob/9132747331188b86dd8cbf9a1ca37b811d08dddb/contracts/market/src/main.sw
Impacts:
Temporary (1 hr) freezing of funds
Griefing (e.g. no profit motive for an attacker, but damage to the users or the protocol)
Description
Brief/Intro
On the line to get the scale which is later used to calculate the value of assets, in ` collateral_value_to_sell()` & `available_to_borrow()`, the operation to subtract the base decimal from the collateral decimal will cause the entire function to revert if the base decimal is greater than the collateral decimal, this will likely occur in markets where the some of the collaterals have lesser decimals than the base token of the market.
Vulnerability Details
using ` collateral_value_to_sell()` as an instance:
https://github.com/Swaylend/swaylend-monorepo/blob/9132747331188b86dd8cbf9a1ca37b811d08dddb/contracts/market/src/main.sw#L882C3-L888C11 ```rust let scale = u256::from(10_u64).pow( collateral_configuration .decimals - storage .market_configuration .read() .base_token_decimals, ); ``` Supposing the base decimal is greater than the collateral, this will lead to a steady revert for such collateral (In sway overflow and underflow will lead to a revert for safety).
using `available_to_borrow()` as an instance :
https://github.com/Swaylend/swaylend-monorepo/blob/9132747331188b86dd8cbf9a1ca37b811d08dddb/contracts/market/src/main.sw#L707C1-L712C24
```rust let scale = u256::from(10_u64).pow( collateral_configuration.decimals + price_exponent - market_configuration.base_token_decimals, );
Copy borrow_limit += amount * price / scale; // decimals: base_token_decimals
index += 1;
```
This will lead to a wrong `borrow_limit` being calculated. eg.
if the base decimal is 8.
and the collateral decimal is 6.
due to the `price_exponet` the subtraction might not revert here but
the scale generated will be far large than supposed causing the `borrow_limit` to be lesser than supposed, causing a wrong amount to be used.
Impact Details
The functions are not used internally but are used by outside actors to calculate their borrows and collateral to sell for liquidators, liquidations require speed to gain profit and prevent a bad debt if time is wasted the opportunity will be taken by another liquidator and gas fees will be wasted for bots due to the revert when calculating the collateral to sell via the API, and in worst scenarios if quick liquidations are needed to avoid the market from entering a bad debt the revert will waste time causing the market to enter bad debt.
Mitigation
use an if-else block checking which is greater in order to get the right scale for the amount of value calculated and in case if where the scale is `0` there is no division needed.
Proof of Concept
Proof of Concept
To test this simply. make a simple change to the `tokens.json` file making the value of ETH less than the value of `USDC's` decimal(in the context of the tests it is the base token)
https://github.com/Swaylend/swaylend-monorepo/blob/9132747331188b86dd8cbf9a1ca37b811d08dddb/contracts/market/tests/tokens.json#L19 ```diff
Copy "decimals": 9,
You can see that `liquidation::absorb_and_liquidate` will always fail via this reason. ```bash local_tests::scenarios::liquidation::absorb_and_liquidate' panicked at contracts/market/tests/local_tests/scenarios/liquidation.rs:232:10: called `Result::unwrap()` on an `Err` value: transaction reverted: ArithmeticOverflow, ```
This is just an example scenario to show that the way the scale is calculated can lead to issues. ```rust use crate::utils::{print_case_title, setup, TestData}; use chrono::Utc; use fuels::{ accounts::ViewOnlyAccount, programs::{ calls::{CallHandler, CallParameters}, responses::CallResponse, }, types::{transaction::TxPolicies, transaction_builders::VariableOutputPolicy}, }; use market::PriceDataUpdate; use market_sdk::{ convert_i256_to_i128, convert_i256_to_u64, convert_u256_to_u128, format_units_u128, is_i256_negative, parse_units, };
const AMOUNT_COEFFICIENT: u64 = 10u64.pow(0); const SCALE_6: f64 = 10u64.pow(6) as f64; const SCALE_9: f64 = 10u64.pow(9) as f64;
#[tokio::test] async fn absorb_and_liquidate() { let TestData { wallets, alice, alice_account, bob, bob_account, chad, market, assets, usdc, eth, oracle, price_feed_ids, publish_time, prices, usdc_contract, .. } = setup(None).await;
Copy let price_data_update = PriceDataUpdate {
update_fee: 0,
price_feed_ids,
publish_times: vec![publish_time; assets.len()],
update_data: oracle.create_update_data(&prices).await.unwrap(),
};
// =================================================
// ==================== Step #0 ====================
// š Wallet: Alice š§
// š¤ Call: supply_base
// š° Amount: 3000.00 USDC
let alice_supply_amount = parse_units(3000 * AMOUNT_COEFFICIENT, usdc.decimals);
let alice_mint_amount = parse_units(4000 * AMOUNT_COEFFICIENT, usdc.decimals);
let alice_supply_log_amount = format!("{} USDC", alice_supply_amount as f64 / SCALE_6);
print_case_title(0, "Alice", "supply_base", alice_supply_log_amount.as_str());
println!("šø Alice + {alice_supply_log_amount}");
usdc_contract
.mint(alice_account, alice_mint_amount)
.await
.unwrap();
let balance = alice.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == alice_mint_amount);
let alice_supply_res = market
.with_account(&alice)
.await
.unwrap()
.supply_base(usdc.asset_id, alice_supply_amount)
.await;
assert!(alice_supply_res.is_ok());
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #1 ====================
// š Wallet: Bob š§
// š¤ Call: supply_collateral
// š° Amount: 1.00 ETH
let bob_supply_amount = parse_units(1 * AMOUNT_COEFFICIENT, eth.decimals);
let bob_supply_res = market
.with_account(&bob)
.await
.unwrap()
.supply_collateral(eth.asset_id, bob_supply_amount)
.await;
assert!(bob_supply_res.is_ok());
let bob_user_collateral = market
.get_user_collateral(bob_account, eth.asset_id)
.await
.unwrap()
.value;
assert!(bob_user_collateral == bob_supply_amount);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #2 ====================
// š Wallet: Bob š§
// š¤ Call: withdraw_base
// š° Amount: <MAX HE CAN BORROW>
let max_borrow_amount = market
.available_to_borrow(&[&oracle.instance], bob_account)
.await
.unwrap();
let log_amount = format!("{} USDC", max_borrow_amount as f64 / SCALE_6);
print_case_title(2, "Bob", "withdraw_base", &log_amount.as_str());
let bob_borrow_res = market
.with_account(&bob)
.await
.unwrap()
.withdraw_base(
&[&oracle.instance],
max_borrow_amount.try_into().unwrap(),
&price_data_update,
)
.await;
assert!(bob_borrow_res.is_ok());
let balance = bob.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == max_borrow_amount as u64);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #3 ====================
// š Wallet: Admin šæ
// š¤ Drop of ETH price
// š° Amount: -50%
print_case_title(3, "Admin", "Drop of ETH price", "-50%");
let res = oracle.price(eth.price_feed_id).await.unwrap().value;
let new_price = (res.price as f64 * 0.5) as u64;
let prices = Vec::from([(
eth.price_feed_id,
(
new_price,
eth.price_feed_decimals,
res.publish_time,
res.confidence,
),
)]);
oracle.update_prices(&prices).await.unwrap();
let price_data_update = PriceDataUpdate {
update_fee: 0,
price_feed_ids: vec![eth.price_feed_id],
publish_times: vec![tai64::Tai64::from_unix(Utc::now().timestamp().try_into().unwrap()).0],
update_data: oracle.create_update_data(&prices).await.unwrap(),
};
println!(
"š» ETH price drops: ${} -> ${}",
res.price as f64 / 10_u64.pow(eth.price_feed_decimals) as f64,
new_price as f64 / 10_u64.pow(eth.price_feed_decimals) as f64
);
let res = oracle.price(eth.price_feed_id).await.unwrap().value;
assert!(new_price == res.price);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #4 ====================
// š Wallet: Chad š§
// š¤ Call: absorb
// š„ Target: Bob
print_case_title(4, "Chad", "absorb", "Bob");
assert!(
market
.is_liquidatable(&[&oracle.instance], bob_account)
.await
.unwrap()
.value
);
let chad_absorb_bob_res = market
.with_account(&chad)
.await
.unwrap()
.absorb(&[&oracle.instance], vec![bob_account], &price_data_update)
.await;
assert!(chad_absorb_bob_res.is_ok());
// Check if absorb was ok
let (_, borrow) = market.get_user_supply_borrow(bob_account).await.unwrap();
assert!(borrow == 0);
let amount = market
.get_user_collateral(bob_account, eth.asset_id)
.await
.unwrap()
.value;
assert!(amount == 0);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #5 ====================
// š Wallet: Alice š§
// š¤ Call: buy_collateral
// š° Amount: <MAX HE CAN BUY>
let reserves = market
.with_account(&alice)
.await
.unwrap()
.get_collateral_reserves(eth.asset_id)
.await
.unwrap()
.value;
assert!(!is_i256_negative(&reserves));
let amount = market
.collateral_value_to_sell(
&[&oracle.instance],
eth.asset_id,
convert_i256_to_u64(&reserves),
)
.await
.unwrap()
.value;
let log_amount = format!("{} USDC", amount as f64 / SCALE_6);
print_case_title(5, "Alice", "buy_collateral", log_amount.as_str());
// Prepare calls for multi_call_handler
let tx_policies = TxPolicies::default().with_script_gas_limit(1_000_000);
// Params for update_price_feeds_if_necessary
let call_params_update_price =
CallParameters::default().with_amount(price_data_update.update_fee);
// Update price feeds if necessary
let update_balance_call = market
.instance
.methods()
.update_price_feeds_if_necessary(price_data_update.clone())
.with_contracts(&[&oracle.instance])
.with_tx_policies(tx_policies)
.call_params(call_params_update_price)
.unwrap();
// Params for buy_collateral
let call_params_base_asset = CallParameters::default()
.with_amount(amount as u64)
.with_asset_id(usdc.asset_id);
// Buy collateral with base asset
usdc_contract
.mint(alice_account, amount.try_into().unwrap())
.await
.unwrap();
let buy_collateral_call = market
.instance
.methods()
.buy_collateral(eth.asset_id, 1u64.into(), alice_account)
.with_contracts(&[&oracle.instance])
.with_tx_policies(tx_policies)
.call_params(call_params_base_asset)
.unwrap();
let mutli_call_handler = CallHandler::new_multi_call(alice.clone())
.add_call(update_balance_call)
.add_call(buy_collateral_call)
.with_variable_output_policy(VariableOutputPolicy::Exactly(2));
// Sumbit tx
let submitted_tx = mutli_call_handler.submit().await.unwrap();
// Wait for response
let _: CallResponse<((), ())> = submitted_tx.response().await.unwrap();
let alice_balance = alice.get_asset_balance(&eth.asset_id).await.unwrap();
assert!(alice_balance == 10_999_999_997 * AMOUNT_COEFFICIENT);
// check reserves
let reserves = market
.with_account(&alice)
.await
.unwrap()
.get_collateral_reserves(eth.asset_id)
.await
.unwrap()
.value;
let normalized_reserves: u64 = convert_i256_to_i128(&reserves).try_into().unwrap();
assert!(normalized_reserves == 0);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
}
#[tokio::test] async fn all_assets_liquidated() { let TestData { wallets, alice, alice_account, bob, bob_account, chad, market, assets, usdc, eth, oracle, price_feed_ids, publish_time, prices, usdc_contract, .. } = setup(None).await;
Copy let price_data_update = PriceDataUpdate {
update_fee: 0,
price_feed_ids,
publish_times: vec![publish_time; assets.len()],
update_data: oracle.create_update_data(&prices).await.unwrap(),
};
// =================================================
// ==================== Step #0 ====================
// š Wallet: Alice š§
// š¤ Call: supply_base
// š° Amount: 3000.00 USDC
let alice_supply_amount = parse_units(3000 * AMOUNT_COEFFICIENT, usdc.decimals);
let alice_mint_amount = parse_units(20000 * AMOUNT_COEFFICIENT, usdc.decimals);
let alice_supply_log_amount = format!("{} USDC", alice_supply_amount as f64 / SCALE_6);
print_case_title(0, "Alice", "supply_base", alice_supply_log_amount.as_str());
println!("šø Alice + {alice_supply_log_amount}");
usdc_contract
.mint(alice_account, alice_mint_amount)
.await
.unwrap();
let balance = alice.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == alice_mint_amount);
let alice_supply_res = market
.with_account(&alice)
.await
.unwrap()
.supply_base(usdc.asset_id, alice_supply_amount)
.await;
assert!(alice_supply_res.is_ok());
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #1 ====================
// š Wallet: Bob š§
// š¤ Call: supply_collateral
// š° Amount: 1.00 ETH
let bob_supply_amount = parse_units(1 * AMOUNT_COEFFICIENT, eth.decimals);
let bob_mint_log_amount = format!("{} ETH", bob_supply_amount as f64 / SCALE_9);
print_case_title(1, "Bob", "supply_collateral", bob_mint_log_amount.as_str());
println!("šø Bob + {bob_mint_log_amount}");
let bob_supply_res = market
.with_account(&bob)
.await
.unwrap()
.supply_collateral(eth.asset_id, bob_supply_amount)
.await;
assert!(bob_supply_res.is_ok());
let bob_user_collateral = market
.get_user_collateral(bob_account, eth.asset_id)
.await
.unwrap()
.value;
assert!(bob_user_collateral == bob_supply_amount);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #2 ====================
// š Wallet: Bob š§
// š¤ Call: withdraw_base
// š° Amount: <MAX HE CAN BORROW>
let max_borrow_amount = market
.available_to_borrow(&[&oracle.instance], bob_account)
.await
.unwrap();
println!("Bob can borrow {max_borrow_amount} USDC");
let log_amount = format!("{} USDC", max_borrow_amount as f64 / SCALE_6);
print_case_title(2, "Bob", "withdraw_base", &log_amount.as_str());
let bob_withdraw_res = market
.with_account(&bob)
.await
.unwrap()
.withdraw_base(
&[&oracle.instance],
max_borrow_amount.try_into().unwrap(),
&price_data_update,
)
.await;
assert!(bob_withdraw_res.is_ok());
let balance = bob.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == max_borrow_amount as u64);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #3 ====================
// š Wallet: Admin šæ
// š¤ Drop of ETH price
// š° Amount: -50%
print_case_title(3, "Admin", "Drop of ETH price", "-50%");
let res = oracle.price(eth.price_feed_id).await.unwrap().value;
let new_price = (res.price as f64 * 0.5) as u64;
let prices = Vec::from([(
eth.price_feed_id,
(
new_price,
eth.price_feed_decimals,
res.publish_time,
res.confidence,
),
)]);
oracle.update_prices(&prices).await.unwrap();
let price_data_update = PriceDataUpdate {
update_fee: 0,
price_feed_ids: vec![eth.price_feed_id],
publish_times: vec![tai64::Tai64::from_unix(Utc::now().timestamp().try_into().unwrap()).0],
update_data: oracle.create_update_data(&prices).await.unwrap(),
};
println!(
"š» ETH price drops: ${} -> ${}",
res.price as f64 / 10_u64.pow(eth.price_feed_decimals) as f64,
new_price as f64 / 10_u64.pow(eth.price_feed_decimals) as f64
);
let res = oracle.price(eth.price_feed_id).await.unwrap().value;
assert!(new_price == res.price);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #4 ====================
// š Wallet: Chad š§
// š¤ Call: absorb
// š„ Target: Bob
print_case_title(4, "Chad", "absorb", "Bob");
assert!(
market
.is_liquidatable(&[&oracle.instance], bob_account)
.await
.unwrap()
.value
);
let chad_absorb_bob_res = market
.with_account(&chad)
.await
.unwrap()
.absorb(&[&oracle.instance], vec![bob_account], &price_data_update)
.await;
assert!(chad_absorb_bob_res.is_ok());
// Check if absorb was ok
let (_, borrow) = market.get_user_supply_borrow(bob_account).await.unwrap();
assert!(borrow == 0);
let amount = market
.get_user_collateral(bob_account, eth.asset_id)
.await
.unwrap()
.value;
assert!(amount == 0);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
// =================================================
// ==================== Step #5 ====================
// š Wallet: Alice š§
// š¤ Call: buy_collateral
// š° Amount: <MAX HE CAN BUY>
let reserves = market
.with_account(&alice)
.await
.unwrap()
.get_collateral_reserves(eth.asset_id)
.await
.unwrap()
.value;
assert!(!is_i256_negative(&reserves));
let amount = market
.collateral_value_to_sell(
&[&oracle.instance],
eth.asset_id,
convert_i256_to_u64(&reserves),
)
.await
.unwrap()
.value;
let log_amount = format!("{} USDC", amount as f64 / SCALE_6);
print_case_title(5, "Alice", "buy_collateral", log_amount.as_str());
// Prepare calls for multi_call_handler
let tx_policies = TxPolicies::default().with_script_gas_limit(1_000_000);
// Params for update_price_feeds_if_necessary
let call_params_update_price =
CallParameters::default().with_amount(price_data_update.update_fee);
// Update price feeds if necessary
let update_balance_call = market
.instance
.methods()
.update_price_feeds_if_necessary(price_data_update.clone())
.with_contracts(&[&oracle.instance])
.with_tx_policies(tx_policies)
.call_params(call_params_update_price)
.unwrap();
// Params for buy_collateral
let call_params_base_asset = CallParameters::default()
.with_amount(amount as u64)
.with_asset_id(usdc.asset_id);
// Buy collateral with base asset
let buy_collateral_call = market
.instance
.methods()
.buy_collateral(eth.asset_id, 1u64.into(), alice_account)
.with_contracts(&[&oracle.instance])
.with_tx_policies(tx_policies)
.call_params(call_params_base_asset)
.unwrap();
let mutli_call_handler = CallHandler::new_multi_call(alice.clone())
.add_call(update_balance_call)
.add_call(buy_collateral_call)
.with_variable_output_policy(VariableOutputPolicy::Exactly(2));
// Sumbit tx
let submitted_tx = mutli_call_handler.submit().await.unwrap();
// Wait for response
let _: CallResponse<((), ())> = submitted_tx.response().await.unwrap();
// Check asset balance
let balance = alice.get_asset_balance(&eth.asset_id).await.unwrap();
assert!(balance == 10_999_999_997 * AMOUNT_COEFFICIENT);
market
.print_debug_state(&wallets, &usdc, &eth)
.await
.unwrap();
}
#[tokio::test] async fn is_liquidatable_internal_uses_correct_index() { let TestData { wallets, alice, alice_account, bob, bob_account, chad, market, assets, usdc, uni, oracle, price_feed_ids, publish_time, prices, usdc_contract, uni_contract, .. } = setup(Some(100_000_000)).await;
Copy let price_data_update = PriceDataUpdate {
update_fee: 0,
price_feed_ids,
publish_times: vec![publish_time; assets.len()],
update_data: oracle.create_update_data(&prices).await.unwrap(),
};
// =================================================
// ==================== Step #0 ====================
// š Wallet: Alice š§
// š¤ Call: supply_base
// š° Amount: 10K USDC
let amount = parse_units(10000 * AMOUNT_COEFFICIENT, usdc.decimals);
let log_amount = format!("{} USDC", amount as f64 / SCALE_6);
print_case_title(0, "Alice", "supply_base", log_amount.as_str());
println!("šø Alice + {log_amount}");
// Transfer of 10K USDC to the Alice's wallet
usdc_contract.mint(alice_account, amount).await.unwrap();
let balance = alice.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == amount);
// Alice calls supply_base
market
.with_account(&alice)
.await
.unwrap()
.supply_base(usdc.asset_id, amount)
.await
.unwrap();
// Š”heck supply balance equal to 10K USDC
let (supply_balance, _) = market.get_user_supply_borrow(alice_account).await.unwrap();
assert!(supply_balance == amount as u128);
market
.print_debug_state(&wallets, &usdc, &uni)
.await
.unwrap();
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #1 ====================
// š Wallet: Bob š§
// š¤ Call: supply_collateral
// š° Amount: 1K UNI ~ $5K
let amount = parse_units(1000 * AMOUNT_COEFFICIENT, uni.decimals);
let log_amount = format!("{} UNI", amount as f64 / SCALE_9);
print_case_title(1, "Bob", "supply_collateral", log_amount.as_str());
println!("šø Bob + {log_amount}");
// Transfer of 1K UNI to the Bob's wallet
uni_contract.mint(bob_account, amount).await.unwrap();
let balance = bob.get_asset_balance(&uni.asset_id).await.unwrap();
assert!(balance == amount);
// Bob calls supply_collateral
market
.with_account(&bob)
.await
.unwrap()
.supply_collateral(uni.asset_id, amount)
.await
.unwrap();
// Š”heck supply balance equal to 1K UNI
let res = market
.get_user_collateral(bob_account, uni.asset_id)
.await
.unwrap()
.value;
assert!(res == amount);
market
.print_debug_state(&wallets, &usdc, &uni)
.await
.unwrap();
market.debug_increment_timestamp().await.unwrap();
// =================================================
// ==================== Step #2 ====================
// š Wallet: Bob š§
// š¤ Call: withdraw_base
// š° Amount: 2K USDC
let amount = parse_units(2500 * AMOUNT_COEFFICIENT, usdc.decimals);
let log_amount = format!("{} USDC", amount as f64 / SCALE_6);
print_case_title(2, "Bob", "withdraw_base", log_amount.as_str());
// Bob calls withdraw_base
market
.with_account(&bob)
.await
.unwrap()
.withdraw_base(&[&oracle.instance], amount, &price_data_update)
.await
.unwrap();
// USDC balance check
let balance = bob.get_asset_balance(&usdc.asset_id).await.unwrap();
assert!(balance == amount);
market
.print_debug_state(&wallets, &usdc, &uni)
.await
.unwrap();
for _ in 0..6 {
market.debug_increment_timestamp().await.unwrap();
}
// Calculate liqudiation point, wrong present value and correct present value
let collateral_configurations = market.get_collateral_configurations().await.unwrap().value;
let uni_config = collateral_configurations
.iter()
.find(|config| config.asset_id == uni.asset_id);
let market_basics = market.get_market_basics_with_interest().await.unwrap();
let liquidation_factor = format_units_u128(
convert_u256_to_u128(uni_config.unwrap().liquidate_collateral_factor),
18,
);
let borrow_factor = format_units_u128(
convert_u256_to_u128(uni_config.unwrap().borrow_collateral_factor),
18,
);
let uni_price = oracle.price(uni.price_feed_id).await.unwrap().value;
let uni_price = uni_price.price as f64 / 10u64.pow(uni.price_feed_decimals as u32) as f64;
let borrow_limit = borrow_factor * uni_price * 1000_f64;
let liquidation_point = liquidation_factor * uni_price * 1000_f64;
let base_supply_index = format_units_u128(
convert_u256_to_u128(market_basics.value.base_supply_index),
15,
);
let base_borrow_index = format_units_u128(
convert_u256_to_u128(market_basics.value.base_borrow_index),
15,
);
let user_principal = market
.get_user_basic(bob_account)
.await
.unwrap()
.value
.principal;
let user_principal =
convert_i256_to_i128(&user_principal) as f64 / 10u64.pow(usdc.decimals as u32) as f64;
let wrong_present_value = base_supply_index * user_principal;
let correct_present_value = base_borrow_index * user_principal;
println!("\n==================== INFO ====================");
println!(
"š Borrow limit: {borrow_limit:?}\nš Liquidation point: {liquidation_point:?}\nš User principal: {user_principal:?}\nš Wrong present value: {wrong_present_value:?}\nš Correct present value: {correct_present_value:?}",
);
print!("==============================================");
// =================================================
// ==================== Step #3 ====================
// š Wallet: Chad š§
// š¤ Call: absorb
// š„ Target: Bob
print_case_title(3, "Chad", "absorb", "Bob");
// `is_liquidatable` accrues iterest first, so this must return `true`
assert!(
market
.is_liquidatable(&[&oracle.instance], bob_account)
.await
.unwrap()
.value
== true
);
// This should work
market
.with_account(&chad)
.await
.unwrap()
.absorb(&[&oracle.instance], vec![bob_account], &price_data_update)
.await
.unwrap();
// Check if absorb was ok
let (_, borrow) = market.get_user_supply_borrow(bob_account).await.unwrap();
assert!(borrow == 0);
let amount = market
.get_user_collateral(bob_account, uni.asset_id)
.await
.unwrap()
.value;
assert!(amount == 0);
market
.print_debug_state(&wallets, &usdc, &uni)
.await
.unwrap();
}
```