Skip to content

Commit 9a25c49

Browse files
update docs (#1867)
* Update track-erc-721-and-erc-1155-token-transfers.md * Update transaction-insights.md * Update transaction-insights.md * Update styles.module.css * Update connect.md * Update src/components/ParserOpenRPC/CollapseBox/styles.module.css --------- Co-authored-by: Alexandra Carrillo <[email protected]>
1 parent 1c74421 commit 9a25c49

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

services/tutorials/ethereum/track-erc-721-and-erc-1155-token-transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ In order to directly call `from`, `to`, and `tokenId` on `transaction`, add the
159159
```javascript
160160
console.log(
161161
`\n` +
162-
`New ERC-712 transaction found in block ${event.blockNumber} with hash ${event.transactionHash}\n` +
162+
`New ERC-721 transaction found in block ${event.blockNumber} with hash ${event.transactionHash}\n` +
163163
`From: ${
164164
transaction.from === "0x0000000000000000000000000000000000000000"
165165
? "New mint!"

snaps/features/transaction-insights.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ permission object, and set it to `true`:
3131

3232
```json title="snap.manifest.json"
3333
"initialPermissions": {
34-
"endowment:signature-insight": {
34+
"endowment:transaction-insight": {
3535
"allowTransactionOrigin": true
3636
}
3737
}

snaps/learn/tutorials/transaction-insights.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ mkdir packages/snap/images
8383

8484
Download
8585
[this `gas.svg` icon file](https://raw.githubusercontent.com/Montoya/gas-fee-snap/main/packages/snap/images/gas.svg)
86-
into that `ìmages` folder.
86+
into that `images` folder.
8787

8888
<details>
8989
<summary>Icon attribution</summary>

wallet/how-to/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ export const store = {
391391
// Dispatch the event, which triggers the event listener in the MetaMask wallet.
392392
window.dispatchEvent(new Event("eip6963:requestProvider"))
393393

394-
// Return a function that removes the event listern.
394+
// Return a function that removes the event listener.
395395
return () =>
396396
window.removeEventListener("eip6963:announceProvider", onAnnouncement)
397397
},

0 commit comments

Comments
 (0)