forked from smartcontractkit/solana-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
read-data.ts
31 lines (25 loc) · 1.03 KB
/
read-data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import * as anchor from "@project-serum/anchor";
import { OCR2Feed } from "@chainlink/solana-sdk";
async function main() {
const provider = anchor.AnchorProvider.env();
anchor.setProvider(provider);
const CHAINLINK_FEED_ADDRESS="669U43LNHx7LsVj95uYksnhXUfWKDsdzVqev3V4Jpw3P"
const CHAINLINK_PROGRAM_ID = new anchor.web3.PublicKey("cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ");
const feedAddress = new anchor.web3.PublicKey(CHAINLINK_FEED_ADDRESS); //ETH-USD Devnet
//load the data feed account
let dataFeed = await OCR2Feed.load(CHAINLINK_PROGRAM_ID, provider);
let listener = null;
//listen for events agains the price feed, and grab the latest rounds price data
listener = dataFeed.onRound(feedAddress, (event) => {
console.log(event.answer.toNumber())
});
//block execution and keep waiting for events to be emitted with price data
await new Promise(function () {});
}
main().then(
() => process.exit(),
err => {
console.error(err);
process.exit(-1);
},
);