Skip to content
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

JSON-RPC: Add finalized and safe blocks #200

Merged
merged 15 commits into from
May 10, 2022
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/schemas/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@
"BlockTag": {
"title": "Block tag",
"type": "string",
"enum": ["earliest", "latest", "pending"]
"enum": ["earliest", "latest", "pending", "finalized", "safe", "unsafe"],
"description": "Tags \"finalized\" and \"safe\" refer to the corresponding blocks defined by the most recent fork choice state. Tag \"unsafe\" is an alias to the \"latest\"."
mkalinin marked this conversation as resolved.
Show resolved Hide resolved
mkalinin marked this conversation as resolved.
Show resolved Hide resolved
},
"BlockNumberOrTag": {
"title": "Block number or tag",
Expand Down