ETH Price: $3,696.27 (-1.12%)

Transaction Decoder

Block:
22603509 at May-31-2025 03:09:59 PM +UTC
Transaction Fee:
0.000066613070743997 ETH $0.25
Gas Used:
35,221 Gas / 1.891288457 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(quasarbuilder)
6.98336531620956728 Eth6.983365675207534505 Eth0.000000358997967225
0xA9481Fcc...0069B6434
0.000122933749705 Eth
Nonce: 0
0.000056320678961003 Eth
Nonce: 1
0.000066613070743997
0xC1836021...2Ce7F9D72

Execution Trace

ENSToken.transfer( recipient=0x190DA0Bd82FC9b3B68F1ec97bC31fc7573F98Ec9, amount=37567465200000000000 ) => ( 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