Glossary
A comprehensive index of jargon used across this site: EIP-8130 itself, the account/actor/authenticator model it defines, and the terminology of the alternative and complementary proposals it is compared against (EIP-8141, EIP-8175, EIP-8202, EIP-8223, EIP-8224, EIP-XXXX). Entries are grouped by category and alphabetical within each group.
1. Core Concepts
- Account Abstraction (AA) — The general goal of decoupling transaction validation and payment from a fixed secp256k1-EOA model, letting session keys, multisig logic, or sponsorship govern who may act on an account. EIP-8130 pursues this via a canonical authenticator allowlist rather than arbitrary wallet-code execution; see /competing-standards for how the alternative proposals position themselves on this axis.
- Actor — Any authority-holder on an EIP-8130 account: a full owner, a session key, a payer-only key. Actors are identified by a 32-byte
actorIdand governed by ascopebitmask stored inactor_config. - actorId — A 32-byte identifier an authenticator derives from credential material. Address-derived values are right-aligned in the low 20 bytes, standardized by PR #12173.
- Authentication — The step of resolving a signature or credential to an
actorId, performed by an authenticator contract'sauthenticate()call or, forK1_AUTHENTICATOR, a nativeecrecover. Deliberately separated from authorization; see /authenticator-model. - Authorization — The step of checking what an already-authenticated actor may do, governed by its
scopebitmask and, ifPOLICYis set, its policy manager. - Mempool Validation Algorithm — The staged checks a node runs before accepting an EIP-8130 transaction: parsing, sender and Keystore resolution, ordered account-change simulation, canonical authentication, scope and validity checks, payer checks, rate limits, and replacement. See /current-spec.
- No Wallet Code Execution — EIP-8130's core mempool-safety claim: a node accepts a transaction by checking authenticator identity against a canonical allowlist rather than simulating the sender's own arbitrary account bytecode. See /mempool-safety for the argument and its contrast with EIP-8141.
- Operational Authority — The predicate governing ERC-1271 signing, defined as
admin || (SENDER && !POLICY). Introduced in PR #11918 (Jul 13, 2026), replacing a standalone SIGNER scope bit; a POLICY-gated actor is never operational and must not sign raw hashes. - Statelessness / Witness Cost — The state a stateless client must prove to validate a transaction. EIP-8130 narrows the code surface by canonical identity, but Keystore, nonce, payer, and authenticator state may all contribute. See /mempool-safety §5.
- STATICCALL — The EVM call type used to invoke an authenticator's
authenticate()function; it cannot write storage, emit events, or otherwise change chain state, keeping authentication read-only and auditable. - VOPS (Validity-Only Partial Statelessness) — A statelessness design under which a node validates transactions using only a bounded witness rather than full state. EIP-8223's static payer-registry model is strictly VOPS-compatible, needing only the
0x13predeploy's storage trie as additional witness data.
2. Keystore and Actors
- ACCOUNT_CONFIG_ADDRESS — The former name of
KEYSTORE_ADDRESS, replaced in PR #12135. - Account Configuration Contract — The former name of the Keystore, replaced in PR #12135.
- actor_config — A packed actor word:
authenticator (20) || expiry (6) || scope (2) || reserved (4). Scope isuint16; revocation deletes the slot except for special self-actor handling. - Actor Policies — The
POLICY-scope mechanism gating a restricted actor to calling a single designatedpolicy_managercontract, enforced during call execution rather than mempool validation. Landed in PR #11766 (Jun 4, 2026), after an earlier unmergeable draft (PR #11648). - admin — The predicate
scope == 0x00(no grant bits set), required for every config-change authorization. Redefined from a dedicated CONFIG bit to this absence-of-restriction predicate in PR #11918 (Jul 13, 2026), on the reasoning that a config-only bit is indistinguishable from full access. - applySignedAccountChanges — The Keystore entry point applying signed AuthorizeActor, RevokeActor, IncrementLocalEpoch, Lock, and Unlock operations on local or multichain channels. Replaced
applySignedActorChangesand the separate lock path in PR #12135. - change sequence — A
uint64 multichain_sequenceplus packeduint32 local_epochanduint32 local_sequence, gating replay of signed Keystore changes. - CONTRACT_ESTABLISHED (flag) — Records that an address has been established as a contract account, preventing later code removal from re-enabling implicit-EOA treatment.
- expiry (actor-level) — A per-actor
uint48Unix-seconds liveness bound. It is still not expressible at create/import time as of August 20; see open PR #11919. - IncrementLocalEpoch — A signed local change that advances
local_epochand invalidates unlanded local signatures from the old epoch. - InitialActor (struct) —
{actorId, authenticator, scope, policyData}, the tuple shape used to seed actors atcreateAccountorimportAccounttime; has noexpiryfield in the merged spec. - Keystore — The system contract at
KEYSTORE_ADDRESSstoring actors, account state, change channels, creation, and locks. PR #12135 renamed it and made the Base contracts authoritative for internal mechanics. - KEYSTORE_ADDRESS — The Keystore address used in account derivation and actor-management operations, formerly
ACCOUNT_CONFIG_ADDRESS. - local_epoch / local_sequence — Two
uint32local-channel fields packed into one signeduint64; the epoch enables bulk invalidation ofUNSEQUENCEDchanges. - policy_commitment / policy_manager — Two extra storage slots present only when an actor's
scope & POLICY != 0, written verbatim frompolicyDataat authorization time and read only during call execution, never during mempool validation. - policyData — The authorization-time payload for a
POLICY-scoped actor, exactlymanager (20 bytes) || commitment (32 bytes). - reserved bits (actor_config) — The final four bytes of
actor_config, which must be zero on write so future layouts fail closed. - scope (
uint16) — The per-actor grant mask. Zero denotes admin; bits 0-4 are SENDER, POLICY, NONCE, SELF_PAYER, and SPONSOR_PAYER, while 5-15 are spare. - Self-actor — The actor whose
actorIdis the account address right-aligned in 32 bytes. It has inline secp256k1 and ordinary configured-authenticator forms. - UNSEQUENCED — A local signed-change mode that may land in any order within the current epoch and is invalidated by
IncrementLocalEpoch.
3. Scope Grants and Authorization
- ERC-1271 — The
isValidSignature(hash, signature)standard used for import authorization and as a compatibility wrapper around EIP-8130's account-scopedvalidateSignaturepath. - NONCE (grant, 0x04) — Permits a restricted actor to use non-nonceless
nonce_keys; without it, a restricted actor may only useNONCE_KEY_MAX(nonceless). - POLICY (grant, 0x02) — Gates initiation as
sender_authto calls targeting only the actor'spolicy_manager. Composes with SENDER (POLICY always gates regardless). - SELF_PAYER (grant, 0x08) — Permits self-pay when
payer == sender, including via a dedicated gas key distinct from the signing key. Split from a single PAYER bit in PR #11918 (Jul 13, 2026). - SENDER (grant, 0x01) — Permits ungated initiation as
sender_auth, allowing the actor to call anycall.to. Also satisfies operational authority for ERC-1271 signing unless combined with POLICY. - SPONSOR_PAYER (grant, 0x10) — Permits acting as
payer_authfor a different sender (payer != sender), i.e. sponsoring another account's gas. Split from a single PAYER bit in PR #11918 (Jul 13, 2026).
4. Authenticators and Signing
- authenticate() — The single function every
IAuthenticatorimplements:authenticate(bytes32 hash, bytes calldata data) external view returns (bytes32 actorId). Renamed fromverify()in PR #11785 (Jun 9, 2026). - authenticateActor — The raw Keystore authentication primitive. It resolves an actor from
hashandauthwithout account or chain domain separation. - Authenticator — A contract implementing
IAuthenticator, resolving a signature or credential to anactorId. Any such contract can be permissionlessly deployed, but only canonical authenticators authenticate transactions directly on the mempool path. - Canonical Authenticator Set — The k1, p256, passkey, and delegate allowlist accepted for direct transaction authentication as of August 20. The companion ERC and client activation process remain undefined.
- Companion ERC (authenticator set) — The not-yet-numbered ERC intended to define canonical deployment addresses across chains. EIP-8130 leaves its contents and the client-activation process unresolved.
- DELEGATE_AUTHENTICATOR — The canonical authenticator letting one account (A) register an actor pointing at another account (B); any key authenticating as B may then authenticate as A. Nesting is capped at depth 1, and the nested actor on B must be admin.
- IAuthenticator — The Solidity interface every authenticator contract implements: a single
authenticate(hash, data) -> actorIdmethod, called via STATICCALL. - K1_AUTHENTICATOR — The protocol-reserved sentinel
address(1)for native secp256k1 authentication; when it appears in an auth blob, the protocol performsecrecoverdirectly instead of a STATICCALL. Renamed fromECRECOVER_AUTHENTICATORin PR #11815 (Jun 18, 2026). - Non-canonical authenticator — Any
IAuthenticatorcontract not in the canonical set. Permissionlessly deployable and registerable, usable inside ordinary EVM execution (e.g. a wallet-defined recovery call), but not usable to authenticate a transaction directly over the mempool path. - p256 / passkey — Two canonical authenticator entries: P-256 (secp256r1) raw signatures and WebAuthn/FIDO2 passkey signatures, both deriving
actorId = keccak256(x || y). - replaySafeHash — The account- and chain-scoped digest used by
validateSignatureto prevent cross-account signature replay. First prototyped in Base PR #45 and made canonical in evolved form by EIP PR #12135. - validateSignature — The Keystore's account-aware signature path. It consumes a
Local (0x01)orMultichain (0x02)envelope, authenticatesreplaySafeHash, and returns actor scope.
5. Transaction Format and Fields
- AA_PAYER_TYPE — The magic byte (
0x7A) prefixing the payer's signature-hash preimage, used only for domain separation from the sender's signature; not a registered EIP-2718 transaction type. Renumbered from0x7Cin PR #11903 (Jul 8, 2026). - AA_TX_TYPE — The EIP-2718 transaction type byte for EIP-8130 transactions,
0x79. It was renumbered from0x7Bin PR #11903 to avoid a CIP-64 collision. - account_changes — The transaction field carrying typed entries mutating account state: create (
0x00), config change (0x01), delegation (0x02). Unified from two separate fields (account_initialization,key_changes) in PR #11367 (Mar 3, 2026). - call phase — One atomic group of calls within
calls; if any call in a phase reverts, that phase's state is discarded and remaining phases are skipped, but earlier committed phases persist. - calls — The transaction field carrying a two-level array of call phases (
[[call,...],[call,...]]); calls within a phase are atomic, phases commit independently in sequence. - CBOR — Concise Binary Object Representation. Open ERC-8340 uses its deterministic encoding rules to structure EIP-8130 metadata without changing the field's opaque consensus treatment.
- metadata — An opaque, signed transaction field for wallet attribution and annotation data, shipped in PR #11805 (Jun 15, 2026). Open ERC-8340 proposes deterministic CBOR records for attribution, memos, call scope, and offchain commitments.
- payer / payer_auth — See Gas Sponsorship and Payer Model below.
- REPLAY_ID_TYPE — The magic prefix (
0x7901) domain-separating thereplay_idhash used for nonce-free-mode deduplication. - sender / sender_auth —
senderis the sending account address (empty for an EOA signature, in which case it is recovered via ecrecover);sender_authis the raw ECDSA signature orauthenticator || datablob authenticating it.senderwas renamed fromfromin PR #11526 (May 11, 2026). - valid_after / valid_before — The EIP-8130 transaction validity window, expressed as
uint64Unix milliseconds. Nonce-free mode requires a finitevalid_before.
6. Nonces and Replay Protection
- Mempool replacement — The rule that a replacement transaction must raise
max_priority_fee_per_gasby at least the node's minimum bump and be independently fully valid; standard/2D replacements share(sender, nonce_key, nonce_sequence), nonce-free replacements share(sender, replay_id). - NONCE_FREE_EXPIRY_WINDOW — The chain parameter bounding how far in the future a nonce-free transaction's
valid_beforemay be set. - Nonce-free mode — The mode selected by
nonce_key == NONCE_KEY_MAX, relying on finitevalid_beforeplusreplay_iddeduplication instead of a sequential nonce. - NONCE_KEY_MAX — The sentinel value (
2^256 - 1) fornonce_keyselecting nonce-free mode, in which the protocol never reads or increments nonce state. - nonce_key / nonce_sequence — The packed two-dimensional nonce fields:
nonce_keyselects a channel (0standard,1..NONCE_KEY_MAX-1parallel,NONCE_KEY_MAXnonce-free),nonce_sequenceis the expected sequence number within that channel. - REPLAY_BUFFER_CAPACITY — The protocol constant or chain parameter sizing the fixed-capacity consensus ring buffer of
replay_ids used for nonce-free dedup; consensus state, not per-node bookkeeping. - replay_id — A
keccak256-derived deduplication identifier for nonce-free transactions, deliberately excluding fee fields and both auth blobs so fee-bumped or re-signed variants of the same logical transaction collapse to one mempool slot. Defined in PR #11752 (Jun 2, 2026).
7. Gas Sponsorship and Payer Model
- AA_BASE_COST — The recommended fixed per-transaction intrinsic-gas overhead (15,000 gas), explicitly a reference value rather than a protocol constant (clarified in PR #11813, Jun 17, 2026).
- Gas metering isolation — The design under which
payer_auth_costis metered outsidegas_limitand charged separately to the payer, since the payer chooses their own authenticator unilaterally and it is excluded from both signature hashes;sender_auth_costis included ingas_limitsince both parties sign over it. - payer — The transaction field naming the gas-paying address; empty means the sender self-pays.
- payer_auth — The signature/authenticator blob authorizing the payer, structurally identical to
sender_auth; empty means self-pay. - Self-pay — The mode where
payeris empty (or equals the sender's own address) and the resolved actor must holdSELF_PAYER; includes the sub-case of a dedicated gas key funding another key's transactions on the same account. - Sponsored transaction — The mode where
payernames a different address whoseactor_configmust grantSPONSOR_PAYER, letting one account fund gas for another.
8. Account Lock and Mempool Safety
- Account Lock — A per-account mechanism freezing actor-config changes and delegations while set. The draft grants a higher mempool tier when this is combined with a stateless authenticator; stateful and delegated authenticators can retain other invalidation dependencies. Introduced in PR #11367 (Mar 3, 2026), lifecycle simplified in PR #11918 (Jul 13, 2026).
- DEFAULT_EOA_REVOKED (flag) — Disables the implicit secp256k1 self actor.
createAccountandimportAccountset it by default, the proposal's quantum-safe default. - lock_union — The packed
uint48lock field interpreted as an unlock delay or timestamp; the configured delay itself is bounded touint16seconds. - Lock / Unlock changes — Admin-authorized local operations inside
applySignedAccountChanges, replacing the dedicated lock function in PR #12135. - LOCKED (flag) — Freezes authority changes and delegation; only Unlock and IncrementLocalEpoch remain permitted.
9. Account Creation, Import, and Cross-Chain Portability
- actors_commitment — A hash of the ordered list of individually hashed initial-actor leaves, folded into the CREATE2 salt. PR #12135 changed the commitment to leaf-first hashing.
- chain_id = 0 channel — The actor-config-change convention where
chain_id == 0targets the multichain change-sequence counter. The same signature may be submitted separately to compatible deployments on multiple chains; lock changes are local-only. See /cross-chain-accounts. - computeAddress — The view function returning an account's CREATE2-derived address for a given
userSalt,bytecode, andinitialActors, without deploying it. - CREATE2 address derivation — The formula computing an account from
KEYSTORE_ADDRESS,effective_salt, and deployment bytecode. It reproduces an address only where inputs and Keystore deployment match. - createAccount — The function creating a new account via a
createentry, deriving its address fromuser_saltand theinitial_actorscommitment. - DEPLOYMENT_HEADER — A fixed 14-byte EVM loader prefixing
codeindeployment_code, letting the same bytes serve as ordinary CREATE2 init code on non-8130 chains while an 8130-native chain placescodedirectly. - effective_salt —
keccak256(user_salt || actors_commitment), the salt actually used in the CREATE2 formula, binding the account's address to its initial actor set. - Existing Smart Contract (account type) — One of three account-creation paths: an already-deployed account (e.g. an ERC-4337 wallet) registers actors via
importAccount()rather than being created fresh. - importAccount — The function letting an already-deployed contract account bootstrap into EIP-8130's actor model via an ERC-1271 signature, without redeploying; rejected if the account already has any 8130 state.
- MAX_CODE_SIZE — The EIP-170 deployment-code limit. PR #12173 removed its create-entry check from the protocol prose, leaving deployment validation to the canonical implementation.
- user_salt — The caller-chosen
bytes32salt input to CREATE2 address derivation, folded withactors_commitmentintoeffective_salt.
10. System Contracts, Precompiles, and Constants
- 0xef0100 — The EIP-7702 delegation-indicator prefix reused by EIP-8130 account delegation. PR #12148 removed the redundant per-authenticator delegated-code check from native authentication.
- DEFAULT_ACCOUNT_ADDRESS — The CREATE2-derived address a code-less EOA sender auto-delegates to when no create or delegation entry applies, giving every EOA a default wallet implementation.
- getNonce — The read-only function on the Nonce Manager precompile,
getNonce(address account, uint256 nonceKey) returns (uint64). - INonceManager — The interface for the Nonce Manager precompile, exposing
getNonceto ordinary EVM execution. - ITransactionContext — The interface for the Transaction Context precompile, exposing
getTransactionSender(),getTransactionPayer(), andgetTransactionSenderActorId()duringcallsexecution. - MAX_ACCOUNT_CHANGES — The named per-transaction cap on config-change entries introduced with the unified
account_changesschema in PR #11367 (Mar 3, 2026). The current spec no longer names the constant, expressing it instead as a configurable per-transaction limit on config-change entries enforced as a mempool rule. - Nonce Manager — The precompile at
NONCE_MANAGER_ADDRESSholding two-dimensional nonce state, read and incremented directly by the protocol during AA transaction processing. - NONCE_MANAGER_ADDRESS — The fixed address (
0x813000000000000000000000000000000000aa01) of the Nonce Manager precompile. - Transaction Context (precompile) — The precompile at
TX_CONTEXT_ADDRESSexposing the resolved sender, payer, and sender actorId to in-flight EVM execution; replaced an earlier EIP-1153-transient-storage-based design in PR #11388 (Mar 9, 2026). - TX_CONTEXT_ADDRESS — The fixed address (
0x813000000000000000000000000000000000aa02) of the Transaction Context precompile.
11. Related EIPs
- EIP-170 — The EVM max-contract-code-size limit (24,576 bytes); added to EIP-8130's
requiresheader in PR #11609 (Jun 2, 2026) to boundcreate-entry code size. - EIP-1153 — Transient storage (
TSTORE/TLOAD); EIP-8130's originalrequiresdependency for its first Transaction Context design, dropped once a dedicated precompile replaced it (PR #11388, Mar 9, 2026). - EIP-2542 — An unrelated, pre-existing EIP formally withdrawn on June 30, 2026 citing EIP-8141 as its superseder, the first EIP-8141-related formal supersession noted in this site's research.
- EIP-2718 — The typed-transaction envelope standard; EIP-8130's
AA_TX_TYPEis registered under this scheme, as are every other proposal covered on this site. - EIP-7702 — Set-code delegation for EOAs (
0xef0100indicator). EIP-8130's body text depends on this mechanism for its own delegation entries without listing 7702 inrequires(it was added, then dropped from the frontmatter in PR #11492, Apr 14, 2026). - EIP-8130 — "Account Abstraction by Account Configuration," this site's subject: a native-AA transaction type authenticating senders through a small canonical authenticator allowlist rather than arbitrary wallet-code execution. See /current-spec.
- EIP-8141 — "Frame Transaction," EIP-8130's most direct competitor: a fully programmable native-AA transaction type built from purpose-labeled "frames," restricting public mempool relay to four validation-prefix shapes rather than fixing an authenticator interface. See /eip-8141.
- EIP-8175 — "Composable Transaction," a flat, non-recursive alternative bundling typed
capabilitieswith a separatesignatureslist and a programmablefee_authprelude for sponsorship. See /eip-8175. - EIP-8202 — "Scheme-Agile Transaction" (also "Schemed Transaction"), a single flat execution payload plus typed
authorizations/extensionslists. Its current draft defines ordinary and Merkle-committed ephemeral secp256k1 schemes; earlier P-256 and Falcon text was removed before merge. See /eip-8202. - EIP-8223 — "Contract Payer Transaction," a complementary, narrow-scope static gas-sponsorship mechanism gated by a canonical payer-registry predeploy at
address(0x13), no EVM execution. See /eip-8223. - EIP-8224 — "Counterfactual Transaction," a complementary shielded gas-funding mechanism using an fflonk ZK proof against canonical fee-note contracts, solving the "bootstrap problem" for fresh EOAs. See /eip-8224.
- EIP-8250 / EIP-8266 / EIP-8272 / EIP-8288 — EIP-8141's
requires-linked sibling EIPs (keyed nonces, expiring nonces, recent roots, and PQ/STARK signature aggregation, respectively): EIP-8141's growth model of composing via separate proposals rather than absorbing every feature into its own spec text. - EIP-XXXX (Tempo-like Transactions) — A pre-draft gist (no EIP number, no PR) by Georgios Konstantopoulos bundling a fixed set of wallet UX primitives (batching, validity windows, sponsorship, 2D nonces, passkeys) with no programmable validation and no opcodes. See /eip-xxxx.
12. EIP-8141 (Frame Transaction) Terminology
- APPROVE (0xaa) — EIP-8141's central new opcode; terminates the calling frame successfully and sets transaction-scoped approval flags for payment and/or execution. It charges only memory expansion, with no separate base cost (PR #12003, Jul 23, 2026).
- ARBITRARY (scheme 0x0) — An EIP-8141 outer-signature scheme performing no protocol-level crypto check;
SIGPARAMexposes its raw bytes so custom verification can run inside a frame. Each entry adds 100 intrinsic gas (PR #11976, Jul 20, 2026). - DEFAULT (frame mode 0) — An EIP-8141 frame called from
ENTRY_POINT, used for general execution and post-op logic such as sponsor refunds. - DEP_VERIFY_FRAME_MODE (= 3) — A new frame mode proposed by EIP-8141's sibling EIP-8288 to support native post-quantum signature and STARK proof aggregation at the block level.
- direct evaluation (EIP-8141) — The PR #12001 fast path letting clients evaluate the default-code, expiry-verifier, and canonical-paymaster validation prefixes without tracing EVM execution, under the same gas and dependency rules.
- EXPIRY_VERIFIER — The sole sanctioned path in EIP-8141 for reading
TIMESTAMP-derived expiry inside a validation prefix: a VERIFY frame targetingaddress(0x8141)that enforces an 8-byte Unix-seconds deadline, sinceTIMESTAMPitself is a banned opcode there. - frame — EIP-8141's core structural primitive: one of up to 64 purpose-labeled sub-calls (
DEFAULT,VERIFY,SENDER) composing a transaction, each independently gas-metered. - MAX_FRAMES — The cap on frames per EIP-8141 transaction, reduced from an original 1,000 to 64 via PR #11521 (Apr 14, 2026).
- MAX_VERIFY_GAS — The 100,000-gas cap EIP-8141 imposes on its restrictive mempool tier's validation-prefix execution.
- SENDER (frame mode 2) — An EIP-8141 frame called from
tx.sender, requiring an approval already granted by a prior VERIFY frame. - SIGDATACOPY (0xb5) — EIP-8141's seventh opcode, added by PR #12187 to copy raw signature bytes with static stack requirements.
- signatures list — EIP-8141's dedicated outer transaction field, a typed list of
[scheme, signer, msg, signature]tuples (schemesARBITRARY,SECP256K1,P256) built as a forward-compat hook for future PQ aggregation. secp256k1 and P-256 now require canonical low-s signatures; the merged draft has no explicit list bound. - state gas (EIP-8141) — The second per-frame resource dimension added by PR #12062, with its own limit, receipt accounting, payer settlement, and EIP-8037 dependency.
- TXPARAM / FRAMEDATALOAD / FRAMEDATACOPY / FRAMEPARAM / SIGPARAM — Five EIP-8141 opcodes reading transaction-, frame-, and signature-scoped data;
SIGPARAMexposesARBITRARYsignature parameters. - VERIFY (frame mode 1) — An EIP-8141 frame dispatched with STATICCALL semantics; a frame carrying approval authority must call
APPROVEto succeed.
13. EIP-8175 (Composable Transaction) Terminology
- capabilities — EIP-8175's flat, typed list of execution entries (
CALL,CREATE), replacing EIP-8141's nested frame structure with sequential, non-recursive composition. - fee_auth — EIP-8175's optional sponsorship field; naming an address there triggers a protocol-run "prelude call" to that contract, which credits ETH via the
RETURNETHopcode. - RETURNETH — An EIP-8175 opcode debiting/crediting ETH between a contract and its parent or an escrow, used by the
fee_authprelude. - ROLE_SENDER / ROLE_PAYER — The two roles an EIP-8175
signaturesentry can carry, distinguishing sender authentication from payer authentication.
14. EIP-8202 (Scheme-Agile Transaction) Terminology
- authorizations (EIP-8202) — EIP-8202's typed list of
[role_id, scheme_id, witness]tuples carrying scheme-agile sender proofs; onlyROLE_SENDERis currently defined. - EXT_BLOB / EXT_SET_CODE — Two typed entries in EIP-8202's
extensionslist, carrying EIP-4844 blob fields and EIP-7702-style scheme-agile set-code delegations respectively. - extensions (EIP-8202) — EIP-8202's typed list of
[extension_id, extension_payload]entries carrying orthogonal protocol features (blobs, set-code delegation) alongside the single execution payload. - SCHEME_EPHEMERAL_K1 (0x01) — EIP-8202's Merkle-committed one-time secp256k1 scheme. A seed derives
2^20ephemeral keys offchain; each transaction carries a recoverable signature, Merkle root, and proof for the nonce-selected key. - scheme_id — The protocol-registered enum value identifying a signature scheme in EIP-8202's
authorizationslist; adding a scheme means registering a newscheme_id, not changing the envelope. - SCHEME_SECP256K1 (0x00) — EIP-8202's ordinary recoverable secp256k1 authorization scheme.
15. EIP-8223 and EIP-8224 (Contract Payer / Counterfactual) Terminology
- authorize(sender) — The EIP-8223 call a payer contract makes on the
0x13predeploy to register the single EOA it will sponsor gas for. - fee-note contract — An EIP-8224 canonical contract instance (identified by
EXTCODEHASH, not a fixed address) holding shielded ETH deposits as private Poseidon commitments redeemable for gas. - fflonk — The ZK proof system (over BN254) EIP-8224 uses to prove ownership of an unspent fee-note commitment without revealing which one, reusing existing powers-of-tau trusted-setup infrastructure.
- nullifier — The value consumed on spending an EIP-8224 fee note, preventing the same shielded deposit from being spent twice.
- Payer Registry Predeploy (0x13) — EIP-8223's single canonical contract address holding a one-sender-per-payer authorization mapping, read via one SLOAD with no EVM execution.
- Poseidon commitment — The private cryptographic commitment representing an unspent EIP-8224 fee note.
16. EIP-XXXX (Tempo-like Transactions) Terminology
- Keychain (wrapper) — EIP-XXXX's deferred hook for access/session keys, wrapping an inner signature with a
user_addressfor delegation; expiry, spending-limit, and revocation rules are not yet specified. - MAX_WEBAUTHN_SIG_SIZE — EIP-XXXX's bound on WebAuthn signature size (2,049 bytes), keeping validation cost deterministic.
- validity window (Tempo-like) — The gist's protocol-enforced
valid_afterandvalid_beforefields. EIP-8130 independently adopted fields with the same names in PR #12135.
17. Related ERCs
- ERC-4337 — The widely-deployed account-abstraction standard using a
validateUserOpentry point that executes arbitrary wallet code during validation; the paradigm case EIP-8130's motivation section critiques (without naming it) for forcing nodes to simulate arbitrary EVM. Existing ERC-4337 wallets can migrate onto EIP-8130 viaimportAccount(). - ERC-7562 — The ERC-4337-derived mempool-simulation ruleset; EIP-8141 references an ERC-7562-based permissive second mempool tier for use cases exceeding its restrictive validation-prefix policy.
- ERC-7579 — A modular-account standard for ERC-4337 wallets; ERC-8286 requires it alongside EIP-8141.
- ERC-8168 — "8130 Payer Service Capability," proposed in open ERC PR #1555. Its August updates aligned EIP-8130 validity fields and require offers to support
payer_sendTransaction,payer_signTransaction, or both. - ERC-8286 — "Modular Accounts for Frame Transactions" (ERC PR #1794, open as of August 20, 2026), an application-layer standard building on EIP-8141.
- ERC-8340 — "Transaction Metadata Encoding," proposed in open draft ERC PR #1883. It defines deterministic CBOR metadata for attribution, memos, transaction/phase/call scope, and salted offchain commitments, plus an ERC-5792 wallet capability; it does not change EIP-8130 consensus rules.
18. Governance and Process Terms
- Base Cobalt — The Base upgrade whose current page lists EIP-8130, Sepolia, and mainnet as planning for September 2026. It is not current production activation or Ethereum L1 inclusion.
- Base reference implementation — Base's canonical
base/eip-8130contracts and tests. PR #12135 makes these contracts authoritative for detailed Keystore mechanics. - Base Vibenet — Base's ephemeral devnet at
vibes.base.orgfor testing EIP-8130 before activation. - Celo CIP-64 — An existing production account-abstraction system on Celo whose migration onto EIP-8130 was discussed at length on the EthMagicians thread (posts #12-23), ultimately forcing the
AA_TX_TYPE/AA_PAYER_TYPErenumbering to avoid an OP Stack transaction-type collision. See /cross-chain-accounts and /developer-tooling. - Draft (EIP status) — EIP-8130's formal status as of August 20, 2026. Base's Cobalt planning does not change Ethereum's status.
- EthMagicians thread — The community discussion forum thread for EIP-8130 (ethereum-magicians.org/t/eip-8130-account-abstraction-by-account-configurations/25952), the primary venue for design debate outside the PR review process.
- Hegotá (hard fork) — The Ethereum hard-fork "Considered for Inclusion" list EIP-8141 joined via PR #11537 (merged Apr 30, 2026). EIP-8130 has no equivalent Ethereum L1 listing; Base's Cobalt plan is separate.
- Significant PR — This site's own classification for a merged PR meeting size or scope thresholds (large diff, cross-cutting spec changes, opcode/constant changes) warranting a full why/what/why-it-matters treatment in /merged-changes rather than a one-line entry.