Skip to content
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 @@ -13,7 +13,7 @@ export default function SignMessage() {
const handleSignMessage = async () => {
if (!isConnected || !address) return;

const message = `Welcome to Academic Sandbox!
const message = `Welcome to Decentralized Reputation System!

This signature creates your analytics session.

Expand All @@ -22,7 +22,7 @@ Chain ID: ${chainId}
Timestamp: ${new Date().toISOString()}
Domain: ${window.location.hostname}

By signing this message, you agree to participate in our educational platform.`;
By signing this message, you agree to participate in our Decentralized Reputation System platform.`;

try {
await signMessage({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function DomainVerification() {
hostname: window.location.hostname,
origin: window.location.origin,
projectId,
configuredDomain: "https://educational-sandbox.vercel.app"
configuredDomain: "https://decentralized-reputation-system-teal.vercel.app"
});
}
}, []);
Expand Down
4 changes: 2 additions & 2 deletions frontend/decentralized-reputation-system/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function AnalyticsStatus() {
if (typeof window !== 'undefined') {
const checks = {
projectIdSet: !!(window as any).reownProjectId,
domainConfigured: window.location.hostname === 'educational-sandbox.vercel.app' ||
domainConfigured: window.location.hostname === 'decentralized-reputation-system-teal.vercel.app' ||
window.location.hostname === 'localhost',
appKitInstance: !!(window as any).appkit,
analyticsEnabled: true // Assuming it's enabled in config
Expand Down Expand Up @@ -163,7 +163,7 @@ export default function Home() {
</header>

<h2 className="my-8 text-2xl font-bold leading-snug text-center">
Educational Sandbox with Analytics
Decentralized Reputation System with Analytics
</h2>

<div className="max-w-4xl w-full space-y-4">
Expand Down
Loading