Skip to content

Commit edf2676

Browse files
authored
Merge branch 'main' into add-mobile-link
2 parents c7b238b + 5381bfd commit edf2676

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

LICENSE-MIT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 MetaMask
3+
Copyright (c) 2018-2025 MetaMask
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

services/how-to/trace-transactions.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

vercel.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"source": "/guide/:path*/",
1111
"destination": "/wallet/"
1212
},
13+
{
14+
"source": "/wallet/index/",
15+
"destination": "/wallet/"
16+
},
1317
{
1418
"source": "/wallet/category/get-started/",
1519
"destination": "/wallet/"

0 commit comments

Comments
 (0)