ETH Price: $3,140.64 (+5.58%)

Transaction Decoder

Block:
22632869 at Jun-04-2025 05:50:23 PM +UTC
Transaction Fee:
0.000728335748440122 ETH $2.29
Gas Used:
56,569 Gas / 12.875174538 Gwei

Emitted Events:

20 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000b5a46bc8b76fd2825aeb43db9c9e89e89158ecde, 0x0000000000000000000000000c97305bd07fc582bcc2042b9a2dedd9f451e75b, 0000000000000000000000000000000000000000000000000000077901a49300 )

Account State Difference:

  Address   Before After State Difference Code
0x3073f7aA...4751a3073
(Titan Builder)
12.886195149956231754 Eth12.886643613346111288 Eth0.000448463389879534
0xB5A46bC8...89158ECdE
(BtcTurk: Hot Wallet)
139.369570332247478468 Eth
Nonce: 257870
139.368841996499038346 Eth
Nonce: 257871
0.000728335748440122

Execution Trace

TransparentUpgradeableProxy.a9059cbb( )
  • MOVEToken.transfer( to=0x0c97305bd07FC582Bcc2042B9a2Dedd9f451E75B, value=8216300000000 ) => ( 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