การดึงข้อมูลนอกเครือข่าย
สร้างสัญญาอัจฉริยะที่ร้องขอและรับข้อมูลจากออราเคิล Chainlink เช่น ฟีดราคา หรือการเรียก API ภายนอก
การดึงข้อมูลนอกเครือข่าย เป็นบทเรียน Web3 & DApp Development Fundamentals ฟรีบน CoddyKit นี่คือบทเรียนที่ 3 จากทั้งหมด 3 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Web3 & DApp Development Fundamentals และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 3 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Data Beyond the Blockchain
Smart contracts are powerful, but they operate in isolation on the blockchain. They can't directly access information from the 'real world' like current stock prices, weather data, or external API responses.
This limitation is known as the oracle problem. To overcome it, we use oracles.
Chainlink's Data Solution
Chainlink is a decentralized oracle network designed to securely connect smart contracts with off-chain data and services.
- It acts as a bridge between the blockchain and external systems.
- Chainlink nodes collect data from various sources.
- They then deliver this data to smart contracts in a reliable and verifiable way.
Real-Time Price Feeds
One of the most common and critical uses of Chainlink is providing price feeds. These feeds deliver up-to-date market prices for cryptocurrencies, commodities, and other assets directly to your smart contracts.
This is crucial for DeFi applications, lending protocols, and derivatives.
Interacting with Price Feeds
To get data from a Chainlink price feed, your smart contract interacts with a specific data feed contract deployed on the blockchain.
These data feed contracts all implement a standard interface called AggregatorV3Interface. This makes it easy for your contract to read the data.
How to Get Price Data
The primary function we use to fetch the latest price from an AggregatorV3Interface is latestRoundData().
It returns several pieces of information, including the actual price, when it was updated, and the round ID.
Build a Price Reader
Let's write a simple Solidity contract that reads the latest ETH/USD price from a Chainlink price feed. You can try running this in Remix, using the Sepolia testnet.
The address 0x694AA1769357215Ee4f0fFf93d2d05d454e5f5c4 is for the ETH/USD price feed on Sepolia.
pragma solidity ^0.8.0;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract PriceReader {
AggregatorV3Interface internal priceFeed;
constructor() {
// ETH/USD price feed address on Sepolia testnet
priceFeed = AggregatorV3Interface(0x694AA1769357215Ee4f0fFf93d2d05d454e5f5c4);
}
function getLatestPrice() public view returns (
uint80 roundId,
int answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
) {
// Get the latest price data from the feed
(roundId, answer, startedAt, updatedAt, answeredInRound) = priceFeed.latestRoundData();
}
function getDecimals() public view returns (uint8) {
// Get the number of decimals used by the price feed
return priceFeed.decimals();
}
}Decoding Price Data
The answer returned by latestRoundData() is the actual price, but it's an int and scaled by a certain number of decimals.
You must call getDecimals() to know how many decimal places to account for. For example, if answer is 180000000000 and decimals is 8, the price is 1800.00000000.
Beyond Prices: Custom Data
While price feeds are common, Chainlink can also fetch almost any other type of off-chain data, or even generate verifiable randomness.
This requires a more generalized approach where your contract makes a request to a Chainlink node for specific data, and the node responds by calling back your contract.
The Request & Fulfill Pattern
For custom data, Chainlink uses a two-step process:
- Request: Your smart contract sends a request to a Chainlink oracle contract, specifying the data source (e.g., an API endpoint) and the job ID.
- Fulfill: A Chainlink node processes the request, fetches the off-chain data, and then sends a transaction back to your smart contract, calling a designated 'fulfill' function with the requested data.
This ensures data is delivered securely on-chain.
Oracle Integration Check
Consider a smart contract that needs to get the current weather conditions for a specific city. Which of the following best describes how a Chainlink oracle would typically facilitate this?
Lesson Summary
We've explored how smart contracts fetch off-chain data using Chainlink. You learned about:
- The oracle problem and Chainlink's solution.
- Interacting with Chainlink Price Feeds using
AggregatorV3Interface. - The
latestRoundData()function and interpreting its output. - The general 'request and fulfill' pattern for custom data requests.
Fetching external data securely is vital for building robust DApps!
เรียนรู้ Web3 & DApp Development Fundamentals ด้วย AI tutor — ฟรี
เขียนและเรียกใช้โค้ดจริงในเบราว์เซอร์ของคุณ รับความช่วยเหลือทันทีจาก AI tutor 24/7 และเรียนรู้ต่อจากที่คุณหยุดบนเว็บหรือในแอป
- คอร์ส
- 29
- บทเรียน
- 105
คำถามที่พบบ่อย
บทเรียน “การดึงข้อมูลนอกเครือข่าย” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การดึงข้อมูลนอกเครือข่าย” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Web3 & DApp Development Fundamentals ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 3 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การดึงข้อมูลนอกเครือข่าย”
สร้างสัญญาอัจฉริยะที่ร้องขอและรับข้อมูลจากออราเคิล Chainlink เช่น ฟีดราคา หรือการเรียก API ภายนอก คุณปฏิบัติ Web3 & DApp Development Fundamentals ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Web3 & DApp Development Fundamentals หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Web3 & DApp Development Fundamentals บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 3 จากทั้งหมด 3 บทเรียน
บทเรียน “การดึงข้อมูลนอกเครือข่าย” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Web3 & DApp Development Fundamentals นี้ได้ไหม
ได้ บทเรียน Web3 & DApp Development Fundamentals ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- ปัญหาออราเคิล
- พื้นฐาน Chainlink
- การดึงข้อมูลนอกเครือข่าย