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

Add missing schemas to spec overview #118

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Changes from all 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
29 changes: 26 additions & 3 deletions packages/web/spec/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ only just beginning.

This specification currently contains the following primary schemas:


<dl>

<dt>[**ethdebug/format/type**](/spec/type/overview)</dt>
Expand All @@ -27,8 +26,32 @@ A schema for representing dynamic data address ranges in the EVM, particularly
to indicate where high-level variables are allocated in the machine state.
</dd>

<dt>(more coming soon)</dt>
<dd>...</dd>
<dt>[**ethdebug/format/program**](/spec/program/overview)</dt>
<dd>
A schema for representing high-level semantics from the perspective of an
annotated compiled bytecode.
</dd>

</dl>


In addition, this format defines namespaces containing schemas for common
concerns:

<dl>

<dt>[**ethdebug/format/data**](/spec/data/overview)</dt>
<dd>
A namespace of schemas containing definitions of commonly used data
representations, such as how to represent raw byte strings and unsigned
integers.
</dd>

<dt>[**ethdebug/format/materials**](/spec/materials/overview)</dt>
<dd>
A namespace of schemas for representing "external" resources, such as
compiler source inputs.
</dd>

</dl>

Expand Down
Loading