Transaction Hash:
Block:
22633614 at Jun-04-2025 08:20:11 PM +UTC
Transaction Fee:
0.00036270264214071 ETH
$1.52
Gas Used:
56,569 Gas / 6.41168559 Gwei
Emitted Events:
441 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000091d40e4818f4d4c57b4578d9eca6afc92ac8debe, 0x00000000000000000000000006354ce08f96bc961b9f5110d513e1bedf256ce6, 0000000000000000000000000000000000000000000000000000058c3e5f6700 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3073f7aA...4751a3073 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.481999207639950465 Eth | 10.482112345639950465 Eth | 0.000113138 | |
0x91D40E48...92aC8DEbE |
180.023000176900055409 Eth
Nonce: 131021
|
180.022637474257914699 Eth
Nonce: 131022
| 0.00036270264214071 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

-
MOVEToken.transfer( to=0x06354ce08f96BC961b9f5110D513e1bEdF256Ce6, value=6099900000000 ) => ( 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`.