ETH Price: $3,685.00 (-1.42%)
Gas: 1.01 Gwei

Transaction Decoder

Block:
22022945 at Mar-11-2025 10:11:11 AM +UTC
Transaction Fee:
0.000160483297082089 ETH $0.59
Gas Used:
56,557 Gas / 2.837549677 Gwei

Emitted Events:

21 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000dfd5293d8e347dfe59e90efd55b2956a1343963d, 0x000000000000000000000000c260cc059c0ff4d72d31af381e24394631886ed7, 000000000000000000000000000000000000000000000000000000095887cb00 )

Account State Difference:

  Address   Before After State Difference Code
0x3073f7aA...4751a3073
(beaverbuild)
78.92060808215510817 Eth78.92072119615510817 Eth0.000113114
0xDFd5293D...a1343963d
(Binance 16)
24,136.453988156416794693 Eth
Nonce: 11002593
24,136.453827673119712604 Eth
Nonce: 11002594
0.000160483297082089

Execution Trace

TransparentUpgradeableProxy.a9059cbb( )
  • MOVEToken.transfer( to=0xC260cC059c0FF4d72d31AF381e24394631886ed7, value=40140000000 ) => ( True )
    File 1 of 2: TransparentUpgradeableProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (proxy/transparent/TransparentUpgradeableProxy.sol)
    pragma solidity ^0.8.20;
    import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
    import {ERC1967Proxy} from "../ERC1967/ERC1967Proxy.sol";
    import {IERC1967} from "../../interfaces/IERC1967.sol";
    import {ProxyAdmin} from "./ProxyAdmin.sol";
    /**
    * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}
    * does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch
    * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not
    * include them in the ABI so this interface must be used to interact with it.
    */
    interface ITransparentUpgradeableProxy is IERC1967 {
    function upgradeToAndCall(address, bytes calldata) external payable;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: MOVEToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.19;
    import {ERC20PermitUpgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol";
    import {AccessControlUpgradeable} from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
    contract MOVEToken is ERC20PermitUpgradeable, AccessControlUpgradeable {
    /**
    * @dev Disables potential implementation exploit
    */
    constructor() {_disableInitializers();}
    /**
    * @dev Initializes the contract with initial parameters.
    * @param _owner The address of the owner who receives default admin role.
    * @param _custody The address of the custody account.
    * @notice The ERC20 token is named "Movement" with symbol "MOVE".
    * @notice EIP712 domain version is set to "1" for signatures.
    * @notice The owner is granted the `DEFAULT_ADMIN_ROLE`.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX