Skip to main content

MLB Team Washington Nationals Partners With Terra Blockchain Community, Ballpark Plans to Accept UST

On February 9, the American professional baseball team based in Washington, D.C., the Washington Nationals, announced the team has partnered with Terra, the open-source blockchain platform and decentralized autonomous organization (DAO). The Washington Nationals detail that the team is a “leading innovator” and is “consistently introducing new technologies to enhance the fan experience.” Washington Nationals Ink Long-Term Deal With Terra Major League Baseball (MLB) team the Washington Nationals has partnered with the blockchain platform and DAO Terra, according to an announcement published by the team on Wednesday. The deal with Terra follows a slew of sports-related deals with crypto firms, but the MLB team will be the first to partner with an open-source blockchain project. In addition to the partnership, the algorithmic stablecoin UST that’s issued on the Terra blockchain will be “accepted as a payment method at Nationals Park as early as next season.” “The Nationals continue t...

RChain and ZB: Toward a Queueless, Leaderless, Limitless Blockchain

On November 2rd, 2021, RChain‘s blockchain scientist Atticbee visited ZB exchange as an invited guest for a very technical AMA. ZB is a global exchange being in operation for 8 years with a focus on keeping customers’ assets secure. Atticbee discussed the problems of current blockchain technology and RChain’s answer to these challenges, and why one day RChain will be the most user and developer friendly Web 3.0 infrastructure.

What is Missing In All Current Public Blockchains

In Atticbee’s view, none of existing public chains has addressed these issues that are critical to Web 3.0:

  1. Currently there is NO REAL solution to the scalability problem: the scalability of Layer 2 and ETH 2.0 is an illusion because the individual Layer 2 and shard subsystems are not interoperable – they do not “look and feel” like one logical chain.
  2. They are designed for token transfer applications, not data intensive Web 3.0 applications.
  3. Contracts cannot safely call each other, lacking the “secure composability” to build large, complex software systems from smaller and simpler building blocks as in Web 2.0.

Greg Meredith, the founder of RChain, realized these pain points in 2015 when he and Vitalik, the founder of Ethereum, were working together to scale Ethereum. So he chose the concurrent, composable Rho-Calculus with on-chain formal verification capability as the computational model for the contract layer at the beginning of the design.

This technology route has many features theoretically impossible for other projects:

  1. Solves the “blockchain trilemma” with concurrent “queueless” transaction processing.
  2. One platform for all: Direct on-chain storage of large data, integrating all the functions of ETH, IPFS and GRT into one single platform.
  3. Seamless sharding: shards look and feel like one with atomic cross shard transactions.
  4. Fast on-chain formal verification based on its OSLF behavior type system.

The Root Cause of the “Blockchain Trilemma” and Its Solution

In Atticbee’s view, the “trilemma of security, performance, and decentralization”, only applies to the current blockchains that require queuing up the transactions, but not applicable to the queueless RChain.

Essentially traditional blockchains require transactions to be processed as a long queue, with all nodes in the network working together to maintain this queue. Then they are doomed to suffer from an impossible triangle of security, performance, and decentralization:

  1. For security, more nodes need to be involved in maintaining this queue.
  2. For performance (scalability), the queue needs to move forward as fast as possible.
  3. For decentralization, all nodes need to have equal opportunity to participate in the management and processing of this queue and monitor each other.

Basic logic tells us one can only choose any two of them and give up the third. Typical examples: Ethereum chooses security and decentralization over performance; Solana, a leader based system, chooses security and performance over decentralization; EOS with 21 equal nodes chooses performance and decentralization over security.

However, when one realizes that “distributedly maintaining a transaction queue is the root cause of the trilemma ”, this problem naturally gets solved if we can eliminate the need for a translation queue like RChain. In RChain’s “block-merge” test network, as more nodes are added, the network achieves higher TPS. It is a solid proof that the trilemma has been solved: more nodes means stronger security; leaderless means decentralized; higher TPS means better performance. Thus RChain reaches all three vertices of the “impossible triangle” simultaneously.

RChain VS Solana and PolkaDot — Two Examples of Flawed Solutions

When asked his view on other star projects, Atticbee thinks Solana achieves high TPS at the cost of the blockchain trust model, which is meaningless because any centralized system can have much higher TPS. The idea behind its design is simple: since it is too slow to let many nodes manage the queue together, it simply lets a Proof-of-History node decide the order and write into a tamper resistant PoH ledger. The other nodes just execute and validate the transactions in this ledger.

However, by doing this, the job of managing the queue is centralized, and the PoH node can dictate transaction order, or censor transactions at will. These malicious behaviors are almost impossible to detect and prove. Atticbee mentioned Flow as a project with a similar idea but uses a committee to decide the order, making it a more fair version of Solana, but as a cost its TPS is much lower. It is a textbook example of how a “queued system” inevitably suffers from the trilemma.

As for RChain, it doesn’t need to queue up transactions at all, so it can achieve high TPS while keeping a decentralized leaderless architecture.

Atticbee also views PolkaDot as an incomplete cross-chain solution lacking essential coordination capabilities. It has no way to atomically finalize cross chain transactions. Also it does not provide the “composable security” to ensure that when one contract located calls another contract on another para-chain through the relay chain, the permissions given won’t be leaked to others. RChain has atomic finalization of cross-chain transactions, coupled with a behavioral type system as a “on chain firewall”, making it a superior cross-chain solution.

A Global Computer with Concurrent Process Orchestration

RChain’s ultimate goal is to build a true global computer to serve as the foundation of Web 3.0. As seen from the Web 2.0 experience, the most valuable asset on the web is the vast amount of data. Therefore all existing blockchains have been built with the wrong design at the beginning: they are exclusively optimized as payment networks. A true Web 3.0 infrastructure must be designed for data-intensive applications.

In addition, we can see that existing Web 2.0 systems are becoming more complex, but thanks to componentization and containerization, developers can quickly build out large systems with smaller reusable components. However, without a fast formal verification system to ensure safe cooperations between contracts, none of the existing blockchains can achieve this. The Venus phase of the RChain roadmap tries to solve this pain point by introducing a behavior type system support. RChain’s Rho-Calculus is one of the very few models that have this capability.

Every Developer Should Start Learning Rholang

Rholang, a language based on process calculus, has long been neglected by the IT industry because of its reluctance to leave the comfort zone of current programming paradigms. However, entering the blockchain era, Rholang has a range of advantages for blockchain by its design.

First of all, its immutability makes “queueless” transactions possible. All resources in Rholang are immutable data and codes organized by channels. Atticbee made a metaphor: a contract written in a traditional language like Solidity is like a group of kids drawing on a blackboard: the order in which the kids draw will affect the final state of the board, so they must form a queue. On the other hand, Rholang is more like a group of kids playing with Lego blocks: they can pick up and assemble some blocks and then connect the product back to the common project. Since no one can “mutate” any piece, the order doesn’t matter so the kids can play at the same time.

Another important benefit of being “queuess” is that large data can be stored directly on-chain. Any data intensive transactions have to deal with the high latency of network and disk operations. The prerequisite for such transactions to be done on-chain is that they can be processed simultaneously with other types of transactions.

After the sharding milestone, RChain will have another developer friendly feature: there is no difference between writing a cross-shard contract and writing a single-shard contract.

After the Venus milestone, developers can use the behavioral type system to perform static analysis to answer questions such as: Will this code create a race condition, get into a deadlock, or leak any given permissions to a third party? These analyses can be done at compile time in Rholang, before the code runs. With this feature, now you can organize a group of contracts together on-chain and allow them to call each other safely in a concurrent setting. This advantage completes RChain’s ultimate killer feature: on-chain orchestration of contracts, or “Kubernetes on the blockchain”.

The RChain community has already built DApps that other chains can’t do by taking advantage of its on-chain data storage capability:

  1. Dappy: decentralized DNS server and browser, with NFT and wallets integrated in one package.
  2. RSong: music streaming DApp with music stored directly on-chain.
  3. RPI: a photo NFT platform with photo data stored directly on-chain.
  4. RCovid-19 Passport: vaccination certificates stored directly on-chain.

Atticbee predicts that once all the milestones are complete, the benefit of Rholang is sufficient enough to make every DApp developer adopt this new language paradigm.


This is a sponsored post. Learn how to reach our audience here. Read disclaimer below.

Comments

Popular posts from this blog

MLB Team Washington Nationals Partners With Terra Blockchain Community, Ballpark Plans to Accept UST

On February 9, the American professional baseball team based in Washington, D.C., the Washington Nationals, announced the team has partnered with Terra, the open-source blockchain platform and decentralized autonomous organization (DAO). The Washington Nationals detail that the team is a “leading innovator” and is “consistently introducing new technologies to enhance the fan experience.” Washington Nationals Ink Long-Term Deal With Terra Major League Baseball (MLB) team the Washington Nationals has partnered with the blockchain platform and DAO Terra, according to an announcement published by the team on Wednesday. The deal with Terra follows a slew of sports-related deals with crypto firms, but the MLB team will be the first to partner with an open-source blockchain project. In addition to the partnership, the algorithmic stablecoin UST that’s issued on the Terra blockchain will be “accepted as a payment method at Nationals Park as early as next season.” “The Nationals continue t...

Year of sponsorships: Celebrities who embraced crypto in 2021

From Matt Damon appearing in a TV spot for Crypto.com to Kim Kardashian shilling EthereumMax, 2021 saw celebrities with higher profiles getting into crypto. Though the crypto space has seemingly moved beyond the endorsements many minor celebrities bestowed on token projects during the 2018 initial coin offering boom, its growing popularity and acceptance now has professional sports players, Hollywood elites and politicians backing major companies dealing with digital assets. In June 2021, Kim Kardashian promoted EthereumMax (EMAX) via an Instagram story shared with  her more than 200 million followers . The token, which was used as payment for online ticket purchases for some pay-per-view events, gained 116,000% in just one week following the celebrity’s activity before falling more than 99% and leaving many investors in the red. Kim Kardashian promoting EthereumMax on Instagram Stories, June 2021. Source: Instagram Though EthereumMax is somewhat of a cautionary tale for cry...

Top 3 Rebase Token Markets Shudder — Stats Show TIME, OHM, BTRFLY Lost Billions Since All-Time Highs

While the crypto economy has shed more than 3% in fiat value during the last 24 hours dropping to $2.09 trillion, the top rebase tokens by market capitalization have seen significant losses this week. At the time of writing, the rebase token economy is valued at over $3.2 billion but has lost more than 10% in value during the last 24 hours. The largest rebase token economies such as Wonderland, Olympus, and Redacted Cartel have shed between 36% to 55% over the last week. Top 3 Rebase Token Protocols Shed Billions in Value Over the Last Week, Wonderland Down 87% Since High On the first day of November 2021, Bitcoin.com News took a deep dive into the Olympus DAO and the reserve-backed asset called OHM . Olympus is a decentralized finance (defi) project that is described as a rebase token and since Olympus started, a myriad of Olympus forks have been born. Essentially, rebase token protocols adjust the token supply in a periodic fashion or when the price fluctuates. Olympus was once ...