docs: sync EDSL reference + verification status with merged features - #2038
Merged
Conversation
- external-calls: document forwarding a Bytes/dynamic-array member projected from a struct-array element to externals (#1975/#2006), which the EDSL reference did not cover. - VERIFICATION_STATUS: add the new generic frame-reasoning library (execStmts_frame_rule, writeFootprint, ExecutionSummary; #1990/#1994) and finite mapping-slot non-alias certificates (#2001/#2022) under "what is generic today"; refresh the stale theorem/lemma count (2302 -> 5266, from the auto-generated PrintAxioms.lean total) and the Last Updated stamp.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Brings the docs in line with features that have already merged to
main, after auditing the recent merge wave against the docs tree.docs-site/content/edsl/external-calls.mdx— document forwarding aBytes(or dynamic-array) member projected from a struct-array element directly to an external call (e.g.externalCall "hashBytes" [(arrayElement txs idx).callData]), the surface added in feat(Macro,Codegen): struct-array calldata decoding (e.g. PackedUserOperation[]) #1975/Decode projected struct-array bytes calldata (#1975) #2006. This was the one EDSL external-call capability with no reference coverage.docs/VERIFICATION_STATUS.md—Compiler/Proofs/Frames.lean(execStmts_frame_rule,writeFootprint/execStmts_frame_rule_writeFootprint, and theExecutionSummaryfamily) covering Frame rule, footprint computation, and coupling invariants for the IR interpreter #1990 and proof: generated-body execution summaries to auto-discharge discipline axioms #1994;Compiler/Proofs/MappingSlot.lean(proof: discharge Loc.slot_inj keccak non-collision axiom via layout certificates #2001);Every named theorem was verified to exist in the source and in the PrintAxioms registry, and the EDSL syntax was verified against
Contracts/Smoke/ExternalCalls.lean. README/llms.txt generated-stat blocks are left untouched (script-synced and already in sync).Test plan
Note
Low Risk
Markdown-only edits; no compiler, proof, or runtime behavior changes.
Overview
Documentation-only PR that catches the docs up with capabilities and proof work already on
main.external-calls.mdxnow states thatBytes/ dynamic-array fields taken from a struct-array element (e.g.(arrayElement txs idx).callData) can be passed straight intoexternalCall/tryExternalCall, with an example usinghashBytes.VERIFICATION_STATUS.mdextends the Layer 2 “what is generic today” list with theFrames.leanframe-rule /writeFootprint/ExecutionSummarylibrary ([#1990], [#1994]) andMappingSlot.leanmapping-slot non-alias certificates ([#2001]). It also updates the PrintAxioms theorem/lemma count (5266 total; 3645 public, 1621 private) and sets Last Updated to 2026-06-19.Reviewed by Cursor Bugbot for commit 7acfb4a. Bugbot is set up for automated code reviews on this repo. Configure here.