1
1
import { useStxTotalBalance } from '@/queries/balance/stx-balance.query' ;
2
2
import { FetchState , toFetchState } from '@/shared/fetch-state' ;
3
+ import { useSettings } from '@/store/settings/settings' ;
3
4
4
5
import { Money } from '@leather.io/models' ;
5
6
import {
6
- BtcAggregateBalance ,
7
+ BtcBalance ,
7
8
RunesAggregateBalance ,
8
9
Sip10AggregateBalance ,
9
- StxAggregateBalance ,
10
+ StxBalance ,
10
11
} from '@leather.io/services' ;
11
12
import { createMoney , isDefined , sumMoney } from '@leather.io/utils' ;
12
13
@@ -15,16 +16,17 @@ import { useRunesTotalBalance } from './runes-balance.query';
15
16
import { useSip10TotalBalance } from './sip10-balance.query' ;
16
17
17
18
interface TotalBalance {
18
- btc : FetchState < BtcAggregateBalance > ;
19
- stx : FetchState < StxAggregateBalance > ;
19
+ btc : FetchState < BtcBalance > ;
20
+ stx : FetchState < StxBalance > ;
20
21
sip10 : FetchState < Sip10AggregateBalance > ;
21
22
runes : FetchState < RunesAggregateBalance > ;
22
23
totalBalance : FetchState < Money > ;
23
24
}
24
25
25
- const zeroMoneyUsd = createMoney ( 0 , 'USD' ) ;
26
-
27
26
export function useTotalBalance ( ) : TotalBalance {
27
+ const { fiatCurrencyPreference } = useSettings ( ) ;
28
+ const zeroMoneyFiat = createMoney ( 0 , fiatCurrencyPreference ) ;
29
+
28
30
const btcTotalBalance = useBtcTotalBalance ( ) ;
29
31
const stxTotalBalance = useStxTotalBalance ( ) ;
30
32
const sip10TotalBalance = useSip10TotalBalance ( ) ;
@@ -42,11 +44,11 @@ export function useTotalBalance(): TotalBalance {
42
44
runesTotalBalance . state === 'error' ;
43
45
const accountBalance = sumMoney (
44
46
[
45
- zeroMoneyUsd ,
46
- btcTotalBalance . value ?. usd . availableBalance ,
47
- stxTotalBalance . value ?. usd . availableBalance ,
48
- sip10TotalBalance . value ?. usd . availableBalance ,
49
- runesTotalBalance . value ?. usd . availableBalance ,
47
+ zeroMoneyFiat ,
48
+ btcTotalBalance . value ?. fiat . availableBalance ,
49
+ stxTotalBalance . value ?. fiat . availableBalance ,
50
+ sip10TotalBalance . value ?. fiat . availableBalance ,
51
+ runesTotalBalance . value ?. fiat . availableBalance ,
50
52
] . filter ( isDefined )
51
53
) ;
52
54
0 commit comments