Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] Beta Test & Earn: $1,300 Reward Pool for Top Testers!
by
Bridgoro
on 21/08/2025, 15:43:02 UTC

Bug and Issue Report
Date: 08/21/2025

Fixed:
- Screen Adaptiveness - improved for all resolutions, including smaller screens down to 640px.
- Scrollbar for Smaller Screens - added to improve navigation.
- Endless Refresh Loop / UI Blink - resolved.
- Sign-Up Bug with CAPTCHA - fixed.
- CAPTCHA Optimization - improved stability and behavior.
- Homepage Text Mistakes - corrected.
- Explore Offers Table Content - fixed to display correctly.
- Info Icon on Explore Page - replaced with improved version.
- Filters on All Pages - corrected for consistent behavior.
- Offer Details Popup - now displays accurate information.
- Notifications via Telegram Bot - fixed to work properly.
- Invite Code Button - corrected appearance.
- BRGX Withdrawal Page - conversion to USDT and network fee deduction fixed.
- Page Refresh Handling - fixed to refresh correctly without redirection.
- Account XP Crediting - corrected when registrations come from trusted domains (e.g., gmail.com).
- Username Change Bug - fixed on Edit Profile page.
- CAPTCHA Bug During Registration - resolved.
- Profile -> Balance History Tabs - corrected BRGX description tags.

Under Investigation:
- Release Ready Stuck Status - linked to dust transactions.
- Deposit Deadline Status - inconsistent behavior under review.
- TradingView Charts Bug - currently investigating.
- User Not Assigned Error - reported, pending deeper analysis.
- Button Click Delay / Lag - requires more reproduction data.

Work in Progress:
- Frontend Visual Effect Optimization - Homepage performance tuning.
- Dead Wallet Amount Bug (Min Amount) - reworking logic (backend).
- Amount Rounding Bug - fix in development.
- Dead Wallet Buffer Error Popup - improvement in progress.
- Popup Status Auto-Update Feature - being implemented.
- QR Code Implementation - feature in development.

Summary:
- 18 issues fixed (UI, adaptive design, signup, notifications, withdrawal, profile, XP crediting, etc.).
- 5 issues under investigation (status handling, charting, lag, assignment errors).
- 6 items actively in progress (UX/UI improvements, error handling, QR feature).



Along with the Bug Report, we would also like to share some development details.
This might be interesting for the dev-minded members of the community, and we would be glad to hear your feedback or thoughts about our tech stack.

Behind the Development

Our platform is built with Rust, one of the most reliable and secure programming languages in the world.
Rust is known for its safety, high performance, and ability to handle complex tasks without compromising speed, making it a perfect match for financial and blockchain applications.

At the core, we use Tokio, a powerful asynchronous engine running in multi-threaded mode.
This means that every incoming HTTP request is processed in a dedicated thread, allowing our system to handle massive loads and thousands of simultaneous requests without slowing down.
We've designed the system with a modular architecture, and each module works as an independent service, ensuring both efficiency and fault tolerance.

For example:
The Exchange Rate Module runs in its own thread, pulling prices from three independent sources. It continuously caches, updates, and delivers real-time exchange rates to the client. If one API fails, the system automatically switches to a backup, guaranteeing uninterrupted service. All rate history is stored, with updates synced every minute in line with CoinMarketCap's API limits.

For the web server, we rely on Axum, developed by the same creators behind Tokio. Axum combined with Tokio gives us the ability to sustain extremely high volumes of traffic and process a massive number of requests in parallel: ensuring reliability, stability, and speed under any conditions.

In short, our system was designed from the ground up to be fast, resilient, and secure.
Whether it's handling real-time exchange rates, managing blockchain interactions, or processing thousands of requests simultaneously, the architecture ensures that users always get a seamless and reliable experience.