Transaction Hash:
Block:
22655508 at Jun-07-2025 09:51:11 PM +UTC
Transaction Fee:
0.000034669 ETH
$0.12
Gas Used:
34,669 Gas / 1 Gwei
Emitted Events:
223 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000006354ce08f96bc961b9f5110d513e1bedf256ce6, 0x00000000000000000000000055733de37d695f340cafb151d802c5517b56e378, 0000000000000000000000000000000000000000000000000000054092dcf500 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06354ce0...EdF256Ce6 | (Upbit Dep: 0x06354ce08f96BC961b9f5110D513e1bEdF256Ce6) |
11.855001261208545655 Eth
Nonce: 14223
|
11.854966592208545655 Eth
Nonce: 14224
| 0.000034669 | |
0x3073f7aA...4751a3073 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.532884934557870213 Eth | 12.532899618110986438 Eth | 0.000014683553116225 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

-
MOVEToken.transfer( to=0x55733de37D695F340cafb151D802C5517b56e378, value=5774900000000 ) => ( True )
File 1 of 2: TransparentUpgradeableProxy
File 2 of 2: MOVEToken
12345678910111213141516// 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;}
File 2 of 2: MOVEToken
12345678910111213141516// SPDX-License-Identifier: MITpragma 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`.