{% extends "layout/base.html" %} {% block title %}FAME Marketplace Wallet{% endblock %} {% block content %}

Test Mode: Digital Euro API's are simulated. All transactions use mock data.

Marketplace Wallet

Organization: {{ organization.legal_name }}

← Back to Control Panel
{% if not trading_accounts %}

No Active Trading Accounts

Your organization doesn't have any enrolled trading accounts yet. Complete enrollment in FAME Marketplace to start using tokens.

How to get started:

Please follow the complete guide available on our About Us page.

  1. Access the FAME Marketplace platform
  2. Complete user enrollment process
  3. Trading accounts will appear here automatically
  4. Start purchasing FAME tokens!
{% else %}

{{ trading_accounts|length }} active trading account(s) in your organization

{% if selected_account %}

Digital Euro

Organization Wallet

{% if de_balance %}

{{ "%.2f"|format(de_balance.amount) }}

Available: {{ "%.2f"|format(de_balance.available) }}

{% else %}

-- .--

Loading...

{% endif %}
{% if de_balance %}

EUBAN: {{ de_balance.euban }}

{% else %}

No EUBAN available

{% endif %}

FAME Tokens

{{ selected_account.user_email if selected_account else 'N/A' }}

{% if fame_balance %}

{{ "%.2f"|format(fame_balance.balance) }}

{% else %}

-- .--

{% endif %}

Trading Account Balance

{% if selected_account %}

TID: {{ selected_account.tid }}

{% else %}

No account selected

{% endif %}

Token Exchange

Purchase FAME Tokens

Exchange rate: 1 € = 1 FAME

You will receive: 0 FAME

Redeem to Digital Euro

Exchange rate: 1 FAME = 1 €

You will receive: 0.00

Transaction History

{% if local_transactions %}
{% for tx in local_transactions %} {% endfor %}
Type Amount Status Date Account
{{ tx.transaction_type|capitalize }} {% if tx.transaction_type == 'purchase' %}-{% else %}+{% endif %}{{ "%.2f"|format(tx.amount) }} {{ tx.currency }} {{ tx.status|capitalize }} {{ tx.created_at.strftime('%d/%m/%Y %H:%M') }} {{ tx.trading_account_id }}
{% else %}

No transactions yet

{% endif %}
{% endif %} {% endif %}
{% endblock %}