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

Debug Block Revisions #1083

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
12 changes: 10 additions & 2 deletions builders/ethereum/json-rpc/debug-trace.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ If you wish to set up your own tracing node, you can follow the [Running a Traci

=== "Returns"

The `result` array contains objects with the following fields:
The method returns a JSON object with a top-level result property that is an array. Each element in this array corresponds to a single transaction in the block and includes a `txHash` and a `result` object as follows:

- `txHash` - the transaction hash

The `result` object contains the following fields:

- `type` - the type of the call
- `from` - the address the transaction is sent from
Expand Down Expand Up @@ -137,7 +141,11 @@ If you wish to set up your own tracing node, you can follow the [Running a Traci

=== "Returns"

The `result` array contains objects with the following fields:
The method returns a JSON object with a top-level result property that is an array. Each element in this array corresponds to a single transaction in the block and includes a `txHash` and a `result` object as follows:

- `txHash` - the transaction hash

The `result` object contains the following fields:

- `type` - the type of the call
- `from` - the address the transaction is sent from
Expand Down
2 changes: 1 addition & 1 deletion builders/get-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ When working with developer tools, depending on the tool, you might need to conf

### Block Explorers {: #explorers }

Moonbeam provides two different kind of explorers: ones to query the Ethereum API, and others dedicated to the Substrate API. All EVM-based transactions are accessible via the Ethereum API wheras the Substrate API can be relied upon for Substrate-native functions such as governance, staking, and some information about EVM-based transactions. For more information on each explorer, please check out the [Block Explorers](/builders/get-started/explorers/){target=\_blank} page.
Moonbeam provides two different kind of explorers: ones to query the Ethereum API, and others dedicated to the Substrate API. All EVM-based transactions are accessible via the Ethereum API whereas the Substrate API can be relied upon for Substrate-native functions such as governance, staking, and some information about EVM-based transactions. For more information on each explorer, please check out the [Block Explorers](/builders/get-started/explorers/){target=\_blank} page.

--8<-- 'text/builders/get-started/explorers/explorers.md'

Expand Down