Client Addons

Client Bank Usage Guide

The client bank addon opens the bank and ATM browser UI, forwards banking requests to the server bank addon, and pushes account updates back into the browser.

Client Bank Usage Guide

The client bank addon opens the bank and ATM browser UI, forwards banking requests to the server bank addon, and pushes account updates back into the browser.

Open Bank UI

Open full bank mode:

call forge_client_bank_fnc_openUI;

Open ATM mode:

[true] call forge_client_bank_fnc_openUI;

The open function creates RscBank, sets the bridge mode to bank or atm, loads ui/_site/index.html, and routes browser events through forge_client_bank_fnc_handleUIEvents.

Bridge and Repository

forge_client_bank_fnc_initRepository tracks account load and cached account state.

forge_client_bank_fnc_initUIBridge owns:

  • active browser control tracking
  • bank/ATM mode
  • browser ready handling
  • account hydrate and sync responses
  • deposit, withdrawal, transfer, earnings deposit, credit repayment, and PIN requests
  • browser notice delivery

Browser Events

EventClient behavior
bank::readyMark browser ready and request hydrate from the server.
bank::refreshRequest fresh bank hydrate data.
bank::deposit::requestForward deposit amount to the server.
bank::withdraw::requestForward withdrawal amount to the server.
bank::transfer::requestForward target, source field, and amount.
bank::depositEarnings::requestRequest earnings deposit.
bank::repayCreditLine::requestRequest credit-line repayment.
bank::pin::requestForward PIN validation request.
bank::closeDispose bridge screen state and close the display.

Browser Response Events

The bridge sends:

EventPurpose
bank::hydrateFull session/account payload.
bank::syncAccount patch or sync data.
bank::noticeUI-visible notice payload.

Request Flow

Example deposit flow:

  1. Browser sends bank::deposit::request with an amount.
  2. Client bridge calls the server bank request event.
  3. Server bank addon validates the request and calls bank hot-state logic.
  4. Server response is caught by the client post-init event handlers.
  5. Client bridge sends bank::sync or bank::notice back to the browser.

Authoritative State

Balances, PIN authorization, transfers, checkout charges, credit lines, and persistence are server-owned. The client should only display account data and request mutations through server events.

Copyright © 2026