Skip to content

Commit bb71eb3

Browse files
committed
feat: show balances in /accounts
1 parent 33ef5ab commit bb71eb3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

actual.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ export async function shutdown() {
1515
}
1616

1717
export async function getAccounts() {
18-
return api.getAccounts();
18+
const accounts = await api.getAccounts();
19+
return Promise.all(
20+
accounts.map(async (a: any) => ({
21+
...a,
22+
balance: await getAccountBalance(a.id),
23+
})),
24+
);
1925
}
2026

2127
export async function getAccount(id: string) {

0 commit comments

Comments
 (0)