SuperPaymaster: Eliminating Centralized Signer Authority via Asset-Oriented Abstraction to Reconcile Usability and Decentralization in Account Abstraction
Pith reviewed 2026-05-08 09:28 UTC · model grok-4.3
The pith
Asset-Oriented Abstraction removes the centralized off-chain signer from ERC-4337 paymaster sponsorship.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
SuperPaymaster demonstrates that sponsorship validity can be anchored entirely in on-chain Soulbound Token state and deterministic policy rules through a Gas Card asset, eliminating the off-chain signer as a hard validity gate while producing lower pure L2 execution gas than several commercial baselines for single-UserOp ERC-20 transfers.
What carries the argument
The Gas Card, a persistent user-owned on-chain asset whose sponsorship rights are validated by Soulbound Token state and deterministic policy rules instead of an off-chain signature.
If this is right
- Sponsorship decisions become independent of any single off-chain entity and are enforced directly by on-chain state.
- ERC-20 transfer operations can avoid the gas overhead of external liquidation by performing internal balance updates.
- Non-cooperative relayers can be bypassed when an alternative relayer is available, as shown in failover simulation.
- Total billed gas remains partly determined by bundler pricing, but the paymaster architecture itself contributes measurable execution savings.
Where Pith is reading between the lines
- Gas Cards could become transferable on-chain assets, allowing users to sell or delegate sponsorship capacity.
- The asset-oriented model might extend to other sponsored operations such as oracle calls or cross-chain actions.
- Future account abstraction standards could prioritize asset-based validation over process-based signing to reduce reliance on off-chain parties.
Load-bearing premise
On-chain Soulbound Token state combined with deterministic policy rules can fully replace off-chain signing for sponsorship validity without introducing new attack surfaces, centralization points, or usability regressions.
What would settle it
A production deployment in which a majority of relayers refuse SuperPaymaster UserOps despite correct on-chain state, or a measurable exploit that forces sponsorship of an invalid operation through the Gas Card rules.
Figures
read the original abstract
Most production ERC-4337 Paymasters rely on Process-Oriented Abstraction (POA): a centralized off-chain server signs each sponsorship request, acting as a potential censorship bottleneck. We propose Asset-Oriented Abstraction (AOA), encapsulating payment capability in a persistent, user-owned on-chain asset -- the Gas Card -- rather than an off-chain signing process. Following the Design Science Research (DSR) methodology, we implement SuperPaymaster on Optimism Mainnet, anchoring sponsorship validity in on-chain Soulbound Token state and deterministic policy rules, removing the off-chain signer as a validity gate. We evaluate gas costs via single-UserOp ERC-20 transfers on Optimism Mainnet (n = 50 per system). In pure L2 execution gas (txGasUsed; actualGasUsed = txGasUsed + PVG), SuperPaymaster (167,830) is lower than both evaluated POA baselines: Alchemy Gas Manager (205,951) and Pimlico ERC-20 paymaster (328,937). It still pays a ~32,000-gas on-chain verification overhead versus Alchemy, but reduces gas by 49% versus Pimlico by replacing on-chain token liquidation with an internal balance update. In total billed gas, SuperPaymaster (286,818) exceeds Alchemy (257,299) due to higher bundler PVG overhead, not paymaster architecture. Code structural analysis and on-chain Mainnet evidence confirm that sponsorship validity requires no off-chain signing server: validatePaymasterUserOp reads only on-chain state. These findings suggest that AOA can mitigate the usability-decentralization-efficiency trade-offs in gas payment.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper claims that most ERC-4337 Paymasters rely on Process-Oriented Abstraction (POA) with centralized off-chain signers that create censorship risks. It proposes Asset-Oriented Abstraction (AOA) that instead anchors sponsorship in a persistent user-owned on-chain 'Gas Card' asset implemented via Soulbound Tokens (SBTs) and deterministic policy rules. The authors describe an implementation called SuperPaymaster deployed on Optimism Mainnet, report gas-cost measurements for single-UserOp ERC-20 transfers (n=50 per system) showing a 32k-gas delta and a 49% reduction versus one baseline (167830 vs 328937 gas), and include a relayer failover simulation. The central claim is that AOA eliminates the off-chain signer as a hard validity gate while reconciling usability, sponsorship decentralization, and economic efficiency.
Significance. If the central security and decentralization claims hold, the work would provide a concrete alternative architecture for paymasters that reduces reliance on off-chain trusted parties, potentially improving censorship resistance in account abstraction deployments. The mainnet implementation and trace-level gas decomposition offer practical data points. Credit is due for the reproducible on-chain measurements and the failover simulation that directly tests one aspect of decentralization.
major comments (2)
- [Evaluation] The central claim that on-chain SBT state combined with deterministic policy rules fully replaces off-chain signing without introducing new attack surfaces, centralization points, or usability regressions is not supported by any contract-level access-control audit, formal validation model, or adversarial analysis. The Evaluation section reports only gas deltas for ERC-20 transfers and a relayer failover simulation; these do not address potential bypasses via state races, front-running, unauthorized asset transfers, or issuer-controlled SBT revocation.
- [Evaluation] The gas-cost comparisons (167830 vs 328937 and the 49% reduction claim) are presented for n=50 tests on Optimism without error bars, variance statistics, or full methodology details on test selection and measurement. While not the sole basis for the decentralization claim, these numbers are used to support the economic-efficiency component of the reconciliation argument and therefore require clearer statistical grounding.
minor comments (1)
- [Abstract] The abstract and Evaluation section would benefit from explicit statements on the exact policy-rule immutability guarantees and whether any external calls or oracles are used in validation logic.
Simulated Author's Rebuttal
We thank the referee for the constructive and detailed comments. We address each major comment point by point below, providing clarifications where appropriate and committing to specific revisions that strengthen the manuscript without overstating its current scope.
read point-by-point responses
-
Referee: [Evaluation] The central claim that on-chain SBT state combined with deterministic policy rules fully replaces off-chain signing without introducing new attack surfaces, centralization points, or usability regressions is not supported by any contract-level access-control audit, formal validation model, or adversarial analysis. The Evaluation section reports only gas deltas for ERC-20 transfers and a relayer failover simulation; these do not address potential bypasses via state races, front-running, unauthorized asset transfers, or issuer-controlled SBT revocation.
Authors: We agree that the current Evaluation section does not include a contract-level access-control audit, formal validation model, or comprehensive adversarial analysis, and that the reported gas measurements and failover simulation alone do not fully address the listed attack vectors. The manuscript's central claim rests on the architectural shift to on-chain SBT state and deterministic policy rules as the validity gate, which by design removes the off-chain signer. In the revised manuscript we will add a dedicated Security Considerations subsection to the Evaluation section. This subsection will explicitly discuss the potential attack surfaces raised (state races, front-running, unauthorized asset transfers, and issuer-controlled SBT revocation) and explain the mitigations provided by SBT non-transferability, on-chain policy enforcement, and the absence of an off-chain validity oracle. While we cannot retroactively supply a formal verification or external audit, the added discussion will clarify the security properties that follow from the on-chain anchoring and will acknowledge remaining limitations. We view this as a partial but substantive response that directly engages the referee's concern. revision: partial
-
Referee: [Evaluation] The gas-cost comparisons (167830 vs 328937 and the 49% reduction claim) are presented for n=50 tests on Optimism without error bars, variance statistics, or full methodology details on test selection and measurement. While not the sole basis for the decentralization claim, these numbers are used to support the economic-efficiency component of the reconciliation argument and therefore require clearer statistical grounding.
Authors: We accept that the gas-cost presentation requires clearer statistical grounding. The figures derive from 50 independent single-UserOp ERC-20 transfer executions per system on Optimism Mainnet, with trace-level decomposition used to isolate the 32 k-gas delta. In the revised manuscript we will augment the Evaluation section with (i) error bars showing standard deviation, (ii) explicit reporting of mean, variance, and range for each configuration, and (iii) an expanded methodology paragraph detailing test selection criteria, baseline deployment versions, measurement tooling, and environmental controls. These additions will provide the requested statistical context while preserving the architectural interpretation of the results. revision: yes
Circularity Check
No circularity; claims rest on direct implementation, gas measurements, and simulation
full rationale
The paper implements SuperPaymaster on Optimism Mainnet following Design Science Research, anchors validity in on-chain SBT state plus deterministic policies, and evaluates via 50 single-UserOp ERC-20 transfer measurements plus a relayer failover simulation. No equations define a quantity in terms of itself, no fitted parameters are relabeled as predictions, and no self-citations supply the load-bearing justification for the architecture or results. The derivation chain consists of concrete on-chain code, trace-level gas decomposition, and empirical deltas that are independently verifiable from the deployed contracts and reported runs.
Axiom & Free-Parameter Ledger
axioms (2)
- domain assumption ERC-4337 provides a secure and functional base for account abstraction and paymasters.
- domain assumption Soulbound Tokens can serve as reliable, persistent on-chain state for sponsorship decisions.
invented entities (2)
-
Gas Card
no independent evidence
-
Asset-Oriented Abstraction (AOA)
no independent evidence
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.