Transaction Hash:
Block:
22298207 at Apr-18-2025 08:15:23 PM +UTC
Transaction Fee:
0.00000796011407425 ETH
$0.02
Gas Used:
21,775 Gas / 0.36556207 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x30424d50...3bA3475c2 |
0.007794722675734229 Eth
Nonce: 216
|
0.007786762561659979 Eth
Nonce: 217
| 0.00000796011407425 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.537648791315647198 Eth | 6.537648793493147198 Eth | 0.0000000021775 |
Execution Trace
AnchoredViewRelay.a9059cbb( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.9;import "../IOracleRelay.sol";/// @title implementation of compounds' AnchoredView/// @notice using a main relay and an anchor relay, the AnchoredView/// ensures that the main relay's price is within some amount of the anchor relay price/// if not, the call reverts, effectively disabling the oracle & any actions which require itcontract AnchoredViewRelay is IOracleRelay {address public _anchorAddress;IOracleRelay public _anchorRelay;address public _mainAddress;IOracleRelay public _mainRelay;uint256 public _widthNumerator;uint256 public _widthDenominator;/// @notice all values set at construction time/// @param anchor_address address of OracleRelay to use as anchor/// @param main_address address of OracleRelay to use as main/// @param widthNumerator numerator of the allowable deviation width/// @param widthDenominator denominator of the allowable deviation widthconstructor(address anchor_address,address main_address,uint256 widthNumerator,uint256 widthDenominator) {_anchorAddress = anchor_address;