GaiaEx AcademyGaiaEx Academy
What is Chainlink (LINK)? Oracles Explained
BeginnerBlockchain7 min read

What is Chainlink (LINK)? Oracles Explained

Connecting smart contracts to real-world data through decentralized oracles

Share Posts

Smart Contracts Are Blind Without Feeds

On-chain programs only see what you put on-chain. Spot prices for ETH, weather for crop insurance, sports scores for prediction markets—all live off-chain first. Bridge that data wrong and you liquidate the wrong loan. The bottleneck is not SQL; it is trust.

A single Bloomberg terminal wired into a contract recentralizes the app. Chainlink's pitch is redundancy: many nodes, many sources, aggregation on-chain.

Data: Off-Chain Sources → Nodes → Aggregator

Chainlink's price feeds (the piece most DeFi users touch) pull from premium APIs and exchanges off-chain, push observations through independent node operators, then compress them into one on-chain value—often a median with outlier rejection. If you want the gory details, read the contract addresses per network; they differ.

Founding traces to 2017; Sergey Nazarov and Steve Ellis are the names on the earliest filings. LINK is an ERC-20 on Ethereum with bridges elsewhere—token mechanics are not the same as node economics on every chain.

Chainlink price feed: multi-hop oracle flow Off-chain exchanges · APIs ETH/USD refs Chainlink nodes (independent) N1 N2 Nk each node pulls multiple sources On-chain aggregator median / trim consumer contract reads Aave · Compound · perps — any contract that calls latestRoundData()
Many nodes fetch many sources; aggregation yields one tamper-resistant on-chain price.

Deviation Thresholds and Heartbeats

Feeds do not update every block—gas would choke. They refresh when price moves beyond a configured deviation (think single-digit basis points to tens, depending on pair) or when a heartbeat timer fires so stale data cannot linger silently. Parameters are visible in aggregator contracts; traders should read them before sizing leverage.

Node reputation and staking v2 economics moved the game from pure brand trust toward slashing risk—exact numbers evolve with releases.

When the feed updates (two triggers) t0 price jump > dev threshold heartbeat max Deviation path: big moves force fresh rounds e.g. 0.5% move on ETH/USD (pair-dependent) Heartbeat path: time cap even if calm e.g. hourly ceiling (varies)
Feeds balance freshness against gas: spike updates on moves, force refresh on timers.