ETH Price: $3,771.84 (-2.38%)

Transaction Decoder

Block:
22020543 at Mar-11-2025 02:07:11 AM +UTC
Transaction Fee:
0.000143307494060337 ETH $0.54
Gas Used:
56,557 Gas / 2.533859541 Gwei

Emitted Events:

609 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000001ab4973a48dc892cd9971ece8e01dcc7688f8f23, 0x000000000000000000000000383979c4d8db1cb21b98c9afed1b1f7d732700b7, 0000000000000000000000000000000000000000000000000000000372f9ef7a )

Account State Difference:

  Address   Before After State Difference Code
0x1AB4973a...7688f8F23
(Bitget 6)
2,092.317528645819602133 Eth
Nonce: 1346707
2,092.317385338325541796 Eth
Nonce: 1346708
0.000143307494060337
0x3073f7aA...4751a3073
(beaverbuild)
69.990072017381464017 Eth69.990078068980464017 Eth0.000006051599

Execution Trace

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