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

update docs #1867

Merged
merged 6 commits into from
Feb 5, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ In order to directly call `from`, `to`, and `tokenId` on `transaction`, add the
```javascript
console.log(
`\n` +
`New ERC-712 transaction found in block ${event.blockNumber} with hash ${event.transactionHash}\n` +
`New ERC-721 transaction found in block ${event.blockNumber} with hash ${event.transactionHash}\n` +
`From: ${
transaction.from === "0x0000000000000000000000000000000000000000"
? "New mint!"
Expand Down
2 changes: 1 addition & 1 deletion snaps/features/transaction-insights.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permission object, and set it to `true`:

```json title="snap.manifest.json"
"initialPermissions": {
"endowment:signature-insight": {
"endowment:transaction-insight": {
"allowTransactionOrigin": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion snaps/learn/tutorials/transaction-insights.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ mkdir packages/snap/images

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

<details>
<summary>Icon attribution</summary>
Expand Down
2 changes: 1 addition & 1 deletion wallet/how-to/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export const store = {
// Dispatch the event, which triggers the event listener in the MetaMask wallet.
window.dispatchEvent(new Event("eip6963:requestProvider"))

// Return a function that removes the event listern.
// Return a function that removes the event listener.
return () =>
window.removeEventListener("eip6963:announceProvider", onAnnouncement)
},
Expand Down
Loading