News
20 May 2025, 13:22
Michael Arrington Warns Coinbase Hack Could Lead to Deaths – Here’s Why
The post Michael Arrington Warns Coinbase Hack Could Lead to Deaths – Here’s Why appeared first on Coinpedia Fintech News In a shocking security lapse, a recent data breach at Coinbase – the world’s third-largest cryptocurrency exchange – has ignited serious safety concerns. Hackers reportedly accessed highly sensitive user data, including residential addresses, sparking fears of real-world violence amid a surge in crypto-related crimes in 2025. Although the breach affected less than 1% of monthly transacting users, the fallout is steep. Coinbase could be staring down as much as $400 million in reimbursement – but the potential “human cost” may be far worse. “People Could Die”: Michael Arrington Blasts Coinbase Michael Arrington, TechCrunch founder and Arrington Capital head, slammed Coinbase on X for a data breach exposing addresses and balances, potentially causing deaths. “Very disappointed in Coinbase right now. Using the cheapest option for customer service has its price,” Arrington said. Arrington blamed Coinbase’s overseas customer support outsourcing and even went as far as to call for criminal charges against executives. He also took a swipe at KYC regulations, arguing they’re more about tax collection than user safety – ultimately creating honeypots of data that hackers are all too eager to exploit. Balaji Srinivasan Disagrees with Michael Arrington’s Take The co-founder and former CTO of Coinbase, Balaji Srinivasan , disagrees with Arrington’s view that blames Coinbase execs for the $400M hack. Instead, he blames the state’s KYC laws. Why? These laws force firms to collect vulnerable customer data, creating hacking risks. He advocates for Zero-Knowledge (ZK) proofs to eliminate KYC and prioritize privacy over surveillance. Balaji says systemic regulatory flaws, not executive decisions, are the root cause of such breaches. Armstrong’s Actions After Security Breach The leaders aren’t sitting around. On May 15, 2025, via a video statement on X , Coinbase CEO Brian Armstrong confirmed the breach in a social post, revealing hackers demanded a $20 million ransom, to which he said, “No, we are not going to pay your ransom.” Armstrong promised full reimbursement for impacted users (1%) and announced plans to rebuild customer service. Crypto Crimes on the Rise: Is Your Data Safe in 2025? This breach is just the latest in a string of violent incidents involving crypto investors. As Bitcoin trades above $100,000, crypto wealth is becoming an increasingly dangerous asset. As the dust settles, all eyes are on Coinbase. Can Armstrong deliver on his promises? Will the exchange’s security overhaul be enough to restore user trust? Or has the damage already been done? .article_register_shortcode { padding: 18px 24px; border-radius: 8px; display: flex; align-items: center; margin: 6px 0 22px; border: 1px solid #0052CC4D; background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 82, 204, 0.1) 100%); } .article_register_shortcode .media-body h5 { color: #000000; font-weight: 600; font-size: 20px; line-height: 22px; text-align:left; } .article_register_shortcode .media-body h5 span { color: #0052CC; } .article_register_shortcode .media-body p { font-weight: 400; font-size: 14px; line-height: 22px; color: #171717B2; margin-top: 4px; text-align:left; } .article_register_shortcode .media-body{ padding-right: 14px; } .article_register_shortcode .media-button a { float: right; } .article_register_shortcode .primary-button img{ vertical-align: middle; width: 20px; margin: 0; display: inline-block; } @media (min-width: 581px) and (max-width: 991px) { .article_register_shortcode .media-body p { margin-bottom: 0; } } @media (max-width: 580px) { .article_register_shortcode { display: block; padding: 20px; } .article_register_shortcode img { max-width: 50px; } .article_register_shortcode .media-body h5 { font-size: 16px; } .article_register_shortcode .media-body { margin-left: 0px; } .article_register_shortcode .media-body p { font-size: 13px; line-height: 20px; margin-top: 6px; margin-bottom: 14px; } .article_register_shortcode .media-button a { float: unset; } .article_register_shortcode .secondary-button { margin-bottom: 0; } } Never Miss a Beat in the Crypto World! Stay ahead with breaking news, expert analysis, and real-time updates on the latest trends in Bitcoin, altcoins, DeFi, NFTs, and more. .subscription-options li { display: none; } .research-report-subscribe{ background-color: #0052CC; padding: 12px 20px; border-radius: 8px; color: #fff; font-weight: 500; font-size: 14px; width: 96%; } .research-report-subscribe img{ vertical-align: sub; margin-right: 2px; } Subscribe to News var templateIds = "6"; var listOfSubscribed = []; function subscribed_popupmodal(template_id) { var templateId = '6'; getAllSubscriberCategoryList([templateId]); var subcribemodal = window.parent.document.getElementById('subscribe-modal-design'); if (subcribemodal) { var modalContent = ` Never Miss a Beat in the Crypto World! Stay informed and gain the edge you need to navigate the crypto world. Select your subscription now Daily Get real-time crypto news, market insights, and blockchain updates. Weekly Stay updated with major trends, funding news, and price analysis. Monthly Receive a detailed report with market analysis and expert predictions. Subscribe Now `; subcribemodal.innerHTML = modalContent; } subscribe_unsubscribe_status(template_id); //getAllSubscriberCategoryList(template_id); } function toggleSubscription(subscription, template_id) { var subscriptionCheckbox = document.getElementById(subscription + '_' + template_id); var li = document.getElementById(subscription + 'Selected_' + template_id); if (subscriptionCheckbox.checked) { li.classList.add('active'); } else { li.classList.remove('active'); } } function getAllSubscriberCategoryList(getcategoryId) { jQuery.ajax({ url: 'https://coinpedia.org/wp-admin/admin-ajax.php', type: 'GET', data: { action: 'subscribe_api_ajax_request', apiurl: '/app/email_newsletter/list', }, success: function(response) { var result = JSON.parse(response.message); if (result.status === true) { var idstosubscribed = [] // Populate listOfSubscribed with subscribed category IDs result.message.forEach(listofcategory => { if (listofcategory.subscribe_status === 1) { if (!listOfSubscribed.includes(listofcategory._id)) { listOfSubscribed.push(listofcategory._id); } if (!idstosubscribed.includes(listofcategory.news_cp_category_row_id)) { idstosubscribed.push(listofcategory.news_cp_category_row_id); } } }); idstosubscribed.forEach(id => { var subscribeButton = document.getElementById('subscribe_' + id); var unsubscribeButton = document.getElementById('unsubscribe_' + id); if (subscribeButton && unsubscribeButton) { subscribeButton.style.display = 'none'; unsubscribeButton.style.display = 'block'; var showDownloadReport = document.getElementById('download_report'); if (showDownloadReport) { showDownloadReport.style.display = 'block'; } } }); } }, error: function(xhr, status, error) { console.error('Error:', error); } }); } function subscribe_unsubscribe_status(getcategoryId) { var elementTounsubscribe = parent.document.getElementById('unsubscribe_' + getcategoryId); var elementTosubscribe = parent.document.getElementById('subscribe_' + getcategoryId); jQuery.ajax({ url: 'https://coinpedia.org/wp-admin/admin-ajax.php', type: 'POST', data: { action: 'subscribe_api_ajax_request', apiurl: '/app/email_newsletter/list?category_row_id=' + getcategoryId, }, success: function(response) { var result = JSON.parse(response.message); if (result.status === true) { parent.jQuery('.skeliton-loader-block').hide(); var hasSubscribeStatusOne = false; result.message.forEach(subscribeStatus => { if (listOfSubscribed.includes(subscribeStatus._id) && subscribeStatus.subscribe_status === 1) { hasSubscribeStatusOne = true; } if (subscribeStatus.notification_type === 3) { parent.document.getElementById('monthlySelected_' + getcategoryId).style.display = 'block'; parent.document.getElementById('monthly_' + getcategoryId).setAttribute('data-id', subscribeStatus._id); if (subscribeStatus.subscribe_status === 1) { parent.document.getElementById('monthly_' + getcategoryId).checked = true; } } else if (subscribeStatus.notification_type === 2) { parent.document.getElementById('weeklySelected_' + getcategoryId).style.display = 'block'; parent.document.getElementById('weekly_' + getcategoryId).setAttribute('data-id', subscribeStatus._id); if (subscribeStatus.subscribe_status === 1) { parent.document.getElementById('weekly_' + getcategoryId).checked = true; } } else if (subscribeStatus.notification_type === 1) { parent.document.getElementById('dailySelected_' + getcategoryId).style.display = 'block'; parent.document.getElementById('daily_' + getcategoryId).setAttribute('data-id', subscribeStatus._id); if (subscribeStatus.subscribe_status === 1) { parent.document.getElementById('daily_' + getcategoryId).checked = true; } } if (subscribeStatus.subscribe_status === 1) { listOfSubscribed.push(subscribeStatus._id); } }); if (hasSubscribeStatusOne) { elementTosubscribe.style.display = 'none'; elementTounsubscribe.style.display = 'block'; } else { elementTosubscribe.style.display = 'block'; elementTounsubscribe.style.display = 'none'; } } }, error: function(xhr, status, error) { console.error('Error:', error); } }); } function logSelectedSubscriptions(categoryid) { var unsubscribemodal = document.querySelector('.unsubscribed-popup-modal .modal'); var subscribedmodal = document.querySelector('.subscribed-popup-modal .modal'); unsubscribemodal.innerHTML=''; subscribedmodal.innerHTML=''; var selectedSubscriptions = []; var storeCheckedId = []; var checkboxes = document.querySelectorAll('#subscription-options-' + categoryid + ' input[type="checkbox"]'); var errorMessage = document.getElementById('error-message-select'); // Use a Set to handle unique data-ids var uniqueSubscribedIds = new Set(listOfSubscribed); checkboxes.forEach(function(checkbox) { var dataId = parseInt(checkbox.getAttribute('data-id')); if (checkbox.checked) { selectedSubscriptions.push(checkbox.id); storeCheckedId.push(dataId); } else { uniqueSubscribedIds.delete(dataId); // Remove unchecked data-id } }); // Update listOfSubscribed with unique values listOfSubscribed = Array.from(uniqueSubscribedIds); var selectedSubscriptionsString = selectedSubscriptions.join(', '); var concatinateSubscribeId = [...new Set(storeCheckedId.concat(listOfSubscribed))]; var categoryData = { 'subscribed_categories': concatinateSubscribeId }; var requestSubscriberData = { action: 'handle_dynamic_api_request_with_headers', security: 'f80ac32f85', endpoint: '/app/email_newsletter/update_categories', token: '', data: categoryData }; jQuery.ajax({ url: 'https://coinpedia.org/wp-admin/admin-ajax.php', type: 'POST', data: requestSubscriberData, beforeSend: function(xhr) { xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); }, success: function(response) { try { response = response.data; if (storeCheckedId.length === 0) { var unsubcribedPopUpmodal = ` You’ve Unsubscribed Successfully We're sorry to see you go! Your subscription has been canceled. If you change your mind, you can re-subscribe anytime. Thank you for being part of our community! `; unsubscribemodal.innerHTML = unsubcribedPopUpmodal; document.querySelector('#subscribe-modal-design .modal').style.display = 'none'; unsubscribemodal.style.display = 'block'; unsubscribemodal.classList.remove('hide'); unsubscribemodal.classList.add('show'); document.getElementById('subscribe_' + categoryid).style.display = 'block'; document.getElementById('unsubscribe_' + categoryid).style.display = 'none'; var showDownloadReport = document.getElementById('download_report'); if (showDownloadReport) { showDownloadReport.style.display = 'none'; } } else { var subscribedPopupModal = ` Thank you for subscribing! Thank you for subscribing to our crypto and blockchain newsletter! You’ll now receive the latest news, insights, and updates straight to your inbox. Welcome to our community! `; let selectedSubscriptionsArray = selectedSubscriptionsString.split(','); let subscribedCategories = selectedSubscriptionsArray.map(subscription => subscription.split('_')[0]); let subscribedCategoriesString = subscribedCategories.join(', '); subscribedmodal.innerHTML = subscribedPopupModal; if (document.getElementById('selectidname')) { document.getElementById('selectidname').textContent = subscribedCategoriesString; } document.querySelector('#subscribe-modal-design .modal').style.display = 'none'; subscribedmodal.style.display = 'block'; subscribedmodal.classList.remove('hide'); subscribedmodal.classList.add('show'); document.getElementById('subscribe_' + categoryid).style.display = 'none'; document.getElementById('unsubscribe_' + categoryid).style.display = 'block'; var showDownloadReport = document.getElementById('download_report'); if (showDownloadReport) { showDownloadReport.style.display = 'block'; } } } catch (e) { console.error('Error parsing response:', e); } }, }); } function closeModal(template_id) { var modalId = template_id; var modal = document.querySelector('#' + modalId); // Using querySelector to find the modal if (modal) { modal.classList.add('hide'); modal.classList.remove('show'); setTimeout(function() { modal.style.display = 'none'; }, 500); } else { console.warn('Modal not found:', modalId); } } function closeunsubscribemodal() { var unsubscribemodal = document.querySelector('.unsubscribed-popup-modal .modal'); if (unsubscribemodal) { unsubscribemodal.classList.add('hide'); unsubscribemodal.classList.remove('show'); } setTimeout(function() { unsubscribemodal.style.display = 'none'; }, 500); } function closesubscribemodal() { var subscribedmodal = document.querySelector('.subscribed-popup-modal .modal'); setTimeout(function() { subscribedmodal.style.display = 'none'; }, 500); if (subscribedmodal) { subscribedmodal.classList.add('hide'); subscribedmodal.classList.remove('show'); } } function withoutLoginClicked(withoutlogin_id) { localStorage.setItem('subscribe_without_Login', 'true'); localStorage.setItem('subscribe_clicked_id', withoutlogin_id); } document.addEventListener('DOMContentLoaded', function() { const subscribewithoutData = localStorage.getItem('subscribe_without_Login'); const subscribe_clicked_cat_id = localStorage.getItem('subscribe_clicked_id'); // Function to get cookies function getCookie(name) { let value = "; " + document.cookie; let parts = value.split("; " + name + "="); if (parts.length == 2) return parts.pop().split(";").shift(); } // Get user token from cookies const userToken = getCookie('user_token'); if (subscribewithoutData === 'true' && userToken) { // Call the modal function with the category ID subscribed_popupmodal(subscribe_clicked_cat_id); // Remove the flag and category ID from localStorage localStorage.removeItem('subscribe_without_Login'); localStorage.removeItem('subscribe_clicked_id'); } }); /************************** update susbcriber content **************************** */ function initializeSubscriptionButton() { var initialListItems = document.querySelectorAll('.subscription-options input[type="checkbox"]'); initialListItems.forEach(function(item) { console.log(item.checked, 'Initial Checkbox checked status'); }); var listItems = document.querySelectorAll('.subscription-options li'); if (listItems.length === 0) return; var anyActive = false; listItems.forEach(function(item) { var checkbox = item.querySelector('input[type="checkbox"]'); if (checkbox) { if (checkbox.checked) { item.classList.add('active'); anyActive = true; // Set anyActive to true } else { item.classList.remove('active'); // Remove 'active' class if checkbox is unchecked } } }); } function updateButtonText(anyActive) { var subscribeButtonSpan = document.querySelector('.subscribe-submit .changeBtnText'); if (subscribeButtonSpan) { if (anyActive) { subscribeButtonSpan.textContent = 'Subscribe Now'; } else { subscribeButtonSpan.textContent = 'Unsubscribe'; } } } function updateSubscriptionButton() { var listItems = document.querySelectorAll('.subscription-options li'); if (listItems.length === 0) return; var anyActive = false; listItems.forEach(function(item) { var checkbox = item.querySelector('input[type="checkbox"]'); if (checkbox) { if (checkbox.checked) { item.classList.add('active'); anyActive = true; // Set anyActive to true } else { item.classList.remove('active'); // Remove 'active' class if checkbox is unchecked } } }); // Update the button text based on whether any list item has the 'active' class updateButtonText(anyActive); } document.addEventListener('click', function(event) { var clickedItem = event.target.closest('.subscription-options li'); if (clickedItem) { var checkbox = clickedItem.querySelector('input[type="checkbox"]'); if (checkbox) { checkbox.checked = !checkbox.checked; updateSubscriptionButton(); } } }); Stay tuned as the story develops – and as the crypto community demands answers, reforms, and accountability.
20 May 2025, 13:15
TRON Founder Justin Sun to Attend Trump Gala Dinner as Top $TRUMP Token Holder
Justin Sun to attend Trump’s May 22 gala as top $TRUMP holder, blending crypto & politics. $TRUMP token surges as Sun plans to discuss crypto policy with Trump at major crypto event. TRON sees $2.12B stablecoin inflow while Ethereum sees stablecoin outflow of $2.44B. TRON founder Justin Sun will attend President Donald Trump’s gala dinner on May 22 as the top holder of the $TRUMP meme coin. Sun announced his invitation to the exclusive event through X. This showed his position as the leading investor in the Trump meme coin. Sun expressed his honor in supporting the President and his gratitude for the invitation from GetTrumpMemes, the organization behind the $ TRUMP token. He mentioned plans to discuss cryptocurrency industry developments and the future of digital assets during the dinner in Washington, DC. Honored to support @POTUS and grateful for the invitation from @GetTrumpMemes to attend President Trump’s Gala Dinner as his TOP fan! As the top holder of $TRUMP , I’m excited to connect with everyone, talk crypto, and discuss the future of our industry. https://t.co/FYb39LTwDz — H.E. Justin Sun (@justinsuntron) May 20, 2025 The announcement co… The post TRON Founder Justin Sun to Attend Trump Gala Dinner as Top $TRUMP Token Holder appeared first on Coin Edition .
20 May 2025, 13:10
South Korean presidential front-runner targets youth vote with push for crypto ETFs, won-based stablecoin
Exactly two weeks away from South Korea’s presidential election, Democratic Party candidate Lee Jae-myung is appealing to the country’s youth with a promise to legalize spot cryptocurrency exchange-traded funds (ETFs) and create a won-based stablecoin. According to Lee, the crypto economy could create wealth-building opportunities for younger generations. The East Asian country is one of the world’s most active crypto investor populations, with an estimated 15 million residents having exposure to digital assets. Lee’s campaign is targeting this economically anxious voting bloc, many of whom are hoping to accumulate wealth in digital currencies. According to local news outlet the Korea Herald, both Lee Jae-myung of the Democratic Party of Korea and his rival Kim Moon-soo of the People Power Party made pro-crypto digital asset policy pledges ahead of the upcoming presidential election. South Korea political candidate pushes for crypto reforms Lee’s camp is calling for law changes that legalize spot crypto ETFs, to allow assets like Bitcoin to be traded on South Korean stock exchanges. The presidential aspirant said he is committed to building an integrated digital asset monitoring system and reducing transaction fees to make it safe for investors. He reiterated that these financial products could help hedge against crypto’s volatility when added to a diversified investment portfolio, much different from risk profiles of stocks and bonds. Financial authorities are looking at some amendments to the Capital Markets Act that would classify cryptos as valid underlying assets for ETFs on Korean exchanges . Advocates believe this could boost the number of crypto holders in the country. Notably, Lee has proposed letting large institutional players such as the National Pension Fund invest in digital assets once price stability thresholds are met. Beyond crypto ETFs, Lee’s vision for South Korea’s economy includes the development of a domestic stablecoin backed by the Korean won. He argues that creating a regulated stablecoin market could help the government preserve national wealth and reduce its reliance on foreign digital currencies. In a policy roundtable held last week with several economic content creators, the democratic party candidate warned of capital leakage through the current dependence on US dollar-backed stablecoins such as USDT and USDC. “ We need to establish a won-backed stablecoin market to prevent national wealth from leaking overseas ,” Lee explained. He proposed using the won as an alternative to foreign stablecoins, which could also support the domestic financial system. South Korea presently prohibits the issuance of stablecoins tied to the won, leaving Korean exchanges dependent on foreign-issued assets. Data from Q1 2025 showed 56.8 trillion won (approximately $40.8 billion) in outflows from Korean crypto exchanges, nearly half of which were linked to dollar-based stablecoins. Authorities cautiously optimistic about crypto ETFs Per a public statement released on Monday, Lee Keun-ju, president of the Korea Fintech Industry Association, said Korean markets need ETFs to link the digital economy with existing capital markets. “ A Bitcoin spot ETF is not simply a product, ” Lee Keun-ju stated. “ It can be the gateway to broadening the connection between the digital asset ecosystem and the capital market .” Still, he asserted that legal and infrastructural upgrades would be necessary to support these policy goals. The country’s financial system will need time to adapt to the regulatory and technological demands of crypto ETF integration. The Democratic Party is preparing to introduce the Digital Asset Basic Act this week. This legislation will serve as the foundation for legal oversight of the sector, detailing regulations for the issuance, circulation, and exchange of digital assets in South Korea. If passed, the bill would also formally recognize digital assets as part of Korea’s financial and legal infrastructure. However, plans of creating a national Bitcoin reserve faltered after the Bank of Korea ruled out proposals in mid-March, citing the crypto’s volatile nature. Cryptopolitan Academy: Tired of market swings? Learn how DeFi can help you build steady passive income. Register Now
20 May 2025, 13:10
Genesis Sues DCG and Barry Silbert to Recover Billions Over Alleged Misconduct
Key Takeaways: Genesis filed two lawsuits against DCG and Barry Silbert seeking recovery of over $3.2 billion. The Delaware suit alleges reckless management and misrepresentation of Genesis’ financial health. The New York bankruptcy suit outlines $1B+ in alleged fraudulent transfers to DCG and affiliates. Crypto lending platform Genesis Global has launched a legal offensive against its parent company, Digital Currency Group (DCG), and CEO Barry Silbert, accusing them of engineering a series of insider transactions that ultimately drove the firm into bankruptcy. In a complaint filed in the Delaware Court of Chancery, Genesis said Silbert and his associates of “recklessly operated, exploited, and then bankrupted” the crypto lender through self-dealing and misleading financial disclosures, according to a Monday announcement . The lawsuit alleges that Silbert misrepresented Genesis’s financial health to enrich himself, DCG, and Grayscale Investments. Although Grayscale is referenced, it is not named as a defendant. Genesis Seeks $2.2 Billon Genesis is seeking to recover at least $2.2 billion in Bitcoin, Ethereum, and other crypto assets through the Delaware suit, with the goal of redistributing the recovered funds to creditors still awaiting payment. A second lawsuit, filed in the U.S. Bankruptcy Court for the Southern District of New York, focuses on over $1 billion in allegedly fraudulent fiat and crypto transfers. These transactions include eight transfers totaling roughly $450 million to DCG, as well as more than $297 million in crypto assets sent to DCG International. Another $34 million was paid to DCG in what Genesis now claims were bogus tax-related payments. It’s gonna be a big week… The Genesis LOC’s two major lawsuits against DCG, Silbert and a network of insiders are now available to the public. The partially redacted complaint in Delaware Chancery Court alleges Silbert and DCG’s control and exploitation of Genesis, pursuing… — GenesisLOC (@TheGenesisLOC) May 19, 2025 According to court filings, these transfers took place as Genesis was facing severe liquidity stress triggered by the 2022 collapse of Terra-Luna and the broader market downturn. However, the filings also reveal that Genesis was already insolvent by the end of 2021, burdened by $14 billion in outstanding loans. “Genesis faced extraordinary systemic risk and had virtually no internal controls to mitigate that risk,” the New York complaint states. DSG Was Warned by as Early as 2021 The filing further reveals that DCG was warned as early as November 2021 by consulting firm Oliver Wyman about Genesis’s financial vulnerabilities but failed to act. The financial troubles of Genesis began with the collapse of 3AC, which triggered liquidity issues, and worsened with the implosion of FTX later that year. In January 2023, Genesis filed for Chapter 11 bankruptcy , disclosing over $3.5 billion in debts to its top 50 creditors, including major names like Gemini and VanEck. Following court approval, the company finalized its restructuring plan in August 2024 and has since started returning over $4 billion in assets to its creditors. Earlier this year, the Securities and Exchange Commission (SEC) announced enforcement actions against DCG and Genesis, citing violations of securities laws. The SEC accused DCG and Genesis of defrauding investors through misrepresentation, resulting in penalties and legal action. DCG agreed to settle the charges by paying a $38 million fine. The post Genesis Sues DCG and Barry Silbert to Recover Billions Over Alleged Misconduct appeared first on Cryptonews .
20 May 2025, 13:03
Widening Government Strategy Holdings Suggests Increased Structural Demand for BTC: StanChart
Government entities increased their holdings of Strategy (MSTR), a bitcoin BTC proxy, in the first quarter according to new data from the U.S. Securities and Exchange Commission (SEC), investment bank Standard Chartered (STAN) said in a research report on Tuesday. In some cases "MSTR holdings by government entities reflect a desire to gain bitcoin exposure where local regulators do not allow direct BTC holdings," wrote Geoff Kendrick, head of digital assets research at Standard Chartered. Strategy, which pioneered the bitcoin treasury model where corporates hold the crypto on their balance sheet as a reserve asset, currently holds 576,230 BTC worth around $59 billion at current market prices. The bank noted that both Norway's Government Pension Fund and the Swiss National Bank (SNB) increased their Strategy holdings by the equivalent of 700 bitcoin in the first quarter. The South Korean National Pension Service and the Korea Investment Corporation expanded their holdings by a combined 700 BTC equivalent, the report said. U.S. state retirement funds, including California, New York and North Carolina, together added to their holdings the equivalent of 1,000 bitcoin, the bank said. AP Funds in Sweden and Landesbank in Liechtenstein grew their MSTR holdings marginally, the bank noted. France's Caisse des Dépôts et Consignations (CDC) and the Saudi Central Bank both added a small position in MSTR for the first time, Standard Chartered said. Bitcoin exchange-traded fund (ETF) direct holding data was "disappointing" overall in the first quarter, the report added. The bank said the most recent 13F data supports its central thesis that bitcoin will reach $500,000 before President Trump leaves office as the cryptocurrency attracts a wider range of institutional buyers. Read more: Strategy Expands Bitcoin Holdings With Latest Multi-Million Dollar Purchase
20 May 2025, 12:57
Passive Crypto Income: 7% Daily Returns with Gloud Mining + Sign Up Bonus $18
join Global Cloud Mining. Mine Bitcoin on your phone with GLOBAL-CLOUD: The best cloud mining tools for iOS and Android to maximize cryptocurrency earnings. Use GLOBAL-CLOUD's AI mobile cloud mining now to earn BTC, ETH and LTC for free every day - no hardware required, 100% suitable for beginners! In the wave of rapid development of blockchain and digital assets, Global Cloud Mining was established in 2019 and is leading the new direction of global cloud computing with steady steps and mature technology. As the world's leading cloud computing platform, since its establishment in 2019, we have always adhered to the core concept of "quantitative indicators strengthen professionalism", and continued to focus on creating an easy and convenient cryptocurrency mining experience for global users and providing one-stop cloud computing solutions. Traditional cryptocurrency mining often requires high hardware investment, complex technical maintenance and continuous electricity costs. Global Cloud Mining has completely simplified this process through the "cloud mining" model. Users do not need to buy mining machines or deal with technical details. The platform provides automated mining machine management and intelligent profit distribution, allowing every user to easily participate in mining and get profits with peace of mind. Global Cloud Mining is distributed in many countries and regions with rich energy resources and stable policies around the world, including the United States, Canada, Iceland and Kazakhstan. Relying on advanced data center infrastructure and professional operation and maintenance teams, the platform continues to achieve resource optimization and cost control, bringing more competitive returns to users. Strong global influence 1. Covering 200+ countries and regions around the world 2. More than 4 million registered users 3. Manage hundreds of mining farms 4. All-weather intelligent mining machine management system 5. Transparent and stable profit distribution mechanism. Global Cloud Computing has become the preferred cloud computing platform trusted by many users. Whether you are new to hashing algorithms or have many years of experience in ASIC mining machine operation and maintenance, we can provide you with flexible and diverse mining solutions to meet the needs of different budgets and risk preferences. Why choose Global Cloud Computing? 1. No equipment investment required: no need to purchase or manage hardware, saving a lot of upfront costs 2. Intelligent mining management: the system automatically allocates computing power to ensure maximum benefits. 3. Multilingual professional team, quickly respond to the needs of every customer 4. Transparent operation mechanism: real-time profit query, contract information at a glance 5. Global data center: highly stable and energy-efficient mining environment Summary: The future of blockchain is quietly shaping today. Through global cloud mining, every user can stand at the forefront of the times and seize new opportunities for digital wealth. Open global traders to participate in this passive cryptocurrency cloud mining. Click the official website to start your mining journey with zero threshold! Global Cloud Mining - Your preferred crypto asset mining platform. For more details, please visit the official website: https://35global.com Email address: [email protected] Disclaimer: This is a sponsored article and is for informational purposes only. It does not reflect the views of Crypto Daily, nor is it intended to be used as legal, tax, investment, or financial advice.