Create an oracle on a new chain

Viewed 15
1 Answers

What you deployed is a Chainlink Aggregator contract, you do not need to deploy Aggregator contract to get the token price data.

If you want to get some token price data in your contract, you should use AggregatorInterface in your contract and then fetch price data from the Aggregator contract deployed by Chainlink team. Instructions can be found here.

Related