Skip to content

Commit

Permalink
Merge pull request #1133 from tehnalogos/tehnalogos-standard-detectio…
Browse files Browse the repository at this point in the history
…n-docs-fixes

Fix standard-detection.md docs
  • Loading branch information
CJ42 authored Sep 13, 2024
2 parents a7a3a31 + e340fc4 commit 25ec1c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/learn/standard-detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ const myUPContract = new ethers.Contract(
const result = await myUPContract.getData(SupportedStandards.LSP3Profile.key);

// Verify if the metadata standard is supported
const supportsLSP3Metadata = result == SupportedStandards.LSP3Profile.value;
const supportsLSP3Metadata =
result.value == SupportedStandards.LSP3Profile.value;

console.log(supportsLSP3Metadata); // true or false
```
Expand Down

0 comments on commit 25ec1c5

Please sign in to comment.