ETH Price: $2,948.10 (+0.36%)
Gas: 1.25 Gwei

Transaction Decoder

Block:
22020739 at Mar-11-2025 02:46:35 AM +UTC
Transaction Fee:
0.000051459254345066 ETH $0.15
Gas Used:
51,698 Gas / 0.995381917 Gwei

Emitted Events:

59 TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000000a54ce898f67c07387e2166c67c7935e14eaa8aa, 0x000000000000000000000000f1df43a3053cd18e477233b59a25fc483c2cbe0f, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )

Account State Difference:

  Address   Before After State Difference Code
0x0A54ce89...e14eAA8Aa
0.010995 Eth
Nonce: 0
0.010943540745654934 Eth
Nonce: 1
0.000051459254345066
5.959044107591991465 Eth5.959044544957071465 Eth0.00000043736508
0x3073f7aA...4751a3073

Execution Trace

TransparentUpgradeableProxy.095ea7b3( )
  • MOVEToken.approve( spender=0xf1dF43A3053cd18E477233B59a25fC483C2cBe0f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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