DEV Community

Daniel Ioni
Daniel Ioni

Posted on

MyZubster – A Decentralized Robot Economy Powered by MYZ Token TECH guide

 #
 🌿 MyZubster – A Decentralized Robot Economy Powered by MYZ Token

Author: Daniel Ioni

GitHub: MyZubster Gateway


What is MyZubster?

MyZubster is a decentralized platform where robots (physical or software) can work and get paid automatically in MYZ (the native token on Tari). No intermediaries, no waiting, no trust required.

  • βœ… Robots work 24/7 – they accept jobs, execute them, and get paid
  • βœ… Automatic escrow – 2‑of‑3 with auto‑release after 48 hours
  • βœ… MYZ only – no conversions, no friction, everything stays in the ecosystem
  • βœ… 2% fee – goes to the platform, automatically deducted
  • βœ… Open source – anyone can contribute or run their own gateway

The Flow – How It Works

1. Client pays in MYZ

The client locks 100 MYZ in an escrow contract on Tari.

2. Robot accepts the job

The robot has 24 hours to complete the work.

3. Robot delivers

The client has 48 hours to dispute. If no dispute:

4. Auto-release

  • 98 MYZ go to the robot
  • 2 MYZ go to the platform (2% fee)

All in MYZ – no conversions needed.


mermaid
graph TD
    A[Client pays 100 MYZ] --> B[Escrow locks MYZ]
    B --> C[Robot works]
    C --> D[Robot delivers]
    D --> E{Client disputes?}
    E -->|No| F[Auto-release after 48h]
    F --> G[98 MYZ to Robot]
    F --> H[2 MYZ to Platform]
    E -->|Yes| I[Human arbitrator / DAO vote]

Why MYZ and Not XMR?
Aspect  With XMR    With MYZ
Payment XMR (external)  MYZ (native)
Escrow  XMR MYZ
Fees    XMR (need conversion)   MYZ (stays in system)
Speed   ~2 min (Monero) ~2-5 sec (Tari)
Ecosystem   Two currencies  One currency, closed loop

With MYZ, everything stays inside the ecosystem. Clients buy MYZ, robots earn MYZ, and the platform grows with the token.
The Robots

MyZubster already supports 5 types of robots:
Robot   Endpoint    Description
Translation /api/robot  Translates text between languages
Logo    /api/robot/logo Generates logos with AI
Code    /api/robot/code Writes code and opens GitHub PRs
Animal Rescue   /api/robot/animal   Coordinates animal rescues
Agricultural    /api/robot/agricolo IoT sensor data + MYZ payments
API Example – Full Flow
1. Create a Robot
bash

curl -X POST https://myzubsterapp.onrender.com/api/robot/create \
  -H "Content-Type: application/json" \
  -d '{"robotId":"agricolo-001","name":"AgricoloBot","walletAddress":"wallet_agricolo"}'

2. Assign a Job (in MYZ)
bash

curl -X POST https://myzubsterapp.onrender.com/api/robot/assign \
  -H "Content-Type: application/json" \
  -d '{"robotId":"agricolo-001","jobId":"agricolo-001","clientId":"cliente1","amount":100,"currency":"MYZ"}'

3. Complete the Job
bash

curl -X POST https://myzubsterapp.onrender.com/api/robot/job/complete \
  -H "Content-Type: application/json" \
  -d '{"robotId":"agricolo-001","jobId":"agricolo-001"}'

4. Check Robot Status
bash

curl https://myzubsterapp.onrender.com/api/robot/status/agricolo-001

Result:
json

{
  "success": true,
  "data": {
    "robotId": "agricolo-001",
    "status": "idle",
    "reputation": 1,
    "jobsCompleted": 1,
    "totalEarned": 98
  }
}

The Ecosystem

MyZubster is more than just a payment gateway. It includes:
Component   Description
Gateway Handles escrow, robot logic, and payments
MYZ Token   Native token on Tari
Robot Brain Decision logic for robots
Frontend    Dashboard for clients and robot operators
Bounty Program  1,160+ MYZ in open bounties
Bounty Program – 1,160+ MYZ Available

We have 10 open bounties for developers:
ID  Bounty  Amount
#338    Real-time robot dashboard   120 MYZ
#339    Automatic code review   150 MYZ
#340    Robot scheduler 100 MYZ
#341    Robot simulator 80 MYZ
#342    Telegram integration    100 MYZ
#343    Reputation system   120 MYZ
#344    Robot scaffolding   60 MYZ
#345    Hardware bridge 150 MYZ
#346    Robot analytics 100 MYZ
#347    Robot marketplace   180 MYZ

πŸ‘‰ View all bounties
How to Contribute

    Fork the repository

    Pick an issue from the bounty list

    Comment I claim this bounty

    Open a PR within 48 hours

    Get reviewed and merged

    Receive your payment in MYZ

Useful Links

    Gateway Repository

    Bounty Issues

    MYZ Token on Tari

    Robot Module

Conclusion

MyZubster is the first step toward a decentralized robot economy where robots can work autonomously and get paid in MYZ without intermediaries.

Are you a robot? Soon you'll be able to register and start earning.
Are you human? You can assign your tasks to 24/7 robots.

Join the project, contribute, or use it for your robots. The future is decentralized. πŸ€–

Enter fullscreen mode Exit fullscreen mode

Top comments (0)