Local Indian Government Sites under attack of Cryptojacking

While India is in a dilemma to restrict or allow cryptocurrencies, the country’s government website is helping miners by mining cryptos unknowingly. As per the latest security report – Government websites like the director of municipal administration of Andhra Pradesh, Macherla municipality and Tirupati Municipal Corporation are among hundreds of Indian sites being used to mine cryptocurrencies.

A malware known as cryptojacking – where an unauthorized user could use your computer power to mine cryptos. Hackers get users to click on a malicious link in an email that loads crypto mining code on the computer or infects a website with JavaScript code that mines cryptocurrencies using up a visitor’s computing power without consent. While earlier malware attacks were equipped with blocking the data and asking for ransom, cryptojacking has been spreading successfully because of its nature of not being detected.

Read more at economictimes

A Guide To Ethereum Sharding

Our current post is part 3 of our Ethereum series, in case you have missed our earlier post, please go through Ethereum Roadmap Explained and How Could Plasma Help Ethereum Scale Up?.

Ethereum community is undergoing an overhaul while there focus on decentralization and security, they are keen to scale up the Ethereum network to practical levels, where all DAPPS have a smooth sail. Announced by  Ethereum’s co-founder Vitalik Buterin in April 2018, Sharding is a method of increasing the number of transactions that a blockchain can process helping in maintaining gas price and reducing transaction confirmation time. Let’s explore in detail what Sharding is? When is Sharding being implemented? And How Ethereum Sharding works?

What is Sharding?

Sharding is not a new concept and existed even before Blockchain came into existence and applied to any database. As serachcloudcomputing defines –  Sharding is a type of horizontal database partitioning that separates very large databases into smaller, faster, more easily managed parts called data shards. The word shard means a small part of a whole.

Yes, its Horizontal Partitioning and not vertical partitioning. Let’s pick an example to know it better –

TABLE 1

Name Age Occupation City
Alex 32 Employed London
Appy 32 Freelancer Singapore
Chole 43 Retired Berlin
Ajay 43 Business Chennai

In case we partition the table vertically[splitting into two] it results in

Name Age
Alex 32
Appy 32
Chole 43
Ajay 43

 

Occupation City
Employed London
Freelancer Singapore
Retired Berlin
Business Chennai

And in case we split horizontally

Name Age Occupation City
Alex 32 Employed London
Appy 32 Freelancer Singapore

 

Name Age Occupation City
Chole 43 Retired Berlin
Ajay 43 Business Chennai

So on splitting the tables vertically, it creates two new tables that need more space when compared to splitting horizontally by grouping similar one together.

Well, that looks like a simple partitioning of the database? Now imagine this partitioning happening on a decentralized, peer-to-peer network that gets constant updates globally. Hence, Ethereum Sharding differs a bit…let’s dive deep to know more.

What is Ethereum Sharding?

As the man, Vitalik Buterin himself quotes –

Imagine that Ethereum has been split into thousands of islands. Each island can do its own thing. Each of the islands has its own unique features and everyone belonging on that island, i.e., the accounts, can interact with each other AND they can freely indulge in all its features. If they want to contact other islands, they will have to use some sort of protocol.”

Blockchain that is a distributed, decentralized peer-to-peer network consists of a series of nodes. At any given point each node of a blockchain network like Bitcoin or Ethereum stores all states of the network and processes all of the transactions, that helps in high-level security but legitimate scaling issues.

Nodes on such network stores and processes every information/transaction, leading to network straining. With shards in place, one could group similar sets of nodes into one shards that helps in faster processing of the transaction for that specific shard. Basically, you are allowing the system to run multiple transactions parallelly, thereby increasing throughput.

A laymen example could be a “SCHOOL,” where although all students [as nodes] are under same network[ABC School] they are governed by section and class they belong, which have their own set of rules and protocols.

Technically, Ethereum Sharding would be splitting the state [a set of information that represents the “current state” of a system] and history[an ordered list of all transactions that have taken place since genesis] up into

K= O(n/c) partitions

referred to as shards

Where K = shard,
n= size of the ecosystem[in abstract form] assuming that transaction load, state size, and the market cap of a cryptocurrency are all proportional to n.
c= size of computational resources, and
O= Big O notation characterizes functions according to their growth rates.

Picking an example, on Ethereum network a sharding scheme

Shard One All addresses starting with 0x00
Shard Two All addresses starting with 0x01
Shard Three All addresses starting with 0x02

Please note that each shard would have its own transaction history and also the effect of transactions in a shard ‘k’ would be limited to the state of shard ‘k.’

For example, if you have a multi-asset blockchain, the sharding scheme could be where each shard stores the processes and balances of the transaction associated with one specific asset. Making it more complicated, could be the ability of one shard to trigger events on another shard referring as cross-shard communication capability.

How Would Sharding Work in Ethereum?

Ethereum Sharding
Ethereum Sharding

Before diving into “How” let’s get familiar with the terminologies –

Sharding 3
IMAGE COURTESY – MEDIUM @ICEBEARHWW

State

At any given point in time, the complete set of information, i.e., current balances, nonces, smart contract code, transactions, etc. that describes a system. Each transaction initiated could bring the network into a new state.

Transaction

A set of instructions/actions issued by the individual to change the state of the system.

Merkle Tree

Data structure concept that helps in organizing large data sets via cryptographic hashes.

Receipt

A result/produce of a transaction that is kept in a Merkle tree but not stored in the state of a system. For example, Smart contracts logs in Ethereum are kept as receipts in Merkle Trees.

Collation

A shard specific block. Just imagine that the transactions are wrapped in a “collation”; similar to block.

Proposers

The nodes that accept on shard k, that could depend on protocol whether proposers choose which K or are randomly assigned some k.

Collation Header

A collation has a collation header, a short message of the form “This is a collation of blobs on shard k, the parent collation is 0x7f1e74, and the Merkle root of the blobs is 0x3f98ea.”

Prolators

The agents that could act as both a proposer and collator may be referred to as prolators.

Main Chain

The main chain exists with a role limited to storing collation headers for all shards.

For a complete list of terminology, please refer here.

Sharding Roadmap

Sharding would partition all network computational resources into shards, so that a node doesn’t have to process every transaction in the history of the blockchain, in order to make a new transaction or otherwise participate in securing and using Ethereum; instead a node can just participate in a single shard, or more if it so chooses.

Here are the different phases that would help Sharding implemented on Ethereum network. However, this is still under research and subject to change.

  1. Phase 1: Basic sharding without EVM[ Ethereum Virtual Machine] – A smart contract will exist on the main chain, called the Validator manager contract, which manages how data and transactions in shards are accepted as valid by the main chain, via notaries voting on the validity and data availability of collations (collections of data and transactions, analogous to blocks, but where they occur more frequently than blocks) in shards, and proposers proposing blobs (analogous to transactions but without execution in phase 1) which are collected into collations.
  2. Phase 2: EVM state transition function – This phase would have
    1. Full nodes only, e., fully download every collation of every shard, as well as the main chain, fully verifying everything.
    2. Asynchronous cross-contract calls only
    3. Account abstraction – In Ethereum there are two types of contracts – external accounts [that are controlled by private keys] and Contract account [ that are controlled by code deployed on the blockchain]. Account Abstraction would be a process to make the two account similar and also modify the logic controlling external accounts to make them more flexible. So with account abstraction, all accounts are contracts. Or forwarding contracts, where they receive an incoming message, they perform some action [ signature and nounce checks] and forward it to intended recipients with the specified data.
    4. Ethereum flavored WebAssembly (eWASM)- While a WebAssembly (or Wasm as a contraction) is a new, portable, size- and load-time-efficient format. WebAssembly aims to execute at native speed by taking advantage of common hardware capabilities available on a wide range of platforms. WebAssembly is currently being designed as an open standard by a W3C Community Group. Whereas eWASM is a restricted subset of WASM to be used for contracts in Ethereum. For more details about the project, please click here
    5. Archive accumulators – as quoted in ethresear – Ethereum currently uses an accumulator (the Patricia-Merkle trie) which is designed for the state. There’s an alternative accumulator design which is an excellent match with the stateless client model, but it works for history only. By separating history and state, and encouraging the use of history versus state, we can make the stateless client model more practical and scalable than initially thought.
    6. Storage rent – Adding a “rent fees” may help in moving out the data from blockchain that may help in load balancing. An idea tossed by Vitalik Buterin, whereby users would be asked to pay to use the network based on how long they’d like their data to remain accessible on the blockchain.
    7. Bandwidth fees – Within a blockchain network, the bandwidth fees aim to establish fair pricing for both providers and consumers of blockchain resources. In Ethereum transactions three base resources have been identified – computation, network, and storage. Amongst these, computation currently enjoys the most robust such mechanism, with a two-sided gas market between miners and clients and relatively trustless derivative instruments enabling more advanced forms of speculation and risk With a bandwidth fees idea, the community is seeking to incentivize the p2p network layer.
  3. Phase 3: Light client state protocol
  4. Phase 4: Cross-shard transactions:
  5. Phase 5: Tight coupling with the main chain security:
  6. Phase 6: Super-quadratic or exponential sharding

Also, note that this is just an explanation to Phase 1 of Quadratic Sharding, Phase 2, 3,4,5 and super quadratic sharding [Ethereum 3.0 ]are currently out of scope.

Quadratic Sharding Phase 1

On implementing Sharding onto an Ethereum network, it would divide/group the nodes into smaller subsets that would have an ability to process a particular set of transaction’s, and also updating the global state of the network.  Ethereum breaks down the network into specific shards. Each shard is assigned a specific group of transactions that are determined by grouping specific accounts (including smart contracts) into a shard. Each transaction group has a header and a body that consist of the following.

Sharding 1

Header The shard ID of the transaction group

 

State Root State of the Merkle root of the shard before and after transactions added
Body All of the transactions that belong to the transaction group that is part of the specific shard.
Transaction Group Root It is the Merkle root of all of the transaction groups from the specific shards for that block of transactions
Each Block on Ethereum contains both a state root and the transaction group root.

So how a Global state update happens with shards in place?

A transaction that occurs within a specific shard, between accounts native to that shard is verified and state of the network changes, updating the storage, account balances, etc. Now comes the task to verify whether the transaction group is valid or not. For this to happen, the pre-state root of the transaction group should match with the shard root in the global state. Once the match occurs, the transaction group is validated, and that updates the global state via a particular shard ID state root.

And where does VMC fit in?

In the Main Blockchain where we publish a contract called as Validator Manager Contract [VMC] with an internal PoS[Proof Of Stake] consensus. The VMC also keeps a record of the shards. During each cycle, the VMC picks a random validator that has the right to create the next block on each shard.

Each shard has a certain number of blocks and transactions, that would NOT BE replicated to the main chain but would be replicated one level down. At each shard level, we have nodes referred to as Collations or a group of transactions, that has a collation header that would be pushed into the VMC. But all the actual transactions happening in the shards, shard states, shard collations would go off-chain.

So the main chain would only have collation headers, and VMC who need to keep track of these PoS signed block header to track the state roots of each shard. Also, the other validators of the shard have to watch VMC all the time for getting latest status and then verify if the transactions are valid too.

In this whole process, VMC for each shard is acting as a light client.

Ethereum Sharding Implementation – Future, timelines

As mentioned by Justin Drake that Casper would be launched first, i.e., in 2019, and Sharding Phase one [Data] and Phase two[Layer] would come in 2020 and 2021 respectively.

However, another team behind Status, a mobile Dapp browser on the Ethereum network, the crew has been building its own sharding client, Nimbus, to address scalability concerns with the blockchain.

Also, another platform Zilliqa has also implemented Sharding by utilizing transaction and computational sharding.

References

Sharding FAQ, Medium@icebearhww, Sharding doc, Blockgeeks, Sharding Roadmap, infographic, prysmatic-labs, trustnodes, Hiswai.

ROI OF BLOCKCHAIN

ROI of Blockchain
ROI of Blockchain

Have you been part of the latest technological innovation? Known as blockchain technology, this distributed ledger advancement promises to create a leaner, more efficient and more profitable financial services world. Throughout the global stage, banks, investment networks, and even governments are pouring money into the curation and testing of blockchains. Blockchain that has the potential to be used as cryptocurrency is affecting all domains in the industry. But its implementation comes with the challenges like high start-up cost and unifying procedures and models. And when these challenges are overcome, we would see returns.

So in the struggle to adopt the latest technology? Have we evaluated the ROI of Blockchain implementation? Factors like computing power, consensus protocol may affect the ROI of blockchain projects? Have we thought about that? If not, let’s explore –

ROI of blockchain trials/implementations by Financial Institutions

The long-term prospect for banks is to repoint critical operational, risk and finance systems to blockchain-based, shared data platforms. Could blockchain implementation help banks and financial institutions in saving cost? Let’s look at some of the use cases in this field –

Reducing syndicated loans settlement time

The Leveraged Loan market faces critical settlement issues. If we see the number of days required to settle a High Yield Bond and Leveraged Loans –

High Yield Bond Settled in T+3 days
Leveraged Loans Settled in T+20 days[almost]

 

That could be a reason, which since 2008 the global Leveraged Loan market has shown negative growth. On the other hand, the High-Yield bond market is growing significantly by 11%. Involvement of smart contracts here could be beneficial as it would remove the clutter of documentation, acknowledgments delay, KYC, legal agreements, AML with the help of a permissioned ledger.

With smart contracts in place, the settlement cycle could be reduced to T+6 or T+10 making it attractive and transparent for investors. As per estimate with the reduction in the settlement period, there could be a growth of at least half that of the High-Yield Bond market growth, i.e., 5% – 6%. , thereby increasing the loan demand of an additional $149 billion.

The investment banks that charge 1-5% of arranger fees could benefit by translating into the additional income of $1.5 billion to $7.4 billion. Apart from this, regulatory capital requirements, operational costs, or costs related to delayed compensation could be reduced further with shortened settlement cycles.

Benefits to the mortgage industry

The Mortgage Loan system is a complex ecosystem with different layers and vendors involved, adding to costs and delays. Blockchain-based smart contracts could effectively reduce the time and cost, by automating processes and shared access to physical document across trusted parties. The solution could also have access to external information like sales deed or land records. As per the research report, automating banks back office system could help in saving 6% to 15% for mortgage lenders. Based on these numbers estimating other savings, the report states that taking the base of owning a house with a mortgage, a minimum savings of $1.5 billion could be achieved by loan providers through the automation of tasks. Involving other third parties like credit scoring firm, tax authorities on Blockchain network could additionally save $6 billion with faster processing and cost reduction.

That could also result in dropping of mortgage processing fees by 11% to 22 %, that in absolute terms amounts to savings of $480 to $960. Based on the US mortgage market case, smart contracts could potentially save between $3 billion and $11 billion in the new mortgage origination process across the US and EU.

Claims processing cost savings in the motor insurance industry

Another area that Blockchain has been helpful with multiple parties involved and non-existence of single platform leading to affect efficiencies and reducing claim processing cost and time. As per a report estimate, on adapting to a blockchain network $21 billion could have been saved for the UK motor insurance industry that processed 3.7 million claims and spent $13.3 billion in claim costs and expenses.

The lower cost could have been passed onto the customers in the form of lower premiums on auto insurance policies. As per the estimate, if the insurer adopts to a smart contract and agrees to pass on all the savings to the customer, a reduction of $90 on average on every premium payment could be seen. However if the insurer decides to pass on just 50 % of savings, $45 per premium could be observed.

Firms With Measurables Results on Blockchain

Accenture

While Accenture is actively involved in Blockchain practices since 2015, they have around 50+clients across Banking, Financial Services, Manufacturing, Government and Travel and Transportation. One of the key assets of Accenture Blockchain Solution is the patent for editable blockchain and use case evaluation framework.

In one the white paper they shook hands with a benchmarking firm McLagan to conduct an in-depth impact analysis and make fact-based estimates of the cost savings and other benefits that might be achieved by a blockchain based business application.

70% – POTENTIAL COST SAVINGS ON CENTRAL FINANCE REPORTING

50% – POTENTIAL COST SAVINGS ON CENTRALIZED OPERATIONS

50% – POTENTIAL COST SAVINGS ON BUSINESS OPERATIONS

30-50 % – POTENTIAL COST SAVINGS ON SAVINGS ON COMPLIANCE

The study highlights that concerning present cost structure, there could be a savings of $8 billion on a cost base of $30 billion. Accenture study also claims, that while running POC’s on early test environments, the trials had a potential to enhance the savings to be more than 70%.

However, the study also states that in the case of regulatory hurdles these savings may not be realized.

Cognizant

Another innovator in Blockchain space, active since 2014, the solution mainly focus on Insurance, Banking, Financial Services, Healthcare, and Lifesciences. The USP of their solutions is integration with significant platforms and multiple blockchain solution accelerators.

In an aim to enable financial Inclusion, Cognizant in their white paper estimates $380 billion revenue generated by banks by 2020 within emerging markets from the unbanked population. The report also cites as per Santander; blockchain could reduce banks’ infrastructure costs attributable to cross-border payments, securities trading and regulatory compliance by between $15-20 Bn per annum by 2022.

Others Factors Deciding the ROI of Blockchain

While the above use cases and firm have provided an insight on how Blockchain could yield to positive ROI, some of the other factors that are not yet considered are –

Power Rates

Miners are an integral part of any blockchain network. On the one hand, they provide validation to add a new block; they also have to pay the electricity bill used by their computers/laptops. To regulate the usage of electricity amongst miners community, quite recently New York Regulation approved of new power rates, that means miners would be charged higher than household customers.

Computing Power

Blockchain that is a distributed ledger storing data block by block needs enormous computing power. Blame it to the design, but each byte of data entered onto a blockchain network has to have a copy on each node till infinity. Recently Bitcoin’s Computing Power Growth outpaced the Bitcoin Price, in fact, the bitcoin hash rate, i.e., the amount of computing power used by bitcoin’s network of computers to create new coins have been soaring up; it seems it’s in a rush to catch up with the bitcoin market price.

Experts and researchers are trying to come up with a solution to find measures where blockchain compute power efficiently, but they are still in the early phase.

Storage

Thanks to technology that now storage capacity comes in all shapes and sizes at a reasonable price. Unlike olden days when Bill Gates, co-founder of Microsoft said – 128MB would be enough storage for each, now 4TB is considered an optimum storage capacity. So with an ever-increasing need of data storage, it does add up to the cost of each transaction made onto the blockchain network. One should also consider whether its on-premise or off-premise storage, as that would increase the expenses, thereby affecting the ROI.

Skills

Agree to the fact that blockchain technology is in a very nascent phase and to expect expertise level skills in this domain would be a challenge. The job market shows positive growth in the Blockchain domain with statistics from Indeed.com indicate that, since November 2015, the number of jobs within blockchain has risen 631%. However there is a significant gap in demand and supply, so either you would need to reskill your existing employees to deliver or get it from the market at a higher price. So that needs to be accounted while making ROI calculations.

With the numbers generated via trials, POCs Blockchain does seem to return a positive ROI. However, it is worth noting that many factors have not been taken into account. Blockchain technology with all its hype does carry the potential to disrupt all the sectors, but it would all depend on the ROI it shows over the next 12 to 18 months. Till then, do not sit back and relax, go on and explore the disruptive force – Blockchain.

 

References

BitcoinMagazine, Hfs, Deloitte, Accenture, Capegemini, Avasant, Cognizant

How Could Plasma Help Ethereum Scale Up?

PLASMA HELP ETHEREUM SCALE UP
PLASMA HELP ETHEREUM SCALE UP?

Let’s start with some good news about Ethereum

100,000. The number of refugees served by the World Food Programme’s Ethereum Experiment in Jordan.

16,678. The number of live Ethereum nodes.

1,000,000+. The number of downloaded MetaMask Ethereum browser extensions.

1,552 decentralized applications currently launched on Ethereum.

35,000,000+ unique addresses on the Ethereum blockchain.

30x more Ethereum developers than the next blockchain community.

And now some bad news –

May 20, 2018– Ethereum Network Congestion Doubles Gas Fees as Game dApps Capture $7.5M in 24 Hours

July 03, 2018 – Ethereum (ETH) Network Congested Again, As Market Prices Revive

While good news points to the fact that Ethereum is a treasured network, helping people and snowballing, the bad news highlights the fact that an increase in user base, leads to congestion resulting in price hikes. A quick glance, on major Ethereum congestion issues, in last six months we would find it was mostly because of the transaction of Ethereum based Dapps that affected the transaction throughput hence caused congestion. Bottomline – Ethereum is facing scalability issue.  Fortunately, the community is working hard to launch two new improvements Plasma and Sharding that could scale up Ethereum network to support tens of thousands of transactions per second. Let’s explore it in detail –

What is Ethereum Scalability Problem?

Every website/software or network intends to support as many users as it can, but unfortunately, the architecture does not support infinite users, Ethereum also faces the same issue. Due to a hard-coded limit on computation per block, the Ethereum blockchain network supports ~ 15 tps[transaction per second]. Now when a new release of Dapps is initiated, the network is flooded with transactions, but due to its architecture, it could only process handful, thereby causing delays and congestion on the network. The technical glitch has been under discussion by community and researchers.

Why is scaling so difficult?

Ethereum blockchain by design uses a combination of software tricks and incentives, which ensures to precisely record who owns what with a central authority. Ethereum is also dependent on a network of nodes, where each node stores the transaction history [entire], the current account balances, storage, and contracts. Overall it is a cumbersome task, leading to an increase in transactions and size with each new block.

Now, the concern is, to strike a balance in finding the key[to validate the transcation] and also grow the number of users [like to purchase stuff online or play games]

Rising the block size could be an option, but then it would throw individuals off the network as not many individuals could fund to facilitate large data nodes. However, the irony is that running a full is the best way to achieve benefits of security and privacy.  But full nodes would limit the number of people that could validate the transactions.

What is Plasma?

In our last post, we mentioned how Bitcoin Scalability Problem could be resolved by a concept called as Bitcoin Lightning Network, similar to the technique is Plasma where the transaction is carried off-chain, and root-chain is responsible for maintaining security and privacy. In the current state, Ethereum, chain of blocks performs computation, storing, transferring and even processing of data, channeling some of the tasks onto a different channel, i.e., off-chaining could help to reduce the load but assures the pros of a decentralized, immutable and distributed network.

Plasma blockchains are a chain within a blockchain. So there would be a root chain[e.g., Ethereum], linked to it would be a child-chain [off-chain, Plasma] that could again spawn its child-chain and this process could continue. So Plasma is many branching blockchains linked to one root blockchain. Plasma is also known as Layer 2 solutions because it is built “on top of” the Ethereum main-chain. It does not require changes to the base level protocol — instead, it exists merely as smart contracts on Ethereum that interact with off-chain software.

a Custom Plasma chain
Ref – https://plasma.io/plasma.pdf

The smart contracts are still handled by Ethereum network, the only change that would be seen is the broadcasting of the completed transactions to the public Ethereum chain. So, for example, there are two parties

A

B

Transferring 5$ to B

 

Transferring 10$ to A

Transferring 25$ to B

Broadcast Message

Transferred 20$ to A

 

One could think of a TREE structure that at a set frequency communicates/transfers information with its root-chain.

With off-loading the child-chain gets an added advantage to performing complex computation, helping developers to launch innovative dapps and get more users. One of the most significant advantages of the Plasma chain is that it could run a faster speed, lower cost and all of the data need not be replicated across the entire network.

How does Plasma work?

Let’s pick a conceptual example to know How Plasma works?

Suppose Mike and Alan are keen on playing chess, where the winner receives 5ETH. There could be two possible ways to implement it on a blockchain network –

Traditional Way

The plain and simple way of implementing this would be to create a smart contract on root chain[i.e., ethereum], feed the rules, logic, and a track of players moves. Every time Mike and Alan make a move, a transaction is sent out to the contract. And when one of them wins, the contract pays 5ETH to the winner.

By design and execution, this method would work but would be slow and inefficient. For each transaction made they need to pay the gas cost and wait before making the next move until the blocks are mined. Also, imagine if the number of players increases just recently when crypto kitties was launched, and it caused congestion to the network.

Going Plasma Way

On the root-chain, i.e., Ethereum main chain we create a set of smart contracts of our Plasma child-chain. The Plasma root contains the state transition rules [rules, logic, and track of players move, records hashes] and acts as a bridge, which allows players to move assets between the root-chain and the child chain.

Now, is the time to create child-chain. The child chain could have its consensus algorithm and depending upon the consensus it would have validators [i.e., one who validates blocks that the transaction is true or not]. Once the child-chain is active, the validators could schedule a periodic commitment to the root. That means I commit that the most recent block in the child-chain is X”. These commitments are recorded on-chain in the Plasma root as a proof of what has happened in the child-chain.

We have in place the Plasma root; the child chain,  now is the time to create the essential components of our game. Here is the twist – the basic components of the game could be built on the Ethereum main chain, and via the Plasma root could be moved onto the child chain, which means Plasma allows you to scale interactions with blockchain-based digital assets, but those assets should be created first on the Ethereum-main chain. Once that is done, you could deploy them onto the child chain that would have the components, logic, rules.

While players interact over a child chain, without even interacting with the main chain that leads to a much smaller node to process transactions, lowering fees and faster processing.

Has Plasma been Implemented?

Plasma is in a very nascent phase, while Vitalik research of Minimum viable product [MVP] has the details, the work is still in progress. One of firm OmiseGo in Jan 2018 did launch the information on how they are building Plasma. You can explore them here.

Plasma – The Questions Unanswered

  1. Could implementation of Plasma delay a vital transaction to be added to Ethereum main network
  2. The cost involved in running a sidechain? Could this have any effect of the gas price?
  3. The deployment and execution plan of Plasma onto Ethereum network?
  4. Would Dapps start with Plasma initiative or is it Ethereum?
  5. The role of miners in case of child chain floating around?

With some unanswered question, we do hope Plasma helps Ethereum in scaling up. However, only time will tell….

Our next article would talk about Sharding and the benefits it has for Ethereum. Stay tuned.

References

L4Media, plasma.io, dappsguru,

Ethereum Roadmap Explained

Ethereum Roadmap Metropolis
Ethereum Roadmap Metropolis

Ethereum with its exceptional features like programmability, flexibility, synergy, modularity, and philosophy of humility is aiming to rule the decentralized world. While the founder Vitalik Buterin has an ambitious roadmap to strengthen the community further, let’s take a closer look and explore what’s in store with Ethereum roadmap  –

Ethereum Roadmap

Vitalik Buterin, the Founder of Ethereum, stresses that to push Ethereum to the next level – four issues need to be resolved – consensus safety, smart contract safety, privacy and the most important of all – SCALABILITY.

Here are the different stages worked on to make Ethereum robust, secure and scalable.

ETHEREUM ROADMAP
ETHEREUM ROADMAP

Metropolis:

Metropolis claims to be a faster, lighter and more secure version of Ethereum. It would also provide enhanced flexibility to developers. The Metropolis phase is split into two releases- Byzantine and Constantinople

Byzantine – Executed in October 2017

Byzantine has a total of nine Ethereum Improvement Proposals [EIP] that once implemented results in enhanced security, scalability and privacy. It would also help in lowering fees for users and faster blocks. Some of the significant changes are –

Privacy

With Metropolis phase, the users would have the ability to perform anonymous transactions, with the new privacy tool – zk-SNARKs Or zero-knowledge succinct non-interactive arguments of knowledge. This zero-knowledge proof would help Ethereum to store some of the contact variables [that are private to users] with them instead of floating them onto blockchain network.

What is A Zero Knowledge Proof?

In laymen terms, a zero-knowledge proof is the ability to prove the truth of a statement, without passing on any other additional information beyond the statement under evaluation

Let’s take an example – If you have a bunch of keys and want to make a statement “it has a key to your house,” you can prove that by just unlocking the house with the designated key, with revealing which key the key that belongs to your house.

Ethereum, in addition to zk-SNARKS, would also get ring signatures, just to provide the best of both the world to its loyal community.

Account abstraction

As mentioned earlier, Metropolis would help in providing flexibility to smart contracts developers, to support that Ethereum would now support a concept called as Abstraction. The technique improves the programmers to provide only high-level concepts and to avoid overloading the user with details.

This would help the end users to have more control over their private keys, with an added ability for contracts to pay mining fees. Abstraction technique would also help in reducing the risk of getting hacked by quantum computing.

Mining difficulty

The phase would also target to initiate the movement of moving from a miner-based PoW to a validator-based PoS system, i.e., Ethereum to work on Proof of Stake rather than Proof of Work. This move would be challenging for miners and make it less profitable for them.

Constantinople – Not set date, but expected in 2018

The release Constantinople with no set timeline will be an introductory phase for upgrading Ethereum from Proof of Work [PoW] to Proof of Stake[PoS] to be called as Casper Protocol. During the upgrade process majority of the transaction would remain as PoW on Ethereum network, but every 100th transaction would be PoS with Constantinople release. Eventually, the entire Ethereum network would have a PoS protocol.

Casper protocol has two versions-

  1. Vlad Zamfir leads one
  2. FFG [ friendly finality gadget] that is being driven by Vitalik Buterin.

There would also be “STAKERS” – one who stake/stick their coins in special wallets and lock them. There is also a reward associated for stakers as an annual dividend of ether, so the more you stake, the larger the dividend.

Pow vs PoS
Proof Of Work vs Proof Of Stake Image Courtesy – Hackernoon

Why is Ethereum Upgrading to PoS?

Following problems that could be Solved with PoS, but not with PoW

  1. Bad Actors are Punished for supporting invalid blocks
  2. Individuals have more incentive to act honestly than they do in a PoW system.
  3. Difficult to conduct a 51% attack as with PoS an individual need to purchase Ethereum market cap[ that amount is tremendous, may not be possible for individuals]. Real life example when on the Bitcoin network in July 2014, a bitcoin mining pool named Ghash controlled 51% of the mining power for 12 hours.

Serenity

The last phase of the Ethereum Roadmap that will upgrade the entire network from PoW to PoS. At this phase, Ethereum with a built-in Turing-complete programming language can be used by other companies, developers,  and entities to create applications, contracts,  and systems.

Ethereum is still a nascent technology, but many promising scaling features will allow reaching the mainstream. If Ethereum can achieve its ambitious multi-year vision, then it will lay down the foundation and backbone of the blockchain ecosystem!

Our next post would talk about How Plasma and Sharding would help in Ethereum Scalability Problem. Stay tuned.

Hackernoon, Coindesk, Cryptograph

Up ↑