···524524 collection: 'app.bsky.graph.verification',
525525 record: verificationRecord,
526526 });
527527- const postText = `I just verified @${targetHandle} using Bluesky's new decentralized verification system. Try verifying someone yourself using @cred.blue's new verification tool: https://cred.blue/verify`;
527527+ const postText = `I just verified @${targetHandle} using Bluesky's new verification system. Try verifying someone yourself using @cred.blue's verifier tool: https://cred.blue/verifier`;
528528 const encodedText = encodeURIComponent(postText);
529529 const intentUrl = `https://bsky.app/intent/compose?text=${encodedText}`;
530530 const successMessageJSX = (
531531- <>Successfully created verification for {targetHandle}! <a href={intentUrl} target="_blank" rel="noopener noreferrer" className="verifier-intent-link">Post on Bluesky?</a></>
531531+ <>Successfully created verification for {targetHandle}! <a href={intentUrl} target="_blank" rel="noopener noreferrer" className="verifier-intent-link">Post on Bluesky to let them know?</a></>
532532 );
533533 setStatusMessage(successMessageJSX);
534534 setTargetHandle('');
···595595 <div className="verifier-intro-container">
596596 <h1>Bluesky Verifier Tool</h1>
597597 <p className="verifier-intro-text">
598598- With Bluesky's new decentralized verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers".
598598+ With Bluesky's new verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers".
599599 </p>
600600 <p className="verifier-intro-text">
601601 Try verifying an account for yourself or check to see who has verified you! It's as simple as creating a verification record in your PDS that points to the account you want to verify. The record looks like this:
···676676 {(() => {
677677 const statsText = `My verification stats:
678678679679-${networkVerifications.mutualsVerifiedMe.length} mutuals verified me
680680-${networkVerifications.followsVerifiedMe.length} follows verified me
681681-${networkVerifications.mutualsVerifiedAnyone}/${networkVerifications.fetchedMutualsCount} mutuals verified others
682682-${networkVerifications.followsVerifiedAnyone}/${networkVerifications.fetchedFollowsCount} follows verified others
679679+${networkVerifications.mutualsVerifiedMe.length} mutuals verified me,
680680+${networkVerifications.followsVerifiedMe.length} follows verified me,
681681+${networkVerifications.mutualsVerifiedAnyone}/${networkVerifications.fetchedMutualsCount} mutuals verified others,
682682+${networkVerifications.followsVerifiedAnyone}/${networkVerifications.fetchedFollowsCount} follows verified others,
683683684684-Check yours: https://cred.blue/verify`;
684684+Check yours: https://cred.blue/verifier`;
685685 const encodedStatsText = encodeURIComponent(statsText);
686686 const statsIntentUrl = `https://bsky.app/intent/compose?text=${encodedStatsText}`;
687687 return (<a href={statsIntentUrl} target="_blank" rel="noopener noreferrer" className="verifier-share-stats-link">Share your stats!</a>);