Jacob Schmidt 5c76d59baf feat: add mobile banking app and integrate into phone UI
- Implemented wallet app functionality including account management, transaction handling, and user notifications.
- Updated HomeScreen to include Wallet app icon.
- Enhanced StateManager to maintain mobile bank state.
- Created wallet-specific styles for UI consistency.
- Updated CSS and JS concatenation scripts to include wallet resources.
2026-05-19 20:58:57 -05:00
..
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00
2025-11-26 18:33:09 -06:00

Forge Client Bank

Overview

The bank addon provides the client banking UI and browser bridge for account hydrate, deposits, withdrawals, transfers, PIN entry, earnings deposits, and credit-line repayment. It also exposes PIN changes from the full bank UI.

Dependencies

  • forge_client_common
  • forge_client_main
  • server bank events from forge_server_bank
  • notifications for server-driven messages

Main Components

  • fnc_initRepository.sqf tracks account load state.
  • fnc_initUIBridge.sqf translates browser requests into server RPCs and sends server responses back to the browser.
  • fnc_handleUIEvents.sqf handles bank::* browser events.
  • fnc_openUI.sqf opens RscBank; ATM mode is supported by passing true.

Browser Events

  • bank::ready
  • bank::refresh
  • bank::deposit::request
  • bank::withdraw::request
  • bank::transfer::request
  • bank::depositEarnings::request
  • bank::repayCreditLine::request
  • bank::pin::request
  • bank::pin::change::request
  • bank::close

Runtime Notes

The client only displays and requests account changes. The server bank addon and extension own validation, balances, authorization, and persistence.