Trump Memecoin to Be Used in Mobile Game About Billionaires

RBK-cryptoОпубліковано о 2025-12-10Востаннє оновлено о 2025-12-10

Анотація

The official Donald Trump meme coin, OFFICIAL TRUMP (TRUMP), will be used as a reward in the mobile game "Trump Billionaire Club." Promoted by Trump's long-time associate Bill Zanker, the game is set to launch on the App Store by the end of December. Set in New York, the 3D game allows users to spend TRUMP tokens to build a business empire and win prizes, with a total prize pool of $1 million in TRUMP tokens. The token, launched on January 18, 2025, initially surged to around $75 but has since declined by 92%, trading near $5.8. Zanker's company, Fight Fight Fight, which is behind the meme coin, has collaborated with Trump on multiple crypto projects. According to Financial Times, Trump and his family have earned over $1 billion from crypto projects in the past year, with TRUMP being a major contributor.

The memecoin of U.S. President Donald Trump, OFFICIAL TRUMP (TRUMP), will be used as a reward in the mobile game "Trump Billionaire Club." The token's promoter and long-time associate of Trump, entrepreneur Bill Zanker, plans to release the game app on the App Store by the end of December, sources told Bloomberg.

The 3D game will be set in New York. Users will be able to spend Trump tokens while attempting to build a business empire and win prizes. In the game's trailer, a voice resembling Trump's encourages players to become billionaires.

The prize pool in TRUMP tokens will amount to $1 million, according to the project's announcement. Organizers are inviting "true Trump fans" to sign up for the waitlist in advance.

The TRUMP memecoin was launched on January 18, 2025, two days before Trump's inauguration. Within 24 hours of its appearance, the token entered the list of the largest cryptocurrencies by market capitalization and reached an all-time high of around $75. Since then, TRUMP has fallen by 92% and is trading around $5.8.

The organizer behind the TRUMP memecoin release is the company Fight Fight Fight, associated with Bill Zanker. The entrepreneur, co-author of Trump's 2007 book "Think Big and Kick Ass," has collaborated with him on several crypto projects in recent years, including a crowdfunding website and a series of NFTs depicting Trump as a superhero.

Over the years, Zanker has built a portfolio of at least six companies related to the president, journalists note. This includes businesses producing sneakers, watches, and perfumes under the Trump brand, which are also sold for the TRUMP memecoin.

The developer of the "Trump Billionaire Club" game is Freedom 45 Games. A source from the publication stated that the game uses Trump's name under a licensing agreement.

Donald Trump and members of his family have received over $1 billion from crypto projects in a year, according to Financial Times estimates. Journalists calculated that the TRUMP memecoin was one of the main sources of this income.

Bitcoin hits new high since mid-November. What about other cryptocurrencies?

Bitcoin at $100,000 by the end of the year. What are the chances?

"Stop losses are wiped out along with the deposit." A selection of hot topics from the RBC Crypto Forum

Пов'язані питання

QWhat is the OFFICIAL TRUMP (TRUMP) memecoin going to be used for?

AIt will be used as a reward in the mobile game 'Trump Billionaire Club'.

QWho is the promoter of the TRUMP token and what is their connection to Donald Trump?

AThe promoter is entrepreneur Bill Zanker, a long-time associate of Donald Trump and co-author of his 2007 book 'Think Big and Kick Ass!'.

QWhat was the all-time high price of the TRUMP memecoin and what is its current approximate trading price?

AThe TRUMP memecoin reached an all-time high of approximately $75 and is currently trading around $5.8, representing a 92% decline.

QWhich company is developing the 'Trump Billionaire Club' mobile game?

AThe game is being developed by the company Freedom 45 Games.

QHow much have Donald Trump and his family reportedly earned from crypto projects in the past year, and which token was a major source of this income?

AAccording to the Financial Times, Donald Trump and his family have earned over $1 billion from crypto projects in the past year, with the TRUMP memecoin being one of the main sources of this income.

Пов'язані матеріали

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

NVIDIA's Rubin Ultra, the top-tier variant of the newly announced Rubin AI accelerators, has reportedly seen significant specification downgrades, according to an industry report from SemiAnalysis. Initially designed with four compute dies (4-die), the Rubin Ultra is now said to be reduced to a 2-die design. Key changes highlighted in the report include: * **No increase in peak theoretical compute performance**, remaining at 35 PFLOPs like the standard Rubin. * **Severe reduction in memory capacity** to 192GB using 8-Hi HBM stacks, which is less than the standard Rubin's 288GB using 12-Hi stacks. * **Negligible memory bandwidth improvement** of only 1 TB/s. * **Slightly higher chip-level power consumption**. * The **primary upgrade is a massive increase in scale-up interconnect capacity**, supporting connections for up to 576 GPUs via NVLink, compared to 72 for the standard Rubin. The report suggests the redesign is primarily a cost-optimization move driven by the sharp rise in HBM (High-Bandwidth Memory) prices. By reducing the expensive HBM content and shifting investment towards enhanced system-scale networking, NVIDIA aims to maintain the platform's value for large-scale AI training clusters while managing soaring material costs. The news reportedly triggered a sell-off in South Korean memory stocks, with SK Hynix and Samsung shares falling around 8%, as markets grew concerned that NVIDIA—a major HBM buyer—might be reducing its reliance on high-capacity memory, potentially capping future pricing power for memory makers.

Odaily星球日报12 хв тому

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

Odaily星球日报12 хв тому

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

This article introduces a novel training paradigm for generative models called Explorative Modeling (XM), which enables true end-to-end training. Traditionally, powerful generative models like autoregressive and diffusion models are not trained end-to-end. They are trained to predict a single small step but require iterative multi-step sampling for inference. This "exposure bias" leads to error accumulation and limits performance. The core challenge XM addresses is "mode blurring." In generative tasks, a single input (e.g., "generate a dog") corresponds to many valid outputs (multiple modes). Standard training objectives like reconstruction loss force the model to average these modes, producing unrealistic, blurry outputs. To avoid this, existing models break generation into many small, almost deterministic steps, sacrificing end-to-end training. XM tackles this by restructuring the training loop itself. Its key insight is to amplify "generative expressivity." For each training input, instead of generating one sample, the model generates K candidate outputs. Only the candidate closest to the real data is used for computing the loss and updating the model via backpropagation. This simple "best-of-K" mechanism is implemented as a short for-loop. By exploring multiple possibilities, the model learns to distribute its guesses across different modes rather than collapsing to their uninformative average. The paper demonstrates that "exploration" acts as a new, powerful scaling axis. Gains from XM increase with model size, data scale, and compute. Experiments show improvements in FID scores for image generation and significant efficiency gains, sometimes outperforming larger models without exploration. When pushed to the limit, XM enables fully single-step, end-to-end generative models. In robotics tasks, an "Explorative Policy" matched the performance of a 100-step Diffusion Policy with a single forward pass, drastically improving inference speed. While the best-of-K concept is not entirely new, the authors' contribution lies in formally understanding it as a direct method to boost generative expressivity without fragmenting the generation process. This work suggests that as models scale, enhancing exploration during training may become crucial for overcoming fundamental performance bottlenecks.

marsbit1 год тому

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

marsbit1 год тому

Торгівля

Спот
活动图片