diff --git a/frontend/decentralized-reputation-system/app/components/SignMessage.tsx b/frontend/decentralized-reputation-system/app/components/SignMessage.tsx index f7c2141..340836f 100644 --- a/frontend/decentralized-reputation-system/app/components/SignMessage.tsx +++ b/frontend/decentralized-reputation-system/app/components/SignMessage.tsx @@ -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. @@ -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({ diff --git a/frontend/decentralized-reputation-system/app/context/index.tsx b/frontend/decentralized-reputation-system/app/context/index.tsx index b71e0d4..2b8c23f 100644 --- a/frontend/decentralized-reputation-system/app/context/index.tsx +++ b/frontend/decentralized-reputation-system/app/context/index.tsx @@ -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" }); } }, []); diff --git a/frontend/decentralized-reputation-system/app/page.tsx b/frontend/decentralized-reputation-system/app/page.tsx index 64c94d6..6d63a5a 100644 --- a/frontend/decentralized-reputation-system/app/page.tsx +++ b/frontend/decentralized-reputation-system/app/page.tsx @@ -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 @@ -163,7 +163,7 @@ export default function Home() {

- Educational Sandbox with Analytics + Decentralized Reputation System with Analytics