Transaction Hash:
Block:
20264382 at Jul-08-2024 09:11:59 PM +UTC
Transaction Fee:
0.00031038359280754 ETH
$0.58
Gas Used:
98,602 Gas / 3.14784277 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x638b0B3d...7A712d040 |
0.091090106995591585 Eth
Nonce: 39
|
0.000779723402784045 Eth
Nonce: 40
| 0.09031038359280754 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.279058653714254996 Eth | 9.279058752316254996 Eth | 0.000000098602 | |
0x99fe33C0...66174d635 | |||||
0xcCdac213...3B1e2bd8a | 67.528558348422352403 Eth | 67.618558348422352403 Eth | 0.09 |
Execution Trace
ETH 0.09
PresaleETH.CALL( )
- ETH 0.09
0xccdac213e5737e916b17347d94f0d043b1e2bd8a.CALL( )
EACAggregatorProxy.STATICCALL( )
-
AccessControlledOffchainAggregator.STATICCALL( )
-
EACAggregatorProxy.STATICCALL( )
-
AccessControlledOffchainAggregator.STATICCALL( )
-
File 1 of 3: PresaleETH
File 2 of 3: EACAggregatorProxy
File 3 of 3: AccessControlledOffchainAggregator
12345678910111213141516//SPDX-License-Identifier: MIT Licensedpragma solidity ^0.8.18;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}contract Ownable is Context {address private _owner;
File 2 of 3: EACAggregatorProxy
12345678910111213141516pragma solidity 0.6.6;/*** @title The Owned contract* @notice A contract with helpers for basic contract ownership.*/contract Owned {address payable public owner;address private pendingOwner;event OwnershipTransferRequested(address indexed from,address indexed to);
File 3 of 3: AccessControlledOffchainAggregator
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.7.6;import "./OffchainAggregator.sol";import "./SimpleReadAccessController.sol";/*** @notice Wrapper of OffchainAggregator which checks read access on Aggregator-interface methods*/contract AccessControlledOffchainAggregator is OffchainAggregator, SimpleReadAccessController {constructor(uint32 _maximumGasPrice,uint32 _reasonableGasPrice,uint32 _microLinkPerEth,uint32 _linkGweiPerObservation,uint32 _linkGweiPerTransmission,LinkTokenInterface _link,int192 _minAnswer,