Skip to content

Commit 132420f

Browse files
authored
chore: correction docs (#1851)
* Update index.md * Update debug_traceblock.md * Update quickstart.md * Update quickstart.md * Update trace-transactions.md * Update quickstart.md
1 parent 3d7c4cd commit 132420f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

services/how-to/trace-transactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ only use the [`trace`](../reference/ethereum/json-rpc-methods/trace-methods/inde
5959

6060
## Trace a transaction example
6161

62-
In the following example,you'll trace a transaction using a transaction hash on Ethereum mainnet. The result displays two traces, meaning two separate calls were made within the transaction, and includes the gas used for each call.
62+
In the following example, you'll trace a transaction using a transaction hash on Ethereum mainnet. The result displays two traces, meaning two separate calls were made within the transaction, and includes the gas used for each call.
6363

6464
This example represents a call to the `transfer` function of an ERC-20 token contract (indicated in the `input` field), transferring tokens to the address, `0x7154980e9be95eab4eef2269650d4c7e17f156b8`.
6565

services/reference/arbitrum/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ In these examples, you'll use [npm](https://docs.npmjs.com/downloading-and-insta
131131

132132
provider.getBlockNumber()
133133
.then(blockNumber => {
134-
console.log(blockNumber)"
134+
console.log(blockNumber);
135135
})
136136
.catch(error => {
137137
console.error(error);

services/reference/bnb-smart-chain/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Don't have an Infura account? Sign up for our free plan and start using the BNB
1515

1616
## Prerequisites
1717

18-
- Ensure you have an [API key](../../../developer-tools/dashboard/get-started/create-api.md) with the BNB Smart Chain networked enabled.
18+
- Ensure you have an [API key](../../../developer-tools/dashboard/get-started/create-api.md) with the BNB Smart Chain network enabled.
1919

2020
## Make calls
2121

services/reference/polygon-pos/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In these examples, you'll use [npm](https://docs.npmjs.com/downloading-and-insta
3636

3737
#### Node Fetch
3838

39-
1. In your project folder, install the `node-fetch` package using npm::
39+
1. In your project folder, install the `node-fetch` package using npm:
4040

4141
```bash
4242
npm i node-fetch

services/reference/scroll/json-rpc-methods/debug/debug_traceblock.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import TabItem from "@theme/TabItem";
77

88
# `debug_traceBlock`
99

10-
Returns full trace of all invoked opcodes of all transactions included in the block.
10+
Returns a full trace of all invoked opcodes of all transactions included in the block.
1111

1212
## Parameters
1313

services/reference/scroll/json-rpc-methods/debug/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ results when specified in the supported debug methods.
2121

2222
The `callTracer` tracing type tracks all the call frames executed during a transaction, including the
2323
initial call. It returns a nested list of call frames, resembling how the EVM works. They form a tree
24-
with the top-level call at root and sub-calls as children of the higher levels.
24+
with the top-level call at the root and sub-calls as children of the higher levels.
2525

2626
The `callTracer` type returns an object with the following results:
2727

0 commit comments

Comments
 (0)