This is a generic UI for uploading data to a Data Liquidity Pool (DLP). This app enables users to contribute data to the Vana network while maintaining privacy through client-side encryption.
- Connect your EVM compatible wallet, which holds some $VANA tokens
- Login to your Google Drive or Dropbox for data storage
- Drag and drop your data, which is encrypted client-side before being stored in your personal storage
- A transaction is written on-chain, which DLP validators will pick up to verify your file
- The Satya Network (using Trusted Execution Environment) validates your contribution
- Secure wallet connection with Wagmi and Para
- Client-side encryption using OpenPGP before any data leaves your browser
- Integration with Google Drive and Dropbox for personal storage
- On-chain transaction writing using Vana smart contracts
- TEE-based data validation through the Satya Network
- Responsive UI built with modern components
- Node.js (version 16 or newer)
- Yarn package manager
- An EVM-compatible wallet with $VANA tokens
- Google Drive or Dropbox account
# First, install the dependencies
yarn install
# Copy .env.example to .env
cp .env.example .env
# Run the development server
yarn devOpen http://localhost:3000 with your browser to see the app running.
The Vana network strives to ensure personal data remains private, and is only shared with trusted parties. You can read more about how a DLP uses client-side encryption to protect user data here.
Data submitted to the Vana network is validated using a Proof of Contribution system through the Satya Network, which consists of highly confidential nodes running on special hardware. The validation process ensures:
- Your encrypted data is securely decrypted within a trusted execution environment (Intel TDX)
- Custom validation logic for your DLP runs against the data
- Attestations are generated and proofs are written on-chain
For more details about how data validation works on Vana, see the data validation documentation.
You can find out more about building a data liquidity pool with Vana here.