DEV Community

Daniel Ioni
Daniel Ioni

Posted on

๐Ÿš€ MyZubster Gateway: Monero Wallet Integration Complete!

๐Ÿš€ MyZubster Gateway: Monero Wallet Integration Complete!
Real-World Asset Tokenization on Tari + Monero
๐Ÿ“Œ Stato Attuale

Dopo aver completato l'integrazione con il wallet Monero, il sistema รจ ora completamente operativo!
โœ… Servizi Attivi
Servizio Porta Stato
Wallet RPC 18081 โœ… Attivo
Gateway API 3001 โœ… Attivo
Dashboard UI 8080 โœ… Attivo
MongoDB 27018 โœ… Attivo
โœ… Transazioni Completate

โœ… Wallet RPC configurato e funzionante

โœ… Transazione ricevuta con successo

โœ… Fondi trasferiti al wallet esterno

โœ… Saldo del gateway: 0 XMR
Enter fullscreen mode Exit fullscreen mode

๐Ÿ—๏ธ Architettura
text

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ MONERO โ”‚
โ”‚ (Privacy Layer) โ”‚
โ”‚ โ”‚ โ”‚
โ”‚ โ–ผ โ”‚
โ”‚ WALLET RPC โ”‚
โ”‚ (Port 18081) โ”‚
โ”‚ โ”‚ โ”‚
โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚ โ–ผ โ–ผ โ”‚
โ”‚ GATEWAY API DASHBOARD โ”‚
โ”‚ (Port 3001) (Port 8080) โ”‚
โ”‚ โ”‚ โ”‚ โ”‚
โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ”‚ โ–ผ โ”‚
โ”‚ TOKENIZED ASSETS โ”‚
โ”‚ (MRE, SRE) โ”‚
โ”‚ โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ› ๏ธ Wallet RPC Setup
Configurazione
bash

monero-wallet-rpc \
--wallet-file /root/monero-wallet/gateway-wallet \
--password "YOUR_PASSWORD" \
--rpc-bind-port 18081 \
--disable-rpc-login \
--daemon-address node.moneroworld.com:18089 \
--trusted-daemon &

Comandi di base
bash

Controlla il saldo

curl -s -X POST http://localhost:18081/json_rpc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":"1","method":"get_balance"}' | jq '.'

Invia fondi

curl -X POST http://localhost:18081/json_rpc \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": "1",
"method": "transfer",
"params": {
"destinations": [{
"address": "DESTINATION_ADDRESS",
"amount": AMOUNT_IN_ATOMIC_UNITS
}],
"mixin": 16,
"priority": 1,
"get_tx_key": true
}
}' | jq '.'

Invia tutto (sweep_all)
bash

curl -X POST http://localhost:18081/json_rpc \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": "1",
"method": "sweep_all",
"params": {
"address": "DESTINATION_ADDRESS",
"subaddr_indices": [0],
"mixin": 16,
"priority": 1,
"get_tx_key": true
}
}' | jq '.'

๐Ÿ“Š Tokenized Assets
Token Symbol Value Location Status
Milano Real Estate MRE โ‚ฌ1,000,000 Milan, Italy โœ… Active
Singapore Real Estate SRE โ‚ฌ2,000,000 Singapore, Asia โœ… Active
๐Ÿ”’ Privacy Features

โœ… Tutte le transazioni sono private (Monero)

โœ… Wallet crittografato con password

โœ… RPC server protetto

โœ… Tari per asset privacy
Enter fullscreen mode Exit fullscreen mode

๐Ÿ’ป Tech Stack
Component Technology
Blockchain Monero (Privacy) + Tari (Layer 2)
Wallet RPC monero-wallet-rpc (v0.18.5.1)
Backend Node.js, Express.js
Database MongoDB
Deployment Docker, nginx
Bounty System GitHub Actions (Spiccioli)
๐ŸŽฏ Next Steps

โ˜‘

Monero wallet RPC integration
โ˜‘

Transaction received and confirmed
โ˜‘

Funds transferred successfully
โ–ก

Deploy to production
โ–ก

Add more tokenized assets
โ–ก

Implement DeFi features
Enter fullscreen mode Exit fullscreen mode

๐Ÿ”ฎ Future Roadmap

DeFi Integration: Lending/borrowing with tokenized assets

Mobile App: iOS/Android wallet for MRE/SRE tokens

Cross-chain: Bridge to Ethereum, Solana

DAO Governance: Community voting with tokens
Enter fullscreen mode Exit fullscreen mode

๐Ÿค Contributing

We welcome contributions! Check our Spiccioli bounty system:
Label Bounty (XMR)
good-first-issue 0.01 XMR
bug 0.05 XMR
feature 0.10 XMR
security 0.20 XMR
๐Ÿ“š Resources

Tari Blockchain

Monero Project

Monero RPC Documentation
Enter fullscreen mode Exit fullscreen mode

๐ŸŒ Links
Resource URL
Dashboard http://localhost:8080
API Gateway http://localhost:3001
Health Check http://localhost:3001/api/health
Wallet RPC http://localhost:18081
๐ŸŽ‰ Conclusion

Il sistema รจ completo e funzionante:

โœ… Wallet Monero integrato

โœ… Transazioni ricevute e inviate

โœ… Asset tokenizzati (MRE, SRE)

โœ… Dashboard operativa

โœ… Privacy garantita
Enter fullscreen mode Exit fullscreen mode

Built with โค๏ธ on Tari ยท Powered by Monero

Monero #Tari #Blockchain #Tokenization #RWA #RealEstate #Privacy #Crypto #DeFi #Web3 #OpenSource

๐Ÿ“ Per pubblicare

Copia il contenuto sopra su:

Dev.to

Hashnode

Medium

LinkedIn

Twitter/X
Enter fullscreen mode Exit fullscreen mode

Hai bisogno di una versione piรน breve? Fammi sapere! ๐Ÿ˜Š

Top comments (0)