Production Transition Guide
User Authentication
Connect with Metamask (Luniverse network, MOC token); new users will automatically be prompted with a registration flow and be added to the database as a user with Contributor role.
If your user is an admin, you will see a button to access the Admin view in the top-right corner.
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_LUNIVERSE_NODE_URL=https://luniverse-mainnet.nodit.io/xxxx
This is currently using an API key for free Luniverse Nodit account created during development. To be replaced with your Luniverse Nodit API key.
VITE_APP_SIGNING_MESSAGE=xxx
Used to verify signatures during user authentication. I will send you this value privately
VITE_APP_LUNIVERSE_API_KEY=Ff9orLVj8u4mTJts1LWNySL7QdihDFe
This is currently using an API key for free Luniverse Nodit account created during development. To be replaced with your Luniverse Nodit API key.
VITE_APP_MOC_TOKEN_ADDRESS=0x878120A5C9828759A250156c66D629219F07C5c6
To be replaced with MOC token address on mainnet.
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