π‘ What Is MyZubster?
MyZubster is a fullβstack, decentralized marketplace where anyone can tokenize realβworld assets β real estate, art, equity, commodities β and trade them in a private, peerβtoβpeer environment. Payments are handled with Monero (XMR) for complete privacy, and the entire system is protected by an AIβpowered security bot that runs Kali Linux tools and analyzes threats locally.
But it's not just a marketplace. It's an ecosystem that combines:
β
Fungible tokenization (ERCβ20 style)
β
Private Monero payments
β
Selfβdefending security with Kali Linux + DeepSeek (local AI)
β
NFT support (with Tari programmability on the roadmap)
β
Tor onion service for censorshipβresistant access
In this post, I'll walk you through the why, how, and what's next β including the architecture, the integrations, and the challenges we overcame.
π§± Architecture Overview
text
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β MyZubster β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββββββββββββββ β
β β Tokenization β β Monero β β Kali Linux + AI Bot β β
β β (Fungible) β β Payments β β (Security & Automation)β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββββββββββββββ β
β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββββββββββββββ β
β β NFTs + Tari β β Tor Onion β β DeepSeek (Local AI) β β
β β (Programm.) β β (Privacy) β β (Assistant & Analysis) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
All components run on a single Ubuntu VPS, with Node.js/Express for the backend, MongoDB for storage, and React/Vite for the frontend.
πͺ 1. Fungible Tokens β The Core Marketplace
We built a full tokenization engine:
Create tokens with metadata: name, symbol, total supply, asset value, price, asset type (realestate, equity, art, commodity, debt, revenue), description, location, and contract address.
User holdings β track amount and lockedAmount (for open orders).
Order book β sell, buy, and cancel orders.
Reputation system β each completed trade awards points (seller +10/token, buyer +5/token).
All data is stored in MongoDB and exposed via a RESTful API with JWT authentication.
π° 2. Monero β Private Payments
Monero guarantees true privacy β no traceable addresses, no visible balances. We integrated it deeply:
Wallet RPC β connected to a remote node (stagenet.community:38081 for testing).
Subaddress generation β each order gets a unique, oneβtime address, so payments are never linkable.
PaymentMonitor β a background service that scans every 30 seconds for incoming transfers.
Automatic order completion β when a payment is confirmed (10+ confirmations), the order is automatically marked as filled and tokens are transferred.
We used axios to call the Monero RPC and get_transfers to match incoming payments.
π€ 3. SelfβDefending Security β Kali Linux + DeepSeek AI
Security isn't optional for a platform handling real assets and private transactions. Instead of relying on passive tools, we built an autonomous security bot that:
Scans the gateway every hour using Kali Linux tools (nmap, nikto, sqlmap).
Analyzes the results with a local AI model (DeepSeek R1:1.5B running on Ollama).
Acts automatically:
Blocks suspicious IPs via ufw
Suspends users with low reputation
Cancels open orders from compromised accounts
Generates security reports
All processing happens locally β zero data shared with third parties, zero API costs.
Why DeepSeek?
We chose DeepSeek because it's:
β
Openβsource (MIT license)
β
Lightweight enough to run on CPU (1.5B parameter model)
β
Available locally via Ollama β no API keys, no credit usage
β
Privacyβfirst β data never leaves the server
πΌοΈ 4. NFTs and Tari β Programmability for Unique Assets
We already have an NFT model in the database and a frontend page (/reputation) to display userβowned NFTs. But we're going further:
Tari β a programmable sidechain for Monero β will allow us to:
Issue NFTs with onβchain logic (e.g., automatic royalties, transfer restrictions).
Create AIβpowered confessional robots (NFTs that hold an AI persona and can interact with users).
Manage complex asset rights (e.g., fractional ownership, dividend distribution).
While Tari integration is still in design, the foundation is ready.
π οΈ 5. Tor Onion Service β CensorshipβResistant Access
To ensure MyZubster is accessible even in restrictive regions, we exposed it as a Tor onion service. Due to provider restrictions, we're migrating the onion service to a new VPS, but the clearnet site (https://myzubster.com) remains fully operational.
π§ͺ How to Test the Payment Flow (Stagenet)
Register a user.
Create a token (or use an existing one).
List a sell order.
Initiate a payment via the API β a unique Monero subaddress is generated.
Send XMR to that address (from a stagenet faucet).
Wait β the PaymentMonitor will detect the transaction and automatically complete the order.
π Current Status & Roadmap
Component Status
Fungible Tokens β
Fully functional
Marketplace (order book) β
Fully functional
Monero Payments (stagenet) β
Fully functional
NFT model + frontend β
Partial (trading missing)
Tari integration β In design (roadmap)
Kali Linux + AI bot β
Fully functional
DeepSeek (local) β
Fully functional
Tor onion β³ Migrating to new VPS
SSL/HTTPS β To do
Admin Dashboard β To do
Immediate Next Steps
β
Integrate NFTs into the marketplace (/api/nfts).
β
Add SSL via Let's Encrypt.
β
Switch to Monero mainnet after thorough testing.
β
Build an admin dashboard.
LongβTerm Vision
AIβpowered dispute resolution β using DeepSeek as an impartial mediator for escrow and disputes.
Tari smart contracts for advanced asset management.
Multiβcurrency support β Bitcoin, Ethereum, and more.
π Contribute!
MyZubster is openβsource, and we welcome contributions of all kinds:
π Bug reports
π‘ Feature ideas
π§ Pull requests
GitHub: DanielIoni-creator/MyZubsterGateway
Live Demo: https://myzubster.com
X (Twitter): @myzubster
π¬ Final Thoughts
https://www.linkedin.com/in/daniel-ioni-62b2b9423/
Building MyZubster has been one of the most challenging and rewarding projects I've ever worked on. We've combined traditional web development with blockchain, privacy tools, AI, and security automation β all into a single, openβsource platform.
The system is now stable, selfβdefending, and ready for realβworld use. Whether you're a developer, a privacy advocate, or just curious about the future of decentralized finance, I invite you to explore, test, and contribute.
The future is private, programmable, and protected. MyZubster is just the beginning.
Built with β€οΈ by the MyZubster team.
π·οΈ Tags
Top comments (0)