Skip to content
Popup Example

Earn From News Kiosk

China Plans to Develop Blockchain-Focused National Data Infrastructure By 2029

January 10, 2025
China Plans to Develop Blockchain-Focused National Data Infrastructure By 2029

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
China Plans to Develop Blockchain-Focused National Data Infrastructure By 2029

China’s government on Monday released guidelines for the development of a national data infrastructure, as part of efforts to improve its data exchange and management network. A document published by the National Development and Reform Commission and two other authorities states that China must explore blockchain technology to make its data exchange and management ecosystems more secured through smart contracts. Also called the distributed ledger technology (DLT), the blockchain is the underlying technology used by cryptocurrencies, NFTs, and the metaverse. According to the document titled National Data Infrastructure Construction Guidelines”, a blockchain-based implementation can safeguard stored data against tampering. The authorities behind the project believe that the national data infrastructure must be kept up-to-date to support the circulation and storage of information that is important in terms of national security. In recent years, blockchain networks have emerged as a potential replacement for traditional Web2 servers. A blockchain does not concentrate large amounts of data at one point, unlike traditional servers. Instead, information saved on blockchain networks is segregated into multiple smaller units of data, and these are spread across the network. This protects the data against leaks and breaches. In addition, blockchain networks log data permanently and in an unalterable format — which brings a layer of trust and transparency to data storage.China’s Blockchain PlansChina plans to work on new database solutions that would be supported on blockchain networks, it said in the guidelines. The updated data management solutions that the Asian nation is betting on will integrate hardware, software, and model algorithms together to be used by the government, industries, and enterprises operating there.“(These) features are mainly used to solve trust and security issues. in the process of data circulation,” the guidelines noted.Creating a trusted data circulation system, data delivery system, and data application system for industries is part of the government’s plan.The country aims to deploy the main structure of this blockchain-supported data infrastructure by 2029 — it will need to finish the top level design of the system by 2026, and integrate data networks and computing power facilities by 2028.China’s History with BlockchainWhile China imposed a blanket ban on all crypto-related activities in 2021, it continued to show an inclination in experimenting with blockchain technology. The country is also working on its own central bank digital currency (CBDC). In 2022, the Cyberspace Administration of China (CAC) launched a nationwide program to focus on blockchain-related research and development. The CAC is the central Internet regulator of China. Last April, China launched the ‘Ultra-Large Scale Blockchain Infrastructure Platform for the Belt and Road Initiative’. The aim of this initiative was to develop a global infrastructure through which China aimed to connect continents across land and sea.The country has also formed a standard-setting body comprised of Huawei and Tencent to define rules to oversee the expansion of metaverse-related developments. .Catch the latest from the Consumer Electronics Show on Gadgets 360, at our CES 2025 hub.

Credit-Read More

News kiosk Latest Posts

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

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