-
Notifications
You must be signed in to change notification settings - Fork 26
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
Content prove online facts #94
base: main
Are you sure you want to change the base?
Content prove online facts #94
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Add Content: Prove Online Facts Without Revealing Too Much |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made a first review about image display. Will make a deeper review later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create a new prove-online-facts/
directory under src/contents
for your all your article images.
src/contents/Prove-Online-Facts.mdx
Outdated
index: 12 | ||
summary: Learn to prove online facts securely without exposing sensitive information using TLSNotary. | ||
author: Chiemezie Agbo | ||
authorIcon: https://x.com/ChiemezieAgbo/photo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use a direct link to your image. This should work:
https://pbs.twimg.com/profile_images/1697221657373360128/iqDhBtk9_200x200.jpg
src/contents/Prove-Online-Facts.mdx
Outdated
|
||
Go to the Chrome Web Store and click **Add to Chrome**. | ||
|
||
![TLSNotary Chrome Extension](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/TLSNotaryChromeExtension.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use a direct relative link to your images. Also consider using an image description. Something like:
<div className="text-center">
<img src="/images/contents/prove-online-facts/TLSNotaryChromeExtension.png" alt="TLSNotary Chrome Extension" />
_TLSNotary Chrome Extension_
</div>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the image folder is under src/contents does this not point to public/images folder
src/contents/Prove-Online-Facts.mdx
Outdated
5. Click the **Load unpacked** button. | ||
6. Select the unzipped folder. | ||
|
||
![Developer mode and Load unpacked](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/DeveloperModeAndLoadUnpacked.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
3. Enter `wss://notary.pse.dev/proxy` as the **Proxy API**. | ||
4. Click **Save**. | ||
|
||
![Hosted Proxy](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/HostedProxy.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
|
||
5. Once selected, you’ll see a summary page. Click **Notarize** to begin. | ||
|
||
![Notarize](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/Notarize.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
|
||
**Action:** Highlight the portions you want to redact, leaving only the relevant details (follower count, friend count, and location) visible. | ||
|
||
![Redact Data](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/RedactData.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
1. Once satisfied with the highlighted and redacted data, click **Notarize**. | ||
2. The TLSNotary extension will connect to the notary server to cryptographically sign the proof. | ||
|
||
![Pending Notarization](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/PendingNotarization.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
- Cryptographic evidence tying the data to your interaction with X (formerly Twitter). | ||
- Under the `Recv` section, it will display only the unhighlighted fields (*follower count* and *location*). | ||
|
||
![Proof](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/Proof.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
src/contents/Prove-Online-Facts.mdx
Outdated
- Here is a shareable link of the notarization: [link](https://explorer.tlsnotary.org/ipfs/bafkreidizzzrgibgmzogw75eeoivkv6yeh75swyuqqll7bdrsm2xqubdbq) | ||
- Check the `Recv` section to verify that only the unhighlighted fields (*follower count* and *location*) are visible. | ||
|
||
![Recv Proof](https://github.com/chiemezie1/app/blob/content-prove-online-facts/public/images/contents/RecvProof.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment about image display
@chiemezie1 is attempting to deploy a commit to the Scroll Team on Vercel. A member of the Team first needs to authorize it. |
…ezie1/app into content-prove-online-facts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review: Image Handling Update for prove-online-facts
-
Reorganized Image Directory
Created a new folder at
src/contents/prove-online-facts/
to store images related to theprove-online-facts
content. -
Updated Image Links
Changed the image references to use relative paths, ensuring they point to the new directory structure:
<img src="../contents/prove-online-facts/TLSNotaryChromeExtension.png" alt="TLSNotary Chrome Extension" />
Note: The format you suggested:
<div className="text-center"> <img src="/images/contents/prove-online-facts/TLSNotaryChromeExtension.png" alt="TLSNotary Chrome Extension" /> _TLSNotary Chrome Extension_ </div>
was not displaying the image because the references assumed the images were located in the Next.js
public
directory.
No description provided.