diff --git a/src/modules/smart-yield/providers/pool-provider/index.tsx b/src/modules/smart-yield/providers/pool-provider/index.tsx index 018d679e..3959bdaf 100644 --- a/src/modules/smart-yield/providers/pool-provider/index.tsx +++ b/src/modules/smart-yield/providers/pool-provider/index.tsx @@ -226,7 +226,10 @@ const PoolProvider: React.FC = props => { const abondDebt = await pool.contracts.smartYield.getAbondDebt(); - return abondDebt.multipliedBy(amount).dividedBy(totalSupply.dividedBy(10 ** decimals)); + return abondDebt + .dividedBy(10 ** decimals) + .multipliedBy(amount) + .dividedBy(totalSupply.dividedBy(10 ** decimals)); }, [state.pool], );