Skip to content

Commit

Permalink
Merge branch 'main' into tools-docs-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 authored Sep 13, 2024
2 parents 3b683d8 + 25ec1c5 commit 4dd1b48
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 4dd1b48

Please sign in to comment.