DEV Community

Daniel Ioni
Daniel Ioni

Posted on

🌍 MyZubster - The World's First Blockchain-Powered Global Map for Plants & Pets

πŸ“’ What is MyZubster?

MyZubster is the world's first decentralized, blockchain-based global map for plants and domestic animals. Every plant and pet registered becomes a permanent, verifiable record on the Monero blockchain.

🌱 Plants β†’ Digital Assets with GPS + Photos
🐾 Pets β†’ NFC Tags + GPS Tracking
πŸ—ΊοΈ Global Map β†’ Transparent & Permanent
πŸ€– AI Agents β†’ Gemma Skills-powered Automation
🌿 Conservation β†’ 5% of fees go to environmental projects
⚠️ Payment Policy: Monero (XMR) ONLY

MyZubster accepts MONERO (XMR) ONLY.
Accepted Rejected
βœ… Monero (XMR) ❌ USDC, USDT, ETH, BTC
βœ… Privacy & anonymity ❌ PayPal, bank transfers
βœ… Micro-transactions ❌ Fiat currencies
Why Monero?

πŸ”’ Privacy - No KYC required
πŸ’° Low Fees - Micro-transactions (€0.10) possible
🌍 Global - Anyone can participate from anywhere
🌿 Sustainable - 5% of fees go to environmental projects
πŸ“Š Fee Structure
Fee Type Percentage Destination
Creator Fee 2% Platform development
Conservation Fund 5% Environmental & animal welfare projects
AI Agent Fee 3% Gemma Skills integration
Operations 90% Infrastructure, hosting, support

Creator Wallet (2%):
text

45M4DW1ug8bdQowWpxucTpgsfjLbVxbYaAra79VewmBobuuhgqTjyD4R3DzpqLM2veiphcB16n24qN1QbLg3y2PYGK3Qkoe

🌱 For Plants
How It Works

Find a plant/tree anywhere in the world

Take photos and note GPS coordinates

Register on MyZubster platform

Pay registration fee in XMR

Plant appears on the global map

Earn rewards in XMR for registrations and verifications
Enter fullscreen mode Exit fullscreen mode

Earn Rewards
Action Reward (XMR)
Register Plant 0.001 XMR
Verify Plant 0.002 XMR
Update Growth 0.0005 XMR
Discover New Plant 0.01 XMR
🐾 For Pets (MyZubster Pets)
How It Works

Attach an NFC tag to your pet's collar

Register your pet on MyZubster Pets

Pay registration fee in XMR

Pet record is stored permanently on blockchain

Pet appears on the global map

Track your pet with GPS
Enter fullscreen mode Exit fullscreen mode

What Data Is Stored
Field Description
Name Pet's name
Species Dog, cat, horse, etc.
Breed Specific breed
Birthdate Age
Owner Monero address
GPS Current location
Photos IPFS hash
NFC ID Unique chip ID
Benefits for Pet Owners
Benefit Description
Proof of Ownership Immutable record on blockchain
Lost Pet Recovery GPS + NFC to find lost pets
Medical History Vaccinations, visits, medications
Earn Rewards Get XMR for pet activities
Community Network of pet owners
πŸ€– AI Agents with Gemma Skills

We've integrated Google's Gemma Skills framework to create specialized AI agents for MyZubster.
Agent Architecture
text

src/agents/
β”œβ”€β”€ init.js # Agent exports
β”œβ”€β”€ skills/
β”‚ β”œβ”€β”€ plantAgent.js # Plant Agent (recognition, monitoring, verification, conservation)
β”‚ β”œβ”€β”€ petAgent.js # Pet Agent (NFC, GPS, health, recovery)
β”‚ β”œβ”€β”€ paymentAgent.js # Payment Agent (XMR, fees, rewards, fraud detection)
β”‚ └── verificationAgent.js # Verification Agent (plant/pet verification, voting, quality scoring)
β”œβ”€β”€ memory/
β”‚ └── longTermMemory.js # Long-term memory system with PostgreSQL
└── orchestrator/
└── agentOrchestrator.js # Agent coordinator and task router

AI Agents
Agent Skills Purpose
🌿 Plant Agent Recognition, Monitoring, Verification, Conservation Identify and track plants
🐾 Pet Agent NFC Reading, GPS Tracking, Health, Recovery Track and protect pets
πŸ’° Payment Agent XMR Processing, Fee Calculation, Rewards, Fraud Detection Handle all payments
πŸ” Verification Agent Plant/Pet Verification, Voting, Quality Scoring Validate registrations
How Agents Work

User registers a plant or pet β†’ Data is sent to the agent system

Agent processes the request β†’ Uses Gemma Skills for analysis

Verification Agent validates β†’ Checks data quality and authenticity

Payment Agent processes fees β†’ Calculates and distributes XMR

Memory stores everything β†’ Long-term storage for future reference
Enter fullscreen mode Exit fullscreen mode

Example: Plant Registration Flow
javascript

// User submits plant data
const plantData = {
species: 'Quercus robur',
gps: { lat: 41.9028, lng: 12.4964 },
photos: ['photo1.jpg', 'photo2.jpg']
};

// Agent processes
const plantAgent = new PlantAgent();
const verificationAgent = new VerificationAgent();
const paymentAgent = new PaymentAgent();

// 1. Verify plant
const verified = await verificationAgent.verifyPlant(plantData);

// 2. Process payment
const fees = paymentAgent.calculateFees(0.10); // 0.10 XMR

// 3. Store in memory
await memory.store('plant', { ...plantData, verified, fees });

πŸ’° Bounty Program

Earn Monero (XMR) by contributing to the project!
Tier XMR Fiat Tasks
Spicciolo 0.0005 €0.10 Typo, broken link
Spiccioletto 0.001 €0.20 Warnings, comments
Spicciona 0.003 €0.60 Tests, README
SuperSpiccio 0.01 €2.00 Simple feature
Premium 0.06 €12.00 Complex feature
Elite 0.10+ €20.00+ Architecture, security
Open Bounties
Issue Description Bounty

8 Plant Registration System 0.06 XMR

9 Global Plant Map Visualization 0.06 XMR

10 Plant Verification System 0.06 XMR

11 Plant Rewards System 0.03 XMR

12 Plant NFT-like Certificates 0.06 XMR

NFC Pet NFC Integration 0.06 XMR
GPS Pet GPS Tracking 0.06 XMR
How to Participate

Find an issue with the πŸ’° label

Comment "I'll take this!"

Develop the solution

Open a PR with your Monero address

Receive payment in XMR!
Enter fullscreen mode Exit fullscreen mode

πŸ“š Documentation & Guides
Project Documentation
Document Description Link
Main README Project overview and getting started README.md
Economics Tokenomics and fee structure ECONOMICS.md
Contributing How to contribute to the project CONTRIBUTING.md
Code Review Guide Open Code Review process CODE_REVIEW_GUIDE.md
Funding Fund transparency and donations FUNDING.md
Conservation Conservation projects and impact CONSERVATION.md
AI Agents Documentation
Document Description Link
AI Agents Full documentation of AI agent system AI Agents
Plant Agent Plant recognition, monitoring, verification plantAgent.js
Pet Agent NFC, GPS, health, recovery petAgent.js
Payment Agent XMR processing, fees, rewards paymentAgent.js
Verification Agent Validation, voting, quality scoring verificationAgent.js
Long-Term Memory PostgreSQL-based memory system longTermMemory.js
Agent Orchestrator Agent coordinator and task router agentOrchestrator.js
API Documentation
Document Description Link
Gateway API Payment gateway API documentation Gateway
Marketplace API Marketplace and NFT API Marketplace
Docs API Documentation and guides Docs
Gemma Skills Resources
Resource Description Link
Gemma Skills Official Google AI framework Google AI
AI Agents Guide How to build AI agents Guide
πŸ—ΊοΈ Roadmap 2026-2028
Phase 1: Foundation (Q3 2026) βœ…

β˜‘

Architecture & Documentation
β˜‘

XMR-only payment policy
β˜‘

GitHub repositories setup
β˜‘

Open Code Review process
β˜‘

First external contributors
Enter fullscreen mode Exit fullscreen mode

Phase 2: Core Features (Q4 2026)

β–‘

MVP Launch
β–‘

Plant Registration System (GPS + Photos)
β–‘

Global Map Visualization
β–‘

Plant Verification System
β–‘

Monero Payment Integration
β–‘

NFT-like Plant Certificates
Enter fullscreen mode Exit fullscreen mode

Phase 3: Animals & NFC (Q1 2027)

β–‘

MyZubster Pets Launch
β–‘

NFC Tag Integration
β–‘

GPS Tracking for Pets
β–‘

Pet Registration System
β–‘

Pet Verification System
β–‘

Mobile App (iOS + Android)
Enter fullscreen mode Exit fullscreen mode

Phase 4: AI Integration (Q2 2027)

β–‘

Multi-Agent AI System βœ…
β–‘

Plant Agent (monitoring + verification) βœ…
β–‘

Pet Agent (tracking + health) βœ…
β–‘

Verification Agent (automated validation) βœ…
β–‘

Payment Agent (XMR automation) βœ…
β–‘

Long-Term Memory System βœ…
β–‘

Agent Orchestrator βœ…
Enter fullscreen mode Exit fullscreen mode

Phase 5: Ecosystem (Q3 2027)

β–‘

Veterinary API Integration
β–‘

Carbon Credits Integration
β–‘

Global Partnerships
β–‘

Community DAO
β–‘

Multi-language Support (i18n)
Enter fullscreen mode Exit fullscreen mode

Phase 6: Scale (Q4 2027+)

β–‘

1M+ Plants Registered
β–‘

100K+ Pets Registered
β–‘

50+ Countries Active
β–‘

Sustainable Revenue Model
β–‘

Full Decentralization
Enter fullscreen mode Exit fullscreen mode

πŸ“ Repository Structure
text

myzubster/
β”œβ”€β”€ gateway/ β†’ Payment Gateway (MyZubsterGateway)
β”œβ”€β”€ marketplace/ β†’ Marketplace (MyZubster-Marketplace)
β”œβ”€β”€ docs/ β†’ Documentation (myzubster-docs)
β”‚ β”œβ”€β”€ field/ β†’ Sant'Aquilina Field Project
β”‚ β”œβ”€β”€ housing/ β†’ Housing Info
β”‚ β”œβ”€β”€ collaborators/β†’ Collaborators
β”‚ └── animals/ β†’ MyZubster Pets
β”œβ”€β”€ assets/ β†’ Project Assets
β”œβ”€β”€ src/
β”‚ β”œβ”€β”€ agents/ β†’ AI Agents (Gemma Skills)
β”‚ β”‚ β”œβ”€β”€ skills/ β†’ Plant, Pet, Payment, Verification Agents
β”‚ β”‚ β”œβ”€β”€ memory/ β†’ Long-Term Memory System
β”‚ β”‚ └── orchestrator/ β†’ Agent Orchestrator
β”‚ └── ... β†’ Other source code
└── app/ β†’ Main Application

Repository Links
Repository Description Link
Main Repo Project code and documentation myzubster
Gateway Payment gateway in XMR MyZubsterGateway
Marketplace Plant and pet marketplace MyZubster-Marketplace
Docs Project documentation myzubster-docs
Assets Project assets myzubster-assets
App Main application MyZubster-App
πŸ“ Open Code Review

We follow Open Code Review - all PRs are public, all comments are constructive, and everyone learns together.

Learn more: CODE_REVIEW_GUIDE.md
🌿 Sant'Aquilina Field Project (Vision)

A few friends and I visited a beautiful field near Sant'Aquilina and started dreaming about a permaculture + training + coexistence project.

This is just a vision for now. No agreements have been made.
What We Imagined

🌱 Permaculture - Sustainable farming, synergistic gardens

πŸ‹οΈ Training - Outdoor gym, fitness, yoga

🀝 Coexistence - Community spaces, shared activities

🌍 Sustainability - Environmental education and practice
Enter fullscreen mode Exit fullscreen mode

Estimated Budget (if pursued)
Expense Item Estimated Cost
Field Rent (24 months) €20,000
Permaculture Equipment €3,000
Training Equipment €3,500
Irrigation System €2,500
Structures (gazebo, fencing) €4,000
Tools & Utensils €2,000
Insurance (24 months) €2,000
Permits & Bureaucracy €1,000
Marketing & Communication €1,000
Contingency (10%) €1,000
TOTAL €40,000
🌍 The Vision

Imagine a world where:

βœ… Every tree has a permanent record
βœ… Every pet is trackable and verifiable
βœ… Deforestation is visible and transparent
βœ… Conservation is funded automatically
βœ… Anyone can participate from anywhere
βœ… AI agents monitor and protect nature
βœ… Environmental projects are funded transparently

That's what we're building.
🀝 How You Can Help

  1. πŸ’° Donate in Monero text

45M4DW1ug8bdQowWpxucTpgsfjLbVxbYaAra79VewmBobuuhgqTjyD4R3DzpqLM2veiphcB16n24qN1QbLg3y2PYGK3Qkoe

  1. 🌱 Register a Plant or 🐾 Register a Pet

Visit MyZubster and register a plant or pet. Contribute to the global map and receive rewards in XMR.

  1. πŸ‘¨β€πŸ’» Become a Collaborator

    πŸ’» Development (Node.js, React, Monero, AI)

    🌱 Permaculture (design, implementation)

    🐾 Animal Welfare (NFC, GPS, veterinary)

    πŸ“’ Marketing (social, content creation)

    πŸ’° Fundraising (partnerships, sponsors)

  2. πŸ“’ Share the Project

Share on social media, with friends, and in environmental communities.
πŸ“ž Contact & Social
GitHub Profile
Platform Link
GitHub DanielIoni-creator
GitHub Repo myzubster
Social Media
Platform Link
Twitter/X @myzubster
Dev.to DanielIoni-creator
Project Links
Resource Link
Main Repo https://github.com/DanielIoni-creator/myzubster
Gateway https://github.com/DanielIoni-creator/MyZubsterGateway
Marketplace https://github.com/DanielIoni-creator/MyZubster-Marketplace
Docs https://github.com/DanielIoni-creator/myzubster-docs
Creator Wallet 45M4DW1ug8bdQowWpxucTpgsfjLbVxbYa...
πŸ’š Thank You

Thank you to everyone following and supporting this project. Special thanks to our contributors:

guoyunfeng - i18n, PGP, Monero integration

terminator-cmd - Monero wallet, webhooks

Byaigo - Token balances, P2P messaging

harshaaaaw - Email notifications
Enter fullscreen mode Exit fullscreen mode

πŸŒ±πŸΎπŸ€–πŸŒ Together, we plant the future. One plant, one pet, one field at a time.

Built with ❀️ for the planet by DanielIoni-creator
πŸ“‹ Tags
text

monero, blockchain, opensource, sustainability, permaculture, web3, crypto, green-tech, animals, pets, nfc, gps, ai, machine-learning, multi-agent, gemma-skills, google-ai, long-term-memory, plant-map, conservation, carbon-offset, decentralized, privacy, xmr

Top comments (0)