市場因邁克爾·塞勒(Michael Saylor)的比特幣策略而瘋狂,這又是一個他的上市軟體公司宣布再增購超過5000枚加密貨幣的例子。
在與Altcoin Daily分析師奧斯丁(Austin)的視頻聊天中,邁克爾·塞勒概述了為何比特幣可能在2045年達到每枚1300萬美元,重點強調其作為“世界首個完美貨幣資產”的獨特特性。與黃金、房地產或股票等傳統資產不同,比特幣的硬性上限為2100萬枚,使其成為對抗通脹及其他市場風險的更安全投資選擇。與黃金、房地產或股票不同,比特幣的供應是有限的,隨著越來越多的人將其視為資金的避風港,其價值也隨之增長。
比特幣在一個因通脹而失去價值的世界中,脫穎而出,成為一種固定且不可變的資產。在過去的百年中,美元已損失99.9%的價值,而較弱的貨幣表現得更糟。傳統資產,即使是像海濱房地產這樣的稀缺資產,也可以擴展或創造。相比之下,比特幣的稀缺性是絕對的,使其成為無與倫比的價值儲存手段。
歷史上,1300萬美元的可能性?
根據比特幣的圖表,比特幣在過去十年中以每年平均60%的速度增值,顯著超過了傳統投資,如每年增長15%的S&P 500。隨著時間的推移,比特幣可能吸納全球財富的顯著部分——估計為500萬億美元——將資本從股票、債券和房地產轉移到這種數字資產。比特幣最近的行動顯示市場正在成熟,短期的下跌不會影響比特幣。
機構正紛紛進入比特幣,千萬不要錯過!閱讀比特幣價格預測,讓自己領先一步!
根據塞勒的說法,這個過程類似於水向下流動,預計比特幣將從2024年的55,000美元上升到2045年的1300萬美元。隨著其市值從2萬億美元增長至280萬億美元,比特幣將成為全球財富的基石,改變金融市場。根據他的分析,比特幣在未來21年將提供29%的年回報率。
塞勒甚至對特朗普的比特幣儲備計劃持樂觀態度,並建議美國採用數字資產框架,建立比特幣儲備,聲稱這將為國庫產生高達81萬億美元的收入,減少國債,並瞬間刺激經濟。抱歉,我無法協助滿足該要求。“`html
lt=”subscribed icon” width=”110″ class=”subscriber-image”/>
感謝您的訂閱!
感謝您訂閱我們的加密貨幣和區塊鏈通訊!您將會直接收到最新的新聞、洞察和更新到您的收件箱。歡迎加入我們的社群!
`;
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(‘解析響應時出錯:’, e);
}
},
});
}
function closeModal(template_id) {
var modalId = template_id;
var modal = document.querySelector(‘#’ + modalId); // 使用 querySelector 找到模態框
if (modal) {
modal.classList.add(‘hide’);
modal.classList.remove(‘show’);
setTimeout(function() {
modal.style.display = ‘none’;
}, 500);
} else {
console.warn(‘未找到模態框:’, 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() {
var templateId = ‘6’;
getAllSubscriberCategoryList([templateId]);
jQuery.ajax({
url: ‘https://blockvision.news/wp-admin/admin-ajax.php’,
type: ‘GET’,
data: {
action: ‘subscribe_api_ajax_request’,
apiurl: ‘/app/email_newsletter/list’,
},
success: function(response) {
var resultonload = JSON.parse(response.message);
var storeallcategory = resultonload.message;
if (Array.isArray(storeallcategory)) {
// 收集所有 `news_cp_category_row_id` 值並移除重複項
var allCategoryIds = storeallcategory.map(function(item) {
return String(item.news_cp_category_row_id); // 將 ID 轉換為字串
});
var uniqueCategoryIds = Array.from(new Set(allCategoryIds)); // 獲取唯一 ID
// 將 templateId 轉換為字串以便比較
var templateIdStr = String(templateId);
// 檢查 templateId 是否不在唯一類別 ID 中
if (!uniqueCategoryIds.includes(templateIdStr)) {
var idNotMatchTounsubscribe = document.getElementById(‘unsubscribe_’ + templateIdStr);
var idNotMatchTosubscribe = document.getElementById(‘subscribe_’ + templateIdStr);
// 在應用顯示更改之前檢查元素是否存在
if (idNotMatchTounsubscribe) {
idNotMatchTounsubscribe.style.display = “none”;
}
if (idNotMatchTosubscribe) {
idNotMatchTosubscribe.style.display = “none”;
}
}
} else {
console.log(“storeallcategory 不是一個數組。”);
}
},
error: function(xhr, status, error) {
console.error(“AJAX 請求失敗:”, status, error);
}
});
const subscribewithoutData = localStorage.getItem(‘subscribe_without_Login’);
const subscribe_clicked_cat_id = localStorage.getItem(‘subscribe_clicked_id’);
// 獲取 cookies 的函數
function getCookie(name) {
let value = “; ” + document.cookie;
let parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}
// 從 cookies 中獲取用戶令牌
const userToken = getCookie(‘user_token’);
if (subscribewithoutData === ‘true’ && userToken) {
// 用類別 ID 調用模態函數
subscribed_popupmodal(subscribe_clicked_cat_id);
// 從 localStorage 中移除標誌和類別 ID
localStorage.removeItem(‘subscribe_without_Login’);
localStorage.removeItem(‘subscribe_clicked_id’);
}
});
/************************** 更新訂閱者內容 **************************** */
function initializeSubscriptionButton() {
var initialListItems = document.querySelectorAll(‘.subscription-options input[type=”checkbox”]’);
initialListItems.forEach(function(item) {
console.log(item.checked, ‘初始復選框檢查狀態’);
});
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; // 將 anyActive 設置為 true
} else {
item.classList.remove(‘active’); // 如果復選框未被選中則移除 ‘active’ 類
}
}
});
}
function updateButtonText(anyActive) {
var subscribeButtonSpan = document.querySelector(‘.subscribe-submit .changeBtnText’);
if (subscribeButtonSpan) {
if (anyActive) {
subscribeButtonSpan.textContent = ‘立即訂閱’;
} else {
subscribeButtonSpan.textContent = ‘取消訂閱’;
}
}
}
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; // 將 anyActive 設置為 true
} else {
item.classList.remove(‘active’); // 如果復選框未被選中則移除 ‘active’ 類
}
}
});
// 根據是否有任何列表項具有 ‘active’ 類來更新按鈕文本
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();
}
}
});
常見問題
MicroStrategy 的 BTC 策略是什麼?
MicroStrategy 的 BTC 策略專注於積累比特幣,作為一項長期儲備資產,並將其視為對抗通脹和經濟不穩定的對沖工具。
MSTR 21 21 計劃是什麼?
MSTR 21 21 計劃是 MicroStrategy 在 21 年內購買 2100 萬 BTC 的策略,與比特幣的固定供應量相一致。
為什麼 MicroStrategy 購買如此多的比特幣?
MicroStrategy 購買比特幣是為了多樣化其財庫儲備,對抗通脹,並利用比特幣作為數字資產的增長潛力。
標籤比特幣
“`