EIP-8130 Proposes a Unified Account Standard to Streamline EVM Authentication
According to Crypto Briefing, the design separates authentication from account logic to enable O(1) validation without full EVM tracing.
Caleb North·updated August 24, 2026

EIP-8130 wants one account standard across every EVM chain. The Coinbase-backed proposal from Chris Hunter introduces a fixed transaction type — AA_TX_TYPE = 0x79 — and a canonical Keystore contract. According to Crypto Briefing, the design separates authentication from account logic to enable O(1) validation without full EVM tracing. The shift is structural: it moves the validation surface off the EVM entirely.
Fixed authenticators replace runtime simulation
The Keystore stores authentication preferences onchain at a deterministic address. Nodes read the Keystore directly. No bytecode simulation. No EVM execution path required for signature verification.
Four canonical authenticators are baked into the spec: secp256k1/k1 (Ethereum's existing signature scheme), P-256 (Apple and Google secure enclave primitives), WebAuthn (passkey infrastructure), and a delegate authenticator that lets one account authorize on behalf of another.
The attack vector changes. ERC-4337 forces nodes to simulate wallet bytecode to validate UserOperations. EIP-8130 reduces that surface to a fixed, auditable authenticator set. Verification becomes a deterministic lookup rather than an arbitrary execution trace.
Two profiles, one fallback
The proposal defines two adoption levels. Level 1 targets Ethereum mainnet and similarly conservative chains — normative gas schedule, permissive authenticator acceptance. Level 2 targets high-throughput chains like Base and L2 rollups — canonical-only validation, less flexibility, predictable performance at scale.
Chains that do not adopt natively retain an ERC-4337 fallback path. The standard stays portable. No protocol hard fork required for compatibility. Backers listed: Base, Coinbase, Optimism, WalletConnect. Base targets its Cobalt upgrade in September 2026 as the deployment vehicle. The proposal claims a 63% reduction in transfer costs against the current ERC-4337 model.
Status: draft. Active discussion on Ethereum Magicians and GitHub. Drafting date: October 2025. Builds on EIP-2718 (typed transaction envelopes) and EIP-4337.
What to verify before integration
For developers evaluating EIP-8130 against existing ERC-4337 infrastructure:
- Confirm the canonical Keystore address on your target chain. A fixed address creates a single upgrade-mechanism risk surface.
- Audit the authenticator whitelist. WebAuthn and P-256 introduce new signature recovery paths. Test verification in isolation before composability assumptions.
- Map the gas schedule across profiles. Level 1 uses a normative schedule; Level 2 restricts pathways. Hardcoded assumptions break across profiles.
- Test the ERC-4337 fallback path explicitly. Backward compatibility is asserted in the spec, not yet proven on mainnet.
As passkeys and WebAuthn diffuse beyond crypto into mainstream consumer platforms — across entertainment, streaming, and beyond — the primitives underpinning EIP-8130's authentication set stop being exotic. They become default infrastructure. That shift alone resets the threat model for smart account design.