web3.0
Singer Kanye's coin issuance: His attitude is reversed and his account is suspected of selling, is another careful 'harvest”?
Singer Kanye's coin issuance: His attitude is reversed and his account is suspected of selling, is another careful 'harvest”?
Kanye West's cryptocurrency mystery: the game between traffic, capital and "harvest"
Recently, the actions of the rap king Kanye West (now named Ye) in the cryptocurrency field have caused an uproar, from publicly boycotting the Meme coin scam to suspected preparation of YZY tokens, to suspected X account being sold, their behavior is full of contradictions and doubts. Is he a victim of the celebrity effect or the trader behind this capital game? This article will conduct in-depth analysis of Kanye’s coin issuance storm and unveil this fascinating play on the world of traffic, capital and crypto.
Kanye West is a legend in the music, business and fashion industry, has won 24 Grammy Awards and was twice selected as one of the top 100 figures in Time magazine. Not only did he change the hip-hop industry, he also became the richest man in the United States with a net worth of $6.6 billion. Even in January this year, Eton Venture Services' net assets remained as high as $2.77 billion.
From boycotting fraud to ending in person?
On February 8, Kanye posted a post on X platform that revealed that someone invited him to promote Meme coins for a fraud for $2 million, and publicly refused. At that time, he made a tough statement that he would not issue tokens, but only focused on products and careers he loved, and criticized the token for using hype to deceive fans. This move once won him positive reviews in the crypto community and was regarded as a clean stream of the industry.
However, the plot took a sharp turn.
Last Friday, CoinDesk reported that Kanye was preparing for a crypto token called YZY, of which Kanye will hold 70% of the share, with liquidity supply accounting for 10% and investors accounting for 20%. YZY tokens will be used as the official currency of the Yeezy brand for website payments.
This inconsistent behavior has caused strong doubts and criticism from the crypto community.
Confused operations are constantly
YZY token storm continues to ferment, Kanye posted several tweets about cryptocurrencies on the X platform, one of which even hints about the launch of a token called "Swasticoin" and claims to be open to Jews and friends and relatives first. He also frequently reposted tweets from Binance founder Changpeng Zhao (CZ), and followed CZ for a time, and then unfollowed CZ and turned to Olaf Carlson-Wee, founder of Polychain Capital, whose operations are puzzling. Currently, most of the related tweets have been deleted.
There are many doubts: X Account taken over?
Multiple encryption KOLs questioned that Kanye’s X account might have been sold, and the BarkMeta team that once operated crypto scam projects may be involved. It is reported that someone plans to use Kanye’s account to promote Ye-related tokens on the Solana chain and may acquire Kanye’s X account publishing rights for $20 million.
Encryption KOL @lokithebird also pointed out many doubts, such as Kanye's abnormal follow-up account, and his tweet expression style is similar to BarkMeta.
Although Kanye himself denied transferring or entrusting his account to BarkMeta, the dispute continues.
The character collapsed, and it was repeatedly "harvested"?
This is not Kanye’s first entry into the crypto space and has sparked controversy. In 2021, he released several peripheral NFTs, but in February 2022 he publicly stated that he would no longer participate in the NFT project. Three months later, he applied for the Metaverse and NFT-related trademarks for his trendy brand and deleted previous negative remarks.
Kanye's behavior seems to confirm that he is a capricious, profit-seeking "businessman".

Kanye's coin issuance incident is more like a carefully planned "open conspiracy". Although the risks are obvious, there are still people who are willing to participate. Under the temptation of huge interests, celebrities' coins issuance has formed a mature industrial chain. Short-term profits often rely on followers' blind trust in celebrities, lack of long-term value support, and is more like an extraction of the fan economy.
For investors, it is wise to be cautious about celebrity coins and avoid blindly following the trend. As for the subsequent development of the Kanye coin issuance incident, we will wait and see.
The above is the detailed content of Singer Kanye's coin issuance: His attitude is reversed and his account is suspected of selling, is another careful 'harvest”?. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1377
52
How to create oracle database How to create oracle database
Apr 11, 2025 pm 02:36 PM
To create an Oracle database, the common method is to use the dbca graphical tool. The steps are as follows: 1. Use the dbca tool to set the dbName to specify the database name; 2. Set sysPassword and systemPassword to strong passwords; 3. Set characterSet and nationalCharacterSet to AL32UTF8; 4. Set memorySize and tablespaceSize to adjust according to actual needs; 5. Specify the logFile path. Advanced methods are created manually using SQL commands, but are more complex and prone to errors. Pay attention to password strength, character set selection, tablespace size and memory
How to write oracle database statements
Apr 11, 2025 pm 02:42 PM
The core of Oracle SQL statements is SELECT, INSERT, UPDATE and DELETE, as well as the flexible application of various clauses. It is crucial to understand the execution mechanism behind the statement, such as index optimization. Advanced usages include subqueries, connection queries, analysis functions, and PL/SQL. Common errors include syntax errors, performance issues, and data consistency issues. Performance optimization best practices involve using appropriate indexes, avoiding SELECT *, optimizing WHERE clauses, and using bound variables. Mastering Oracle SQL requires practice, including code writing, debugging, thinking and understanding the underlying mechanisms.
How to add, modify and delete MySQL data table field operation guide
Apr 11, 2025 pm 05:42 PM
Field operation guide in MySQL: Add, modify, and delete fields. Add field: ALTER TABLE table_name ADD column_name data_type [NOT NULL] [DEFAULT default_value] [PRIMARY KEY] [AUTO_INCREMENT] Modify field: ALTER TABLE table_name MODIFY column_name data_type [NOT NULL] [DEFAULT default_value] [PRIMARY KEY]
What are the integrity constraints of oracle database tables?
Apr 11, 2025 pm 03:42 PM
The integrity constraints of Oracle databases can ensure data accuracy, including: NOT NULL: null values are prohibited; UNIQUE: guarantee uniqueness, allowing a single NULL value; PRIMARY KEY: primary key constraint, strengthen UNIQUE, and prohibit NULL values; FOREIGN KEY: maintain relationships between tables, foreign keys refer to primary table primary keys; CHECK: limit column values according to conditions.
Detailed explanation of nested query instances in MySQL database
Apr 11, 2025 pm 05:48 PM
Nested queries are a way to include another query in one query. They are mainly used to retrieve data that meets complex conditions, associate multiple tables, and calculate summary values or statistical information. Examples include finding employees above average wages, finding orders for a specific category, and calculating the total order volume for each product. When writing nested queries, you need to follow: write subqueries, write their results to outer queries (referenced with alias or AS clauses), and optimize query performance (using indexes).
How to configure Debian Apache log format
Apr 12, 2025 pm 11:30 PM
This article describes how to customize Apache's log format on Debian systems. The following steps will guide you through the configuration process: Step 1: Access the Apache configuration file The main Apache configuration file of the Debian system is usually located in /etc/apache2/apache2.conf or /etc/apache2/httpd.conf. Open the configuration file with root permissions using the following command: sudonano/etc/apache2/apache2.conf or sudonano/etc/apache2/httpd.conf Step 2: Define custom log formats to find or
What does oracle do
Apr 11, 2025 pm 06:06 PM
Oracle is the world's largest database management system (DBMS) software company. Its main products include the following functions: relational database management system (Oracle database) development tools (Oracle APEX, Oracle Visual Builder) middleware (Oracle WebLogic Server, Oracle SOA Suite) cloud service (Oracle Cloud Infrastructure) analysis and business intelligence (Oracle Analytics Cloud, Oracle Essbase) blockchain (Oracle Blockchain Pla
How Tomcat logs help troubleshoot memory leaks
Apr 12, 2025 pm 11:42 PM
Tomcat logs are the key to diagnosing memory leak problems. By analyzing Tomcat logs, you can gain insight into memory usage and garbage collection (GC) behavior, effectively locate and resolve memory leaks. Here is how to troubleshoot memory leaks using Tomcat logs: 1. GC log analysis First, enable detailed GC logging. Add the following JVM options to the Tomcat startup parameters: -XX: PrintGCDetails-XX: PrintGCDateStamps-Xloggc:gc.log These parameters will generate a detailed GC log (gc.log), including information such as GC type, recycling object size and time. Analysis gc.log


