العملة المشفرة MetaPlanet Boosts Bitcoin Holdings to 6,796 BTC, Solidifying Position as Asia’s Largest Corporate Holder

MetaPlanet Boosts Bitcoin Holdings to 6,796 BTC, Solidifying Position as Asia’s Largest Corporate Holder

nickmy2019@gmail.com
0

Japanese-listed firm MetaPlanet Inc. has bought 1,241 more Bitcoins, boosting its total to 6,796 BTC. This marks a 22% jump in its holdings. The company is also raising money through bonds and stock rights to keep growing its Bitcoin investments.

This latest acquisition cost the company approximately ¥18.42 billion (around $118 million) at an average price of ¥14.84 million per BTC. This latest purchase brings its total Bitcoin stash to 6,796 BTC, valued at over ¥90.19 billion. With an average acquisition cost of just ¥13.27 million per coin, MetaPlanet is now Asia’s largest corporate holder of Bitcoin and ranks 11th globally, according to BitcoinTreasuries. With BTC recently pushing above $104,000, MetaPlanet’s strategy seems well-timed.

Outperforming MicroStrategy on Returns

While MicroStrategy is often seen as the leader in corporate Bitcoin adoption, MetaPlanet is catching up quickly and outperforming. The company achieved a 2x return on its Bitcoin position in just three months, whereas MicroStrategy took 19 months to reach similar gains. MetaPlanet’s modified NAV is also growing 3.8x faster, and analysts believe its stock could climb from ¥533 to as high as ¥1,340.

  • Also Read :
  •   What’s Next For Bitcoin, XRP, Ethereum and Solana Price?
  •   ,

$25 Million Raise to Buy More Bitcoin

MetaPlanet isn’t slowing down. The company recently announced a plan to raise $25 million to further grow its Bitcoin reserves. Unlike MicroStrategy’s more structured approach, MetaPlanet is betting big and fast on BTC, positioning itself as a high-leverage crypto asset play.

See also  BC.GAME Launches Phase 2 of Social Mining Campaign, Expanding Ecosystem Engagement with $BC Token

MetaPlanet Stock Jumps 13% 

Investor confidence in MetaPlanet’s aggressive Bitcoin strategy is showing up in its stock performance. Last week, shares of MetaPlanet surged by 13.32%, closing at ¥485. The stock touched a high of ¥502 during the session, driven by optimism over its growing crypto exposure. With a market cap of ¥24.21 billion and a P/E ratio of 25.86, the company is fast gaining recognition as Japan’s top Bitcoin-centric stock.

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.

`;

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’);

See also  Will Buyers Push XRP Further?

// 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();
}
}
});

معلومات عنا

كن على اطلاع بأحدث الأخبار في عالم المال والأعمال، من خلال الاطلاع على أحدث الأخبار عن سوق الفوركس والأسهم والعملات المشفرة والأسواق العالمية. احصل على رؤى الخبراء واتجاهات السوق واستراتيجيات التداول والتحديثات الاقتصادية لاتخاذ قرارات مستنيرة. سواء كنت مستثمرًا أو تاجرًا أو متحمسًا للتمويل، فإننا نقدم تحديثات وتحليلات ونصائح في الوقت الفعلي لمساعدتك على التنقل في عالم المال الديناميكي، من الأسواق التقليدية إلى الأصول الرقمية مثل العملات المشفرة.

تواصل معنا

اشترك في نشرتي الإخبارية للحصول على منشورات المدونة الجديدة والنصائح والصور الجديدة. لنبقى على اطلاع!

©2025 – جميع الحقوق محفوظة.