This year, Russia permitted the use of cryptocurrencies in foreign trade and has taken steps to make it legal to mine. cryptocurrencies, including Bitcoin. Russia is one of the global leaders in Bitcoin mining.”As part of the experimental regime, it is possible to use Bitcoins, which we had mined here in Russia (in foreign trade transactions),” Siluanov told Russia 24 television channel.”Such transactions are already occurring. I am confident this will happen next year,” he said, adding that international payments in digital currencies represent the future. Earlier this month, President Vladimir Putin said that the current US administration was undermining the role of the US dollar as the reserve currency by using it for political purposes, forcing many countries to turn to alternative assets.He singled out Bitcoin as an example of such assets, saying that no-one in the world could regulate Bitcoin. Putin’s remarks indicated that the Russian leader backs the extensive use of cryptocurrencies.© Thomson Reuters 2024(This story has not been edited by NDTV staff and is auto-generated from a syndicated feed.)
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);
Random Latest Posts Display // Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
// 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();