Skip to content

Commit

Permalink
Fix transferable formula (#5956)
Browse files Browse the repository at this point in the history
* Fix transferable formula

* nits
  • Loading branch information
TarikGul authored Aug 19, 2024
1 parent e5dc406 commit 119f88e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions packages/api-derive/src/balances/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,14 @@ function calcShared (api: DeriveApi, bestNumber: BlockNumber, data: DeriveBalanc
let transferable = null;

if (data.frameSystemAccountInfo?.frozen) {
const frozenReserveDiff = data.frameSystemAccountInfo.frozen.sub(data.reservedBalance);

transferable = api.registry.createType('Balance', allLocked ? 0 : data?.freeBalance.sub(bnMax(frozenReserveDiff, api.consts.balances.existentialDeposit)));
const { frameSystemAccountInfo, freeBalance, reservedBalance } = data;

transferable = api.registry.createType(
'Balance',
allLocked
? 0
: freeBalance.sub(bnMax(new BN(0), frameSystemAccountInfo.frozen.sub(reservedBalance)))
);
}

return objectSpread({}, data, {
Expand Down
2 changes: 1 addition & 1 deletion packages/api-derive/src/balances/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface DeriveBalancesAllAccountData extends DeriveBalancesAccountData
*/
lockedBreakdown: (PalletBalancesBalanceLock | BalanceLockTo212)[];
/**
* Calculated transferable balance. This uses the formula: free - max(frozen - reserve, ed)
* Calculated transferable balance. This uses the formula: free - max(0, frozen - reserve)
* This is only correct when the return type of `api.query.system.account` is `FrameSystemAccountInfo`.
* Which is the most up to date calulcation for transferrable balances.
*
Expand Down

0 comments on commit 119f88e

Please sign in to comment.