-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: App failing to open on first attempt - chore: Support unlocking with the Enter key - fix: get token balance api
- Loading branch information
1 parent
6ff2ff7
commit a698e81
Showing
3 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import assetsManager from '../../assets' | ||
import { getTokenBalance } from '@/lib/assets' | ||
|
||
export async function process() { | ||
return await assetsManager.getTokenBalance() | ||
export async function process(_: unknown, { password }: { host: string; password: string }) { | ||
return await getTokenBalance(password) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters