-
Notifications
You must be signed in to change notification settings - Fork 0
Add ERC-4337 EntryPoint proof case study #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Th0rgal
wants to merge
3
commits into
main
Choose a base branch
from
research/erc4337-entrypoint-invariant
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+444
−0
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| import { useState, useEffect, useRef } from 'react' | ||
|
|
||
| const FORMAL_INVARIANTS = [ | ||
| 'attemptExecute(i) → validated(i)', | ||
| 'validated(i) → attemptExecute(i)', | ||
| 'handleOps reverts → no attemptExecute(i)' | ||
| ] | ||
|
|
||
| export default function EntryPointGuarantee() { | ||
| const [showEnglish, setShowEnglish] = useState(true) | ||
| const timerRef = useRef(null) | ||
|
|
||
| useEffect(() => { | ||
| timerRef.current = setTimeout(() => setShowEnglish(false), 5000) | ||
| return () => clearTimeout(timerRef.current) | ||
| }, []) | ||
|
|
||
| const handleToggle = () => { | ||
| if (timerRef.current) { | ||
| clearTimeout(timerRef.current) | ||
| timerRef.current = null | ||
| } | ||
| setShowEnglish((prev) => !prev) | ||
| } | ||
|
|
||
| return ( | ||
| <div className="py-6"> | ||
| <button | ||
| onClick={handleToggle} | ||
| className="inline-flex items-center gap-1.5 text-[12px] font-semibold text-muted hover:text-heading transition-colors cursor-pointer mb-4" | ||
| > | ||
| <svg | ||
| viewBox="0 0 24 24" | ||
| className="w-[13px] h-[13px]" | ||
| fill="none" | ||
| stroke="currentColor" | ||
| strokeWidth="1.5" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| > | ||
| <path d="m5 8 6 6" /> | ||
| <path d="m4 14 6-6 2-3" /> | ||
| <path d="M2 5h12" /> | ||
| <path d="M7 2h1" /> | ||
| <path d="m22 22-5-10-5 10" /> | ||
| <path d="M14 18h6" /> | ||
| </svg> | ||
| {showEnglish ? 'Switch to formal' : 'Switch to English'} | ||
| </button> | ||
|
|
||
| <div className="grid text-center [&>*]:col-start-1 [&>*]:row-start-1"> | ||
| <div | ||
| className="flex flex-col items-center justify-center gap-4 md:gap-5 transition-opacity duration-200 text-[0.945rem] md:text-[1.18125rem] font-mono text-primary leading-snug" | ||
| style={{ | ||
| opacity: showEnglish ? 0 : 1, | ||
| pointerEvents: showEnglish ? 'none' : 'auto' | ||
| }} | ||
| aria-hidden={showEnglish} | ||
| > | ||
| {FORMAL_INVARIANTS.map((formal, i) => ( | ||
| <code | ||
| key={i} | ||
| className="block w-full max-w-full overflow-x-auto px-1" | ||
| > | ||
| {formal} | ||
| </code> | ||
| ))} | ||
| </div> | ||
| <div | ||
| className="flex items-center justify-center transition-opacity duration-200" | ||
| style={{ | ||
| opacity: showEnglish ? 1 : 0, | ||
| pointerEvents: showEnglish ? 'auto' : 'none' | ||
| }} | ||
| aria-hidden={!showEnglish} | ||
| > | ||
| <p className="text-xl md:text-2xl leading-snug font-serif max-w-prose mx-auto px-1"> | ||
| In the modeled handleOps control flow, EntryPoint reaches a user | ||
| operation's execution path if and only if that same operation | ||
| successfully passed validation. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ) | ||
| } | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.