Search
When you use data feeds, retrieve the feeds through the AggregatorV3Interface
and the proxy address. Optionally, you can call variables and functions in the AccessControlledOffchainAggregator
contract to get information about the aggregator behind the proxy.
Topics
Import this interface to your contract and use it to run functions in the proxy contract. Create the interface object by pointing to the proxy address. For example, on Goerli you could create the interface object in the constructor of your contract using the following example:
/**
* Network: Goerli
* Data Feed: BTC/USD
* Address: 0xA39434A63A52E749F02807ae27335515BA4b07F7
*/
constructor() {
priceFeed = AggregatorV3Interface(0xA39434A63A52E749F02807ae27335515BA4b07F7);
}
To see examples for how to use this interface, read the Using Data Feeds guide.
You can see the code for the AggregatorV3Interface
contract on GitHub.
Name | Description |
---|---|
decimals | The number of decimals in the response. |
description | The description of the aggregator that the proxy points to. |
getRoundData | Get data from a specific round. |
latestRoundData | Get data from the latest round. |
version | The version representing the type of aggregator the proxy points to. |
Get the number of decimals present in the response value.
function decimals() external view returns (uint8);
RETURN
: The number of decimals.Get the description of the underlying aggregator that the proxy points to.
function description() external view returns (string memory);
RETURN
: The description of the underlying aggregator.Get data about a specific round, using the roundId
.
function getRoundData(uint80 _roundId)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
Parameters:
_roundId
: The round IDReturn values:
roundId
: The round IDanswer
: The answer for this roundstartedAt
: Timestamp of when the round startedupdatedAt
: Timestamp of when the round was updatedansweredInRound
: The round ID in which the answer was computedGet the price from the latest round.
function latestRoundData() external view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
Return values:
roundId
: The round ID.answer
: The price.startedAt
: Timestamp of when the round started.updatedAt
: Timestamp of when the round was updated.answeredInRound
: The round ID of the round in which the answer was computed.The version representing the type of aggregator the proxy points to.
function version() external view returns (uint256)
RETURN
: The version number.This is the contract for the aggregator. You can call functions on the aggregator directly, but it is a best practice to use the AggregatorV3Interface to run functions on the proxy instead so that changes to the aggregator do not affect your application. Read the aggregator contract only if you need functions that are not available in the proxy.
The aggregator contract has several variables and functions that might be useful for your application. Although aggregator contracts are similar for each data feed, some aggregators have different variables. Use the typeAndVersion()
function on the aggregator to identify what type of aggregator it is and what version it is running.
Always check the contract source code and configuration to understand how specific data feeds operate. For example, the aggregator contract for BTC/USD on Arbitrum is different from the aggregators on other networks.
For examples of the contracts that are typically used in aggregator deployments, see the libocr repository on GitHub.
This contract imports OffchainAggregator
and SimpleReadAccessController
, which also include their own imports. The variables and functions lists include the publicly accessible items from these imported contracts.
A simple way to read the variables or functions is to get the ABI from a blockchain explorer and point the ABI to the aggregator address. To do this in Remix, follow the Using the ABI with AtAddress guide in the Remix documentation. As an example, you can find the ABI for the BTC/USD aggregator by viewing the contract code in Etherscan.
Variables:
Name | Description |
---|---|
LINK | The address for the LINK token contract on a specific network. |
billingAccessController | The address for the billingAccessController, which limits access to the billing configuration for the aggregator. |
checkEnabled | A boolean that indicates if access is limited to addresses on the internal access list. |
maxAnswer | The highest median answer that the aggregator will accept. This prevents the aggregator from accepting extreme erroneous values. |
minAnswer | The lowest median answer that the aggregator will accept. This prevents the aggregator from accepting extreme erroneous values. |
owner | The address that owns this aggregator contract. This controls which address can execute specific functions. |
Functions:
Name | Description |
---|---|
decimals | Return the number of digits of precision for the stored answer. Answers are stored in fixed-point format. |
description | Return a description for this data feed. Usually this is an asset pair for a price feed. |
getAnswer | (Deprecated) |
getBilling | Retrieve the current billing configuration. |
getRoundData | Get the full information for a specific aggregator round including the answer and update timestamps. Use this to get the full historical data for a round. |
getTimestamp | (Deprecated) |
hasAccess | Check if an address has internal access. |
latestAnswer | (Deprecated) |
latestConfigDetails | Return information about the current off-chain reporting protocol configuration. |
latestRound | (Deprecated) |
latestRoundData | Get the full information for the most recent round including the answer and update timestamps. |
latestTimestamp | (Deprecated) |
latestTransmissionDetails | Get information about the most recent answer. |
linkAvailableForPayment | Get the amount of LINK on this contract that is available to make payments to oracles. This value can be negative if there are outstanding payment obligations. |
oracleObservationCount | Returns the number of observations that oracle is due to be reimbursed for. |
owedPayment | Returns how much LINK an oracle is owed for its observations. |
requesterAccessController | Returns the address for the access controller contract. |
transmitters | The oracle addresses that can report answers to this aggregator. |
typeAndVersion | Returns the aggregator type and version. Many aggregators are AccessControlledOffchainAggregator 3.0.0 , but there are other variants in production. The version is for the type of aggregator, and different from the contract version . |
validatorConfig | Returns the address and the gas limit for the validator contract. |
version | Returns the contract version. This is different from the typeAndVersion for the aggregator. |
Return the number of digits of precision for the stored answer. Answers are stored in fixed-point format.
function decimals() external view returns (uint8 decimalPlaces);
Return a description for this data feed. Usually this is an asset pair for a price feed.
function description()
public
override
view
checkAccess()
returns (string memory)
{
return super.description();
}
This function is deprecated.
Retrieve the current billing configuration.
function getBilling()
external
view
returns (
uint32 maximumGasPrice,
uint32 reasonableGasPrice,
uint32 microLinkPerEth,
uint32 linkGweiPerObservation,
uint32 linkGweiPerTransmission
)
{
Billing memory billing = s_billing;
return (
billing.maximumGasPrice,
billing.reasonableGasPrice,
billing.microLinkPerEth,
billing.linkGweiPerObservation,
billing.linkGweiPerTransmission
);
}
Get the full information for a specific aggregator round including the answer and update timestamps. Use this to get the full historical data for a round.
function getRoundData(uint80 _roundId)
public
override
view
checkAccess()
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
{
return super.getRoundData(_roundId);
}
This function is deprecated.
Check if an address has internal access.
function hasAccess(
address _user,
bytes memory _calldata
)
public
view
virtual
override
returns (bool)
{
return super.hasAccess(_user, _calldata) || _user == tx.origin;
}
This function is deprecated.
Return information about the current off-chain reporting protocol configuration.
function latestConfigDetails()
external
view
returns (
uint32 configCount,
uint32 blockNumber,
bytes16 configDigest
)
{
return (s_configCount, s_latestConfigBlockNumber, s_hotVars.latestConfigDigest);
}
This function is deprecated.
Get the full information for the most recent round including the answer and update timestamps.
function latestRoundData()
public
override
view
checkAccess()
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
{
return super.latestRoundData();
}
This function is deprecated.
Get information about the most recent answer.
function latestTransmissionDetails()
external
view
returns (
bytes16 configDigest,
uint32 epoch,
uint8 round,
int192 latestAnswer,
uint64 latestTimestamp
)
{
require(msg.sender == tx.origin, "Only callable by EOA");
return (
s_hotVars.latestConfigDigest,
uint32(s_hotVars.latestEpochAndRound >> 8),
uint8(s_hotVars.latestEpochAndRound),
s_transmissions[s_hotVars.latestAggregatorRoundId].answer,
s_transmissions[s_hotVars.latestAggregatorRoundId].timestamp
);
}
Get the amount of LINK on this contract that is available to make payments to oracles. This value can be negative if there are outstanding payment obligations.
function linkAvailableForPayment()
external
view
returns (int256 availableBalance)
{
// there are at most one billion LINK, so this cast is safe
int256 balance = int256(LINK.balanceOf(address(this)));
// according to the argument in the definition of totalLINKDue,
// totalLINKDue is never greater than 2**172, so this cast is safe
int256 due = int256(totalLINKDue());
// safe from overflow according to above sizes
return int256(balance) - int256(due);
}
Returns the number of observations that oracle is due to be reimbursed for.
function oracleObservationCount(address _signerOrTransmitter)
external
view
returns (uint16)
{
Oracle memory oracle = s_oracles[_signerOrTransmitter];
if (oracle.role == Role.Unset) { return 0; }
return s_oracleObservationsCounts[oracle.index] - 1;
}
Returns how much LINK an oracle is owed for its observations.
function owedPayment(address _transmitter)
public
view
returns (uint256)
{
Oracle memory oracle = s_oracles[_transmitter];
if (oracle.role == Role.Unset) { return 0; }
Billing memory billing = s_billing;
uint256 linkWeiAmount =
uint256(s_oracleObservationsCounts[oracle.index] - 1) *
uint256(billing.linkGweiPerObservation) *
(1 gwei);
linkWeiAmount += s_gasReimbursementsLinkWei[oracle.index] - 1;
return linkWeiAmount;
}
Returns the address for the access controller contract.
function requesterAccessController()
external
view
returns (AccessControllerInterface)
{
return s_requesterAccessController;
}
The oracle addresses that can report answers to this aggregator.
function transmitters()
external
view
returns(address[] memory)
{
return s_transmitters;
}
Returns the aggregator type and version. Many aggregators are AccessControlledOffchainAggregator 2.0.0
, but there are other variants in production. The version is for the type of aggregator, and different from the contract version
.
function typeAndVersion()
external
override
pure
virtual
returns (string memory)
{
return "AccessControlledOffchainAggregator 2.0.0";
}
Returns the address and the gas limit for the validator contract.
function validatorConfig()
external
view
returns (AggregatorValidatorInterface validator, uint32 gasLimit)
{
ValidatorConfig memory vc = s_validatorConfig;
return (vc.validator, vc.gasLimit);
}
Returns the contract version. This is different from the typeAndVersion
for the aggregator.
function version() external view returns (uint256);