ETH Price: $3,669.06 (+0.58%)

Transaction Decoder

Block:
22624373 at Jun-03-2025 01:17:35 PM +UTC
Transaction Fee:
0.000402412035869784 ETH $1.48
Gas Used:
57,121 Gas / 7.044905304 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
10.825208583428174311 Eth10.825322825428174311 Eth0.000114242
0xC1836021...2Ce7F9D72
0xDFd5293D...a1343963d
(Binance 16)
26,689.964508265775266095 Eth
Nonce: 11586726
26,689.964105853739396311 Eth
Nonce: 11586727
0.000402412035869784

Execution Trace

ENSToken.transfer( recipient=0xbF123A673c8cFee6A31f3A7Ad24259489c4261F0, amount=282368925390000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX