ETH Price: $2,989.03 (+2.43%)

Transaction Decoder

Block:
22022946 at Mar-11-2025 10:11:23 AM +UTC
Transaction Fee:
0.000068051764719324 ETH $0.20
Gas Used:
51,698 Gas / 1.316332638 Gwei

Emitted Events:

91 TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000001537a7e7dcab73f9e84a40303a37c53b156fee6, 0x0000000000000000000000004347f29d65458fd02f3278cfb55afa1cd072d037, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )

Account State Difference:

  Address   Before After State Difference Code
0x01537a7e...3B156fee6
0.006303651475811794 Eth
Nonce: 9
0.00623559971109247 Eth
Nonce: 10
0.000068051764719324
0x3073f7aA...4751a3073
(Titan Builder)
13.708800175774731639 Eth13.708826024774731639 Eth0.000025849

Execution Trace

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