Production Transition Guide
User Authentication
Connect with Metamask. Non-admin wallets will not be granted access to the admin view.
The list of admins is maintained in the MongoDB users table, where the user type is set either to "Contributor" (non-admin) or "Admin".
Deployment
Currently deployed on free internal Vercel account for testing; please specify the domain/Vercel account you intend to use for production.
Once you have created a Vercel account that will be used for the production deployment, simply authenticate with the Mossland Github account and add the repo directly to Vercel. The deployment configuration is React.js.
Environment Variables
Environment variables are set in the Vercel configuration:
VITE_APP_API_BASE_URL=https://mossland-service.onrender.com
This is the URL for the deployed backend service; please to production URL once backend is deployed.
VITE_APP_SIGNING_MESSAGE=xxx
Used to verify signatures during user authentication. I will send you this value privately
VITE_APP_SEPOLIA_NODE_URL=xxx
Currently, the test environment uses Ethereum Sepolia for smart contract interaction. Once you go live in production this will be removed and replaced with Luniverse node URL on mainnet.
VITE_APP_VOTING_CONTRACT=0xb059a01FfD45C7E849D72a7e1d13712dc3BFAccE
The smart contract address used for proposal creation and voting. To be replaced with the smart contract address once deployed on Luniverse mainnet.
Last updated