ETH Price: $3,637.08 (-2.62%)

Transaction Decoder

Block:
22652678 at Jun-07-2025 12:21:59 PM +UTC
Transaction Fee:
0.000078343481529911 ETH $0.28
Gas Used:
46,973 Gas / 1.667840707 Gwei

Emitted Events:

126 ENSToken.Approval( owner=[Sender] 0x439dc3802bc5786af4e19a51da3d163a9bfb68fb, spender=0xaaaaaaae...d26D23D4d, value=597660923697567699 )

Account State Difference:

  Address   Before After State Difference Code
0x439dC380...a9bfb68fB
0.002272794987454921 Eth
Nonce: 3
0.00219445150592501 Eth
Nonce: 4
0.000078343481529911
0xC1836021...2Ce7F9D72
(BuilderNet)
97.037505846635400924 Eth97.037529333135400924 Eth0.0000234865

Execution Trace

ENSToken.approve( spender=0xaaaaaaae92Cc1cEeF79a038017889fDd26D23D4d, amount=597660923697567699 ) => ( 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