العملة المشفرة Ethereum Foundation Moves Treasury to DeFi, Halts Heavy ETH Selling

Ethereum Foundation Moves Treasury to DeFi, Halts Heavy ETH Selling

nickmy2019@gmail.com
0

The Ethereum Foundation (EF) is tightening its spending strategy and ramping up support for DeFi as it heads into what it calls a critical 18-month period. A new treasury policy has been introduced to manage funds more carefully and stay better prepared for the challenges ahead.

New Focus: DeFi, Yield, and Transparency

Under this new plan, EF will tie its operating costs and runway to its ETH holdings, with regular reassessments. EF’s Hsiao-Wei Wang said the current treasury gives the Foundation about 2.5 years of runway, stressing the need for more deliberate capital deployment moving forward.

As part of this shift, EF will now use its treasury assets across audited DeFi protocols like Aave, earning yield and engaging directly with the Ethereum ecosystem it once kept distance from. According to OAK Research, this is a bullish development for ETH, as it reduces the need to sell tokens while supporting secure, open-source dApps. EF has already lent ETH and borrowed $2 million in stablecoins from Aave and may explore RWAs via platforms like Securitize.

  • Also Read :
  •   Ethereum Price on the Edge: Vitalik, Whales, and Analysts Hint at a Breakout?
  •   ,

ETH Sales and Fiat Investments on the Table

EF clarified that ETH sales could still occur quarterly, depending on fiat needs, but less aggressively now that DeFi income streams are active. It’s also considering diversifying fiat reserves into low-risk instruments like Treasury bills and bonds.

See also  California Man Accused of Draining Elderly Retiree's Crypto Account of Nearly $100,000

To maintain community trust, EF will publish quarterly reports detailing asset performance, positions, and major events, adding transparency after recent Ether sales stirred backlash.

Laying Groundwork for Ethereum’s Future

With ETH still 46% below its 2021 high and lagging behind BTC and SOL, this revamped strategy signals EF’s long-term commitment. By directly supporting “Defipunk” principles and ecosystem builders, the Foundation appears to be setting the stage for Ethereum’s next growth chapter.

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  AAVE Price Eyes $110 as V4 Prime Loans Hit Record High

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

What is the Ethereum Foundation?

The Ethereum Foundation is a nonprofit that supports Ethereum’s development, ecosystem growth, and long-term sustainability.

Who owns most of Ethereum?

Vitalik Buterin is the largest known individual ETH holder, but most ETH is held across thousands of wallets and exchanges.

معلومات عنا

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

تواصل معنا

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