Bob-Decentralized
Crowdsourced Intelligence, Blockchain-Powered Rewards
Decentralised
Data Ecosystem

Quest Creation Hub
This section illustrates how the decentralized platform enables businesses, researchers, and content creators to manage quests for data labeling, content rating, and market research. Contributors participate in quests and earn crypto rewards.
Quest Creator.jsx
1const QuestCreator = () => {
2 const [quests, setQuests] = React.useState([]);
3 const [newQuest, setNewQuest] = React.useState({ title: '', description: '' });
4
5 const createQuest = () => {
6 setQuests([...quests, newQuest]);
7 setNewQuest({ title: '', description: '' });
8 };
9
10 return (
11 <div className="p-4 border rounded-lg">
12 <h2 className="text-xl font-bold mb-4">Create Quest</h2>
13 <input
14 type="text"
15 value={newQuest.title}
16 onChange={(e) => setNewQuest({ ...newQuest, title: e.target.value })}
17 placeholder="Title"
18 className="p-2 border rounded mb-2"
19 />
20 <textarea
21 value={newQuest.description}
22 onChange={(e) => setNewQuest({ ...newQuest, description: e.target.value })}
23 placeholder="Description"
24 className="p-2 border rounded mb-2"
25 />
26 <button onClick={createQuest} className="px-4 py-2 bg-blue-500 text-white rounded">Create</button>
27 </div>
28 );
29 };
Why Bob

Solana-Powered Payments
Instant, low-cost cross-border payouts with secure Solana transactions.

Variety of Datasets
Collect and label diverse datasets for AI, research, and market analysis

Data Collection & Analysis
Real-time insights, analytics, and exportable reports for AI-ready data..

Cross-Border Payments
Fast, low-cost Solana transactions for seamless global contributor payouts