ETH Price: $3,789.66 (-1.30%)

Transaction Decoder

Block:
22623174 at Jun-03-2025 09:16:11 AM +UTC
Transaction Fee:
0.000065112916557808 ETH $0.25
Gas Used:
39,508 Gas / 1.648094476 Gwei

Emitted Events:

207 InitializableAdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, 0x00000000000000000000000025f823cc7226ca3a2d88b81426443133acfd2b35, 0000000000000000000000000000000000000000000000121eec02f8cb556c00 )

Account State Difference:

  Address   Before After State Difference Code
0x548f27e2...E60038f02
(Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02)
14.131228989028481521 Eth
Nonce: 24154
14.131163876111923713 Eth
Nonce: 24155
0.000065112916557808
0x7Fc66500...33E2DDaE9
(BuilderNet)
67.178249959645721626 Eth67.178251047137675062 Eth0.000001087491953436

Execution Trace

InitializableAdminUpgradeabilityProxy.a9059cbb( )
  • AaveTokenV3.transfer( to=0x25f823cc7226Ca3a2d88b81426443133AcfD2B35, amount=334269552510000000000 ) => ( True )
    File 1 of 2: InitializableAdminUpgradeabilityProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: agpl-3.0
    pragma solidity 0.6.10;
    /**
    * @dev Interface of the ERC20 standard as defined in the EIP.
    */
    interface IERC20 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    function totalSupply() external view returns (uint256);
    /**
    * @dev Returns the amount of tokens owned by `account`.
    */
    function balanceOf(address account) external view returns (uint256);
    /**
    * @dev Moves `amount` tokens from the caller's account to `recipient`.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: AaveTokenV3
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import {BaseAaveTokenV2} from './BaseAaveTokenV2.sol';
    import {BaseDelegation} from './BaseDelegation.sol';
    contract AaveTokenV3 is BaseAaveTokenV2, BaseDelegation {
    /**
    * @dev initializes the contract upon assignment to the InitializableAdminUpgradeabilityProxy
    */
    function initialize() external virtual initializer {}
    function _afterTokenTransfer(
    address from,
    address to,
    uint256 fromBalanceBefore,
    uint256 toBalanceBefore,
    uint256 amount
    ) internal override {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX