← All benefits

UTXO Parallelism

A UTXO design that lets independent transactions validate in parallel.

Account-based chains serialize execution around a shared global state, which creates contention and unpredictable fees under load. RISCy Network uses a Nexa-derived UTXO model where each transaction declares the exact inputs it consumes.

Because dependencies are explicit, non-conflicting transactions can be validated and executed in parallel across cores and machines. There is no single global state object that every transaction must queue behind.

Why it matters

  • Parallel validation that scales with available hardware.
  • No nonce-ordering headaches or stuck transaction queues.
  • More predictable fees during periods of high demand.
  • A clean foundation for horizontal scaling.