
Briefing
The core problem addressed is the lack of a cryptographic accumulator that simultaneously offers post-quantum security, a trustless setup, and logarithmic proof size for set operations. This paper proposes the Isogeny-Based Accumulator (IBA), a new primitive leveraging the mathematical hardness of supersingular isogeny graphs to represent a dynamic set of elements as a single, short commitment. The IBA allows for non-interactive proofs of membership or non-membership that grow only logarithmically with the set size. The single most important implication is the ability to finally construct truly stateless, post-quantum secure blockchain clients that can verify the entire chain state with minimal computation and communication overhead.

Context
Before this research, existing cryptographic accumulators faced a fundamental trilemma. Pairing-based schemes, such as KZG, achieve logarithmic proof size but rely on pre-quantum security assumptions and a trusted setup. Conversely, simple Merkle trees are trustless and post-quantum secure but require linear-sized proofs, making full state verification by light clients computationally prohibitive. The prevailing theoretical limitation was the inability to achieve the optimal combination of post-quantum security, trustlessness, and succinctness, which severely hindered the design of truly decentralized, resource-efficient blockchain architectures.

Analysis
The Isogeny-Based Accumulator (IBA) fundamentally differs from previous approaches by moving from number-theoretic assumptions to the geometry of elliptic curves. The core mechanism involves committing to a set by constructing a specific supersingular elliptic curve whose structure is implicitly defined by the set’s elements. A proof of membership conceptually shows that the committed element is a generator of a specific subgroup of the accumulator curve.
This geometric structure allows the proof to be recursively compressed, utilizing the inherent properties of isogeny-based hash functions and commitment schemes. The result is a proof that only requires $O(log N)$ group operations for verification, a dramatic conceptual shift from the linear complexity of hash-based structures.

Parameters
- Logarithmic Proof Size → $O(log N)$ group elements. This is the size of the proof required to verify a single element’s inclusion in a set of $N$ accumulated elements.
- Setup Requirement → Trustless. The system requires no initial trusted ceremony, relying only on public parameters.
- Security Basis → Isogeny-Based Cryptography. Security is derived from the hard problem of finding an isogeny between two supersingular elliptic curves.

Outlook
This research opens new avenues for constructing post-quantum secure, succinct proof systems. The immediate next step is the engineering and standardization of the IBA primitive for production environments, focusing on performance optimization. In 3-5 years, this technology is poised to unlock truly stateless execution environments for Layer 1 and Layer 2 solutions, fundamentally changing the architecture of full nodes and light clients. Furthermore, it establishes a new, fertile research area for applying isogeny-based cryptography to other complex primitives like verifiable delay functions and decentralized randomness beacons.

Verdict
The Isogeny-Based Accumulator establishes a new, post-quantum foundational primitive that resolves the trade-off between succinctness, trustlessness, and security for cryptographic state commitment.
