DEV Community

Daniel Ioni
Daniel Ioni

Posted on

From Marketplace to Verified Metaverse Profiles: The Latest MyZubster Development Update

MyZubster has gone through a major development phase. During the latest iteration, we worked across authentication, the Marketplace, ZORGAX, the LIFE Pilot, the Metaverse, security, testing, and production infrastructure.

This article summarizes what has been implemented and what is already running online.

What is MyZubster?

MyZubster is an open-source digital ecosystem designed to connect communities, contributors, digital services, economic experiments, and virtual identities.

The project currently includes:

  • A public Marketplace
  • GitHub-based authentication
  • The ZORGAX assistant and economic layer
  • A guided digital entrepreneurship pilot
  • A Metaverse called Neon Plaza
  • Public contributor and project experiments
  • Automated security and deployment workflows

The source code is available on GitHub:

github.com/MyZubster-Ecosystem/myzubster

The live platform is available at:

myzubster.com

1. Marketplace restored and available online

The Marketplace existed in the repository, but it was not correctly exposed in production.

We restored the public route, verified its integration with the application, and confirmed that the listing API works correctly with the production database.

The Marketplace now provides a visible entry point for services, offers, and future community exchanges.

Open the MyZubster Marketplace

Security work was also performed around the Marketplace. The latest checks recorded zero unresolved HIGH-severity findings after remediation.

2. GitHub authentication and MongoDB reliability

GitHub OAuth login was failing because database operations were timing out while waiting for MongoDB.

We fixed the production database configuration and aligned the runtime with a compatible Node.js version.

The production runtime now uses Node.js 20 to maintain compatibility with the MongoDB driver and the current application stack.

As a result:

  • MongoDB connections work in production
  • GitHub OAuth can retrieve or create user records
  • Marketplace APIs can access persistent data
  • Login no longer fails because of buffered database queries

We also corrected frontend dependency metadata required by clean npm installations in the Vercel environment.

3. ZORGAX pricing and non-custodial settlement

ZORGAX now exposes a public pricing model with three plans:

  • Zorgax Free
  • Zorgax Pro
  • Zorgax Developer

The current Pro reference price is €9.90 per month, while the Developer plan is designed for API access, automation, and higher usage limits.

The settlement architecture is non-custodial.

This means MyZubster does not request or store users’ private keys. External payments must be independently verified before paid access is activated.

This distinction is important: detecting a payment request is not the same as confirming a blockchain settlement.

The current implementation keeps payment verification separated from access activation and explicitly avoids automatic signing with private keys.

4. ZORGAX economic and capital-allocation layer

A larger economic layer was added to ZORGAX.

It includes:

  • Confirmed economic inflow aggregation
  • Advisory capital-allocation proposals
  • Server-side allocation policies
  • Capital recommendation APIs
  • Capital decision tracking
  • Outcome recording
  • Decision memory
  • Bounded learning based on previous outcomes

The capital allocator is advisory. It produces recommendations without silently moving funds or executing financial operations.

Only confirmed inflows are included in economic calculations. Pending payment intents are not treated as available capital.

Bounded learning was added so that previous outcomes can influence future recommendations without giving the system unrestricted control.

5. Digital entrepreneurship workflow

ZORGAX now includes a structured workflow for creating and testing digital products.

The workflow covers the main stages of an early digital business:

  1. Create a project
  2. Submit an idea
  3. Validate the idea
  4. Generate a product blueprint
  5. Build an offer
  6. Prepare a launch
  7. Record product metrics
  8. Learn from results
  9. Update the next iteration

The system includes dedicated models, services, APIs, and tests for these stages.

Idea validation

Ideas can be evaluated using a structured scoring process. Validation snapshots are persisted so that the evolution of an idea can be reviewed over time.

Product blueprint

Validated ideas can be converted into a digital product blueprint containing the main product structure and execution direction.

The latest blueprint is stored with the project and exposed through a dedicated API.

Offer and launch engine

A launch-and-offer engine generates a controlled offer package for a digital project.

This creates a bridge between an abstract idea and something that can be presented, tested, and measured.

Metrics and learning

The system can record product metric events and use them to generate learning summaries.

This allows the project to move from assumptions toward measurable evidence.

6. LIFE Pilot

The LIFE Pilot provides a guided interface for testing the digital entrepreneurship workflow.

It includes:

  • Pilot enrollment
  • Structured onboarding
  • Controlled first-project creation
  • Idea intake
  • Idea ranking
  • A dedicated pilot workspace
  • A frontend session interface
  • API routes for each major stage
  • Automated test coverage

A contributor profile can also be linked to a public GitHub identity inside the pilot interface.

Open the MyZubster LIFE Pilot

7. ZORGAX frontend and routing

The ZORGAX interface and related APIs were integrated into the production frontend.

Vercel routing rules were corrected so that requests for ZORGAX and LIFE Pilot APIs reach the Express backend instead of being captured by a generic frontend route.

Automated tests now protect this routing precedence.

Open ZORGAX

8. Public Metaverse statistics

The MyZubster Metaverse now exposes a public character counter.

Visitors can see how many characters have been created without needing to authenticate.

This is a small feature, but it provides a visible signal that Neon Plaza is connected to real persistent data rather than being only a static interface.

9. H4x0r: the first verified explorer profile

We configured and published the H4x0r explorer profile inside Neon Plaza.

The profile is linked to the public GitHub account:

@DanielIoni-creator

The Metaverse API now exposes a limited list of verified explorers.

Only explicitly public fields are returned:

  • Display name
  • Character name
  • Archetype
  • Identity status
  • World identifier
  • GitHub username
  • GitHub public profile URL

Sensitive fields are excluded. The public response does not include email addresses, password data, internal MongoDB identifiers, private GitHub identifiers, or private verification metadata.

The frontend displays H4x0r with a VERIFIED badge both at the Metaverse entrance and in the verified explorers panel.

Open H4x0r in the MyZubster Metaverse

10. Security and continuous evidence

Security was treated as a continuous process rather than a one-time scan.

The repository now includes:

  • Automated security workflows
  • Pull-request evidence gates
  • Post-remediation security records
  • Public documentation of security results
  • Regression tests for critical routes
  • Explicit protection of legacy integrations

The objective is to make security results reproducible and visible instead of relying only on informal claims.

11. Tests and deployment reliability

Tests were added across the new systems, including:

  • Marketplace security
  • Metaverse public APIs
  • ZORGAX capital recommendations
  • Capital decision lifecycle
  • Digital business services
  • Idea validation
  • Product blueprints
  • Offer generation
  • Product metrics
  • Pilot onboarding
  • Pilot project creation
  • Idea ranking
  • LIFE Pilot routing
  • Vercel route precedence

The latest Metaverse release was tested locally, committed to the main branch, deployed through Vercel, and verified against the production API and interface.

What we learned

This phase reinforced a few important principles:

Public data must be intentionally public

A database profile should never be returned directly by a public API. The H4x0r endpoint uses an explicit public-data mapper and a restricted database projection.

Payment intent is not payment confirmation

Access activation must depend on independently verified settlement, not on a client-side request or an unconfirmed transaction.

Advisory automation needs boundaries

ZORGAX can generate recommendations and learn from outcomes, but consequential financial actions remain outside automatic execution.

Deployment configuration is part of the application

Correct code is not enough if runtime versions, database variables, package metadata, or routing rules are wrong.

Tests should protect integration boundaries

Many production failures happen between systems: frontend and backend, Vercel and Express, authentication and MongoDB, or payment requests and settlement verification.

Those boundaries now have stronger automated coverage.

What comes next?

The next development stages will focus on:

  • Completing the paid-access activation workflow
  • Adding more verified Metaverse explorers
  • Expanding Marketplace listings and transactions
  • Improving the LIFE Pilot experience
  • Strengthening monitoring and operational visibility
  • Exploring resilient and decentralized service distribution
  • Publishing clearer contributor and governance records

MyZubster is still evolving, but the ecosystem now has a stronger technical foundation: persistent identities, public services, economic experiments, safer APIs, automated tests, and a working production deployment.

If you want to follow the project, inspect the implementation, or contribute, visit the organization on GitHub:

github.com/MyZubster-Ecosystem

You can also explore the live platform here:

www.myzubster.com

Top comments (0)