ChainLink-A Decentralized Blockchain Oracle network-Part 2

Ruma Das
Coinmonks
Published in
6 min readJul 22, 2020

--

Chainlink is currently one of the most famous blockchain oracle projects which aims to support blockchain networks i.e smart contracts to accept/transmit external data through the use of APIs. It operates as a fully decentralized network.

The framework connects smart contracts to off-chain inputs which then feeds and triggers the smart contract and will produce off-chain outputs like payments, transfer of data, etc.

Chainlink can be used to connect to data providers, web APIs, enterprise systems, cloud service providers, IoT devices, payment systems, other blockchains, and much more.

In this article, we will discuss the underlying architecture of Chainlink and its various components supporting it to achieve decentralization.

Architectural Overview

The Chainlink project is built on the Ethereum platform. The main objective of the project is to act as a bridge between the on-chain and off-chain data systems. Apart from supporting decentralization the project also supports modularity i.e different system components can be separated and recombined to embed any latest techniques.

A Chainlink network is made up of a collection of Chainlink nodes that handle jobs, tasks, scheduling, and consists of several core adapters that supports data flow from an external system to the blockchain. Chainlink nodes who carry out job execution coordinated by the on-chain Oracle contracts use LINK tokens as an incentive for the Chainlink node operators.

Source- Google cloud

On-Chain Architecture

In an oracle service, A User contract is referred to as requesting contracts (denoted by USER-SC) and Chainlink on-chain interface to requesting contract is termed as CHAINLINK-SC.

ChainLink on-chain component consists of three main contracts:

1) Reputation contract-Keeps track of oracle-service-provider performance metrics.

a. An oracle services purchaser specifies requirements like query parameters, the number of oracles needed, the reputation, and aggregating contracts to make up a service level agreement (SLA) proposal.

b. The on-chain reputation along with logs of past contracts helps the purchasers to manually sort, filter, and select oracles.

c. Rather than contacting the oracles directly, the SLA is submitted to an order-matching contract when the purchaser is done with their SLA proposal.

2) Order-matching contract- This contract takes a proposed SLA, logs the SLA parameters, and collects bids from oracle providers. The reputation contract helps in finalizing the oracle out of the bid pool.

a. A log gets triggered when a proposal is submitted to the order-matching contract. The proposal can be monitored and filtered by oracle providers depending upon their capabilities and service offerings.

b. The contract accepts bids from nodes that satisfy the SLA’s requirements. To bid on a contract, the oracle service provider attach the penalty amount and then commits it.

c. Requested number of oracles is selected from the qualified bids pool. Penalty payments that were received during the bidding process are returned to oracles who were not selected.

d. The final SLA record is created by triggering a log notifying the selected oracles. The oracles then perform the assignment mentioned in the SLA.

e. Once the new oracle record has been created, the off-chain oracles execute the agreement and report back on-chain.

3) Aggregating contract- This contract collects responses from the oracle providers and calculates the final unified result of the ChainLink query. The response validity of each oracle is reported and maintained in the reputation contract. It also feeds oracle provider metrics back into the specified contract function in USER-SC.

ChainLink workflow:

1) USER-SC makes an on-chain request

2) CHAINLINK-SC logs an event for the oracles

3) ChainLink core picks up the event and routes the assignment to an adapter

4) ChainLink adapter performs a request to an external API

5) ChainLink adapter processes the response and passes it back to the core

6) ChainLink core reports the data to CHAINLINK-SC

7) CHAINLINK-SC aggregates responses and passes them back as a single response to USER-SC.

Off-Chain Architecture

In off-chain architecture, different oracle nodes are connected to the Ethereum network. Individual responses are aggregated by following one of the existing consensus mechanisms into a global response that is returned to a requesting contract USER-SC

The ChainLink nodes are powered by the standard open-source core implementation which handles standard blockchain interactions, scheduling, and connecting with common external resources. External adapters can be used to provide additional specialized off-chain services.

ChainLink Decentralization Approach

To idealize the concept of decentralization three approaches will be used.

1. Distribution of data sources

To overcome the dependency into a single source, the system is designed to obtain data from multiple sources. The responses from the different systems are aggregate to find the outcome.

2. Distribution of oracles

The system supports different oracle nodes with each oracle contacts has its own distinct set of data sources which may or may not overlap with other oracles.

3. Use of trusted hardware.

ChainLink Security Services

Chainlink consists of four key security services. These services might be run by one company or a group launching the ChainLink network, but are strictly operate according to ChainLink’s decentralized design.

· Validation System- This system provides users a performance metric to select oracles. It checks for the following two things while selection:

o Availability: Response failure to time-bound queries should be captured by the system.

o Correctness: Incorrect responses or deviations from responses provided by peers should be captured by the system.

· Reputation System Following are the different metrics that determine oracle performance which chainlink records and publish as user ratings.

o Total number of assigned requests

o Total number of completed requests

o Total number of accepted requests

o Average time to respond

o Amount of penalty payments

Incentives are given to high-reputation services whereas any erroneous activity leads to penalty along with demeaned brand reputation.

· Certification Service- The goal of the Certification Service is to prevent and/or remediate rare but catastrophic events, specifically en bloc cheating in the form of Sybil and mirroring attacks.

· Contract-Upgrade Service- The Contract-Upgrade Service enables the Chainlink network to support a new set of oracle contracts. This service is optional and is in user control.

· LINK token usage- The ChainLink network utilizes the LINK token to pay ChainLink Node operators. The LINK token is an ERC20 token, with the additional ERC223 “transfer and call” functionality of transfer (address, uint256, bytes), allowing tokens to be received and processed by contracts within a single transaction.

References: Chainlink Whitepaper

Read More: Understanding Blockchain Oracle- Part I

Get Best Software Deals Directly In Your Inbox

--

--