Bringing on the tokens made in France according to what Reuters reported, the French public investment bank is preparing an unprecedented fund of up to 25 million euros, specifically intended for the purchase of cryptocurrencies from local projects. Unlike conventional approaches centered on major cryptos such as Bitcoin or Ethereum, this fund will focus on emerging tokens, still not listed on exchange platforms. A strategy against the tide, but which reflects Bpifrance’s desire to bet on innovation before it becomes mainstream. According to the statements of Arnaud Caudoux, deputy director general of Bpifrance, reported by Reuters, this approach meets a double necessity: stimulating the French cryptomonnai ecosystem and facing the American acceleration. While the United States intensified its support for web 3 companies under the leadership of President Trump, Europe is likely to see its talents migrate. Bpifrance therefore wants to offer a launch ramp to its national projects, from the first stages of their tokenization. Still according to Caudoux, the public bank will not be content to buy the tokens. She also plans to play a guide role, helping the projects to cross the critical steps leading to their quotation on the Exchanges. This involvement goes far beyond funding: it involves structuring a favorable environment for French builders, in a sector where competition is global and where agility makes the difference. Clara Chappaz, Minister Delegate to AI and Digital, welcomed this initiative, describing it as a strong signal sent to the whole ecosystem. “Bpifrance shows our determination to make France a nation of excellence for web3 and blockchain technologies,” she said. A cryptocurrency ecosystem France in full effervescence This Bpifrance movement is part of a context of palpable effervescence on the French crypto scene. A few days ago, the creation of the National Bitcoin Institute (INBI) was formalized. Carried by Alexandre Stachtchenko, an emblematic figure of the web 3 in France, the INBI is responsible for democratizing the understanding of bitcoin and cryptocurrencies, while deconstructing received ideas. In partnership with major players such as the co -founder of Ledger, the Institute wants to offer neutral training on the energy, social and economic issues of the BTC. In parallel, the debate around a Bitcoin strategic reserve resurfaces. After the rejection of a citizen petition by the National Assembly, it was François Asselineau, president of the Republican Popular Union, who revived the subject. With the support of analysts Marvin Scuringella and Florent Gabriel, he pleads for 5 to 10 % of the Banque de France reserves to be converted to BTC. An ambitious proposal, justified by the need to preserve monetary sovereignty in a rapidly changing world. And while the political debate ignites, The Blockchain Group acts. The company has just announced the acquisition of 580 BTC for 47.3 million euros, bringing its assets to 620 BTC, a national record. Presented as the “French Microstrategy”, the company intends to become the first Bitcoin reserve in Europe. This movement is part of an accumulation strategy launched at the end of 2024, and testifies to the will of the private actors to play a weight role in the new financial era. Morality of history: Better late than badly awake. Notice of non-responsibility Non-responsibility notice: In accordance with the guidelines of The Trust Project, BEINCRYPTO undertakes to provide impartial and transparent information. This article aims to provide exact and relevant information. However, we invite readers to verify the facts of their own and consult a professional before making a decision on the basis of this content.
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();