DEV Community

Chang-Suk
Chang-Suk

Posted on

What is Understandable Blockchain (UBC) - Chapter 1

This article was first published on Medium. You can take a look at it here

Currently, too many public blockchains exist and they all use different API and data structure, meaning that each service needs to be developed according to each one’s condition and function, which is cumbersome. In other words, developers have to bear huge costs, along with the difficulty of developing their own services for appropriate structure and API for Ethereum, EOS, and others.

To solve this problem, many interchain projects such as Icon and Cosmos came out in the blockchain world, but they are stuck with technical limitations, so the developing direction shifted to link with own individual chains. In fact, if there isn’t a standardized interface that is compatible to all blockchains with different API and data structure, it is impossible to interconnect blockchains.

In particular, unlike database that saves and deletes data on its own, the data on blockchain is processed and saved through a consensus algorithm. Once the data is stored in the blockchain, it is almost impossible to change. As such, the important implication is that processing method and understanding of data are important. However, most of blockchain’s development, API and operating and managing tools are at a basic level, so developers are faced with many difficulties when developing their own service. For example, many difficulties arise due to lack of the ability to find out cause of problems arising from tracking, debugging, revert issues in EVM. To address these fundamental problems, various developing and operating tools based on standardized interface like SQL of RDBS are in dire need.

Understandable Blockchain

Unlike regular data processing steps that create immediate input/output, a blockchain model where anyone in the world can participate in the consensus process goes through asynchronous transaction processes, which make difficult for developers to understand the whole processing process.
As such, it is important to create a more intuitive and productive environment where data and its processing are easy to understand. In particular, an understandable blockchain environment is especially important, because smart contracts can define various types of data structure and processing.
We name the blockchain that provides a series of environments that help to efficiently process and analyze blockchain data as “Understandable Blockchain (UBC)”. Visualization of blockchain data is essential to establish the UBC environment.

Check Luniverse Site for more information about UBC


On next chapter 2, we will take a deep dive into Understandable Blockchain and Data visualization

Top comments (0)