DEV Community

Daniel Ioni
Daniel Ioni

Posted on

🤖 MyZubster Telegram Bot is FULLY OPERATIONAL! All Commands Working

🤖 MyZubster Telegram Bot is FULLY OPERATIONAL! All Commands Working

The News 🎉

The MyZubster Telegram bot is now fully operational with all commands working!

Try it now: @myzubster_bot


🤖 What the Bot Can Do

📊 Real-time Statistics

Get live platform stats anytime with /stats:

  • Total tokens and supply
  • Total raised and investors
  • Orders and revenue
  • Conversion rates

🏢 Token Information

Browse all available tokens with /tokens:

  • Token names and symbols
  • Prices and supply
  • Status and details

💰 Price Lookup

Check token prices with /price <symbol>:

  • Current price in SGD
  • Property details
  • Investment summary
  • Available supply

🔔 Notifications

Subscribe to real-time alerts with /subscribe:

  • New order alerts
  • Payment confirmations
  • Order completions
  • New token listings
  • Price updates

📱 All Commands Working

Command Description Status
/start Welcome and information
/help Help and available commands
/stats Real-time platform statistics
/tokens List all available tokens
/price <symbol> Get token price and details
/subscribe Activate notifications
/unsubscribe Deactivate notifications

📊 Live Data Example

/stats Response

Statistiche MyZubster

🏢 Token
Totale: 2
Attivi: 2
Supply: 18,000

💰 Investimenti
Raccolto: $8,000
Investitori: 1

📦 Ordini
Totali: 3
Completati: 1
In attesa: 1

📈 Performance
Revenue: $5,000
Conversion: 33.3%
text

/tokens Response

🏢 Token Disponibili

Marina Bay Tower (MBFT)
💰 Prezzo: $1000
📊 Supply: 8,000
📈 Status: active

Singapore Real Estate (SRET)
💰 Prezzo: $1000
📊 Supply: 10,000
📈 Status: active
Enter fullscreen mode Exit fullscreen mode

text

/price MBFT Response

💰 Marina Bay Tower (MBFT)

📊 Dettagli
Prezzo: $1000
Supply: 8,000
Rimasti: 7,995
Raccolto: 0.1%

🏢 Proprietà
Tipo: commercial
Città: Singapore
Valutazione: $8,000,000

📈 Status
✅ Attivo
text


🛠️ Tech Stack

Layer Technology
Bot Framework node-telegram-bot-api
Runtime Node.js 20
Process Manager PM2
API Integration Axios
Database MongoDB
Blockchain Ethereum (Sepolia)
Payments Monero (XMR)

💻 Code Highlights

Bot Configuration


javascript
// telegram/config/index.js
module.exports = {
  botToken: process.env.TELEGRAM_BOT_TOKEN,
  botUsername: 'myzubster_bot',
  adminChatId: process.env.TELEGRAM_ADMIN_CHAT_ID,
  apiUrl: process.env.API_URL || 'http://localhost:3000/api',

  commands: {
    start: '/start - Welcome and information',
    help: '/help - Help and commands',
    stats: '/stats - Real-time statistics',
    tokens: '/tokens - List available tokens',
    price: '/price <symbol> - Token price',
    subscribe: '/subscribe - Activate notifications',
    unsubscribe: '/unsubscribe - Deactivate notifications',
  }
};

Stats Command
javascript

// telegram/handlers/commands.js
exports.stats = async (bot, msg) => {
  const chatId = msg.chat.id;

  try {
    const response = await axios.get(`${config.apiUrl}/bot/stats`);
    const stats = response.data.data;

    const statsMessage = `
📊 *Statistiche MyZubster*

🏢 *Token*
Totale: ${stats.totalTokens || 0}
Attivi: ${stats.activeTokens || 0}
Supply: ${formatNumber(stats.totalSupply || 0)}

💰 *Investimenti*
Raccolto: $${formatNumber(stats.totalRaised || 0)}
Investitori: ${stats.totalInvestors || 0}
`;
    bot.sendMessage(chatId, statsMessage, { parse_mode: 'Markdown' });
  } catch (error) {
    bot.sendMessage(chatId, '❌ Errore nel recupero delle statistiche');
  }
};

Price Command
javascript

exports.price = async (bot, msg, symbol) => {
  const chatId = msg.chat.id;

  try {
    const response = await axios.get(`${config.apiUrl}/bot/price/${symbol}`);
    const token = response.data.data;

    const priceMessage = `
💰 *${token.name}* (${token.symbol})

📊 *Dettagli*
Prezzo: $${token.tokenPrice}
Supply: ${formatNumber(token.totalSupply)}
Rimasti: ${formatNumber(token.remainingTokens || 0)}
Raccolto: ${token.percentRaised || 0}%
`;
    bot.sendMessage(chatId, priceMessage, { parse_mode: 'Markdown' });
  } catch (error) {
    bot.sendMessage(chatId, `❌ Token "${symbol}" non trovato.`);
  }
};

🔗 Connect With Us
Platform    Link
Telegram Bot    @myzubster_bot
Telegram Channel    t.me/myzubster
GitHub  github.com/DanielIoni-creator
Twitter/X   @MyZubster
YouTube youtube.com/@myzubster
Dev.to  dev.to/danielioni
Instagram   @daniel.nonso.9699
🚀 What's Next
Status  Feature Description
✅ Telegram Bot    All commands working
✅ Monero Integration  Wallet and payments
✅ Mobile App  React Native with wallet
🔄    China Expansion Legal consultation
📋    Token Launch    Deploy on BSN
📋    Investor Onboarding KYC/AML process
🔗 Project Links
Resource    Link
GitHub Repository   github.com/DanielIoni-creator/tokenization-singapore
Gateway Repository  github.com/DanielIoni-creator/MyZubsterGateway
Live API    api.my-zubster.com
Admin Dashboard admin.my-zubster.com
💬 Join the Community

    Telegram: t.me/myzubster

    Twitter: @MyZubster

    YouTube: youtube.com/@myzubster

    Instagram: @daniel.nonso.9699

    GitHub Issues: Report bugs

🤖 Try the Bot Now!

MyZubster Bot is live and waiting for you!

👉 @myzubster_bot

Built with ❤️ by Daniel Ioni and the MyZubster team.

Last updated: July 27, 2026
Enter fullscreen mode Exit fullscreen mode

Top comments (0)