Fraxtal Merkle 证明预言机
概览
/// @dev Adheres to chainlink's AggregatorV3Interface `latestRoundData()`
/// @return _roundId The l1Block corresponding to the last time the oracle was proofed
/// @return _answer The price of Sfrax in frax
/// @return _startedAt The L1 timestamp corresponding to most recent proof
/// @return _updatedAt Equivalent to `_startedAt`
/// @return _answeredInRound Equivalent to `_roundId`
function latestRoundData()
external
view
returns (
uint80 _roundId,
int256 _answer,
uint256 _startedAt,
uint256 _updatedAt,
uint80 _answeredInRound
)
架构


演示客户端
生成 L1 区块头的代码
生成存储证明的代码
已部署的合约
Description
Oracle
MerkleProofPriceSource
Last updated
Was this helpful?