π·Chainlink Feeds
import { Chainlink } from 'dev3-sdk';
// connect to Chainlink on Avalanche
const feed = Chainlink.instance(
"https://1rpc.io/avax/c", // AVAX network rpc url
Chainlink.PriceFeeds.AVAX // AVAX network selectore
);
// fetch price of Apple stock
const appleStockPrice = await feed.getFromOracle(feed.feeds.AAPL_USD);Last updated