> For the complete documentation index, see [llms.txt](https://flowra.gitbook.io/flowra/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://flowra.gitbook.io/flowra/overview/problem-definition.md).

# Problem Definition

### Three Structural Problems on Solana

***

### 3.1 Overcharged User Fees — Information Asymmetry

Despite average Solana block utilization often being below 50%, users pay excessive Priority Fees and Jito tips to increase landing probability. This stems from **information asymmetry** in the fee market: users cannot see current block congestion or competing transaction fee levels in real time, so they defensively set high fees. The overpayment goes directly to validators and infrastructure operators.

```mermaid
flowchart TD
    A["User: "I don't know what's needed to land — I'll just go high.""] --> B["Sets Priority Fees and tips too high"]
    B --> C["Overpayment"]
    C --> D["Validator revenue"]
    C --> E["Infrastructure operator revenue"]
```

{% hint style="danger" %}
**Structural user overpayment is happening systematically** — entirely due to a lack of fee market transparency.
{% endhint %}

***

### 3.2 Infrastructure Concentration Risk

Solana validator infrastructure is currently concentrated around a single provider, with Jito accounting for **94%+** of staked validators. While this reflects Jito's strong product-market fit, it also means validators have limited alternatives — stepping outside this ecosystem risks forfeiting MEV and tip revenue. This concentration introduces single point of failure risk and reduces validators' ability to negotiate on fee structures and policies.

| Risk                          | Description                                                                   |
| ----------------------------- | ----------------------------------------------------------------------------- |
| **Single point of failure**   | A Jito outage paralyzes the entire MEV infrastructure                         |
| **Reduced negotiating power** | Validators have limited ability to respond to fee structure or policy changes |

**Real example:** Jito's mempool service changes in 2024 highlighted this dynamic — validators had limited ability to respond to infrastructure shifts, underscoring the value of having viable alternatives in the ecosystem.

***

### 3.3 Opaque Transaction Order Markets

MEV searchers manipulate transaction ordering through private channels with validators, but this process cannot be externally verified.

* How much front-running occurs cannot be quantified
* How much worse execution prices users receive cannot be measured
* Only a handful of validators running private mempools can access MEV opportunities

{% hint style="warning" %}
Because Solana has no public mempool by design, orderflow moves through private channels. This makes the opacity problem far more severe than on Ethereum.
{% endhint %}

***

### 3.4 BAM's Limitations

Jito's proposed solution — BAM (Block Assembly Marketplace) — creates new problems for validators rather than solving existing ones.

#### Validator Authority Erosion

* Block building authority transfers to BAM nodes; validators are reduced to **executors only**
* MEV revenue distribution shifts unfavorably for validators

#### App-Centric Design — Validator Marginalization

* ACE (Application-Controlled Execution) favors apps/protocols over validators
* MEV proceeds likely redistributed to apps; long-term validator revenue decline

| Issue               | BAM                      | Flowra                             |
| ------------------- | ------------------------ | ---------------------------------- |
| Validator authority | ❌ Delegated to BAM nodes | ✅ Bundle selection rights retained |
| MEV beneficiary     | ❌ Apps/protocols         | ✅ Validators + users               |
| Transparency        | ❌ TEE black box          | ✅ Fully on-chain                   |
| Dependency          | ❌ Single infra lock-in   | ✅ Validator Sovereignty            |
