Transaction Hash:
Block:
22633368 at Jun-04-2025 07:30:47 PM +UTC
Transaction Fee:
0.000438126007278673 ETH
$1.88
Gas Used:
56,581 Gas / 7.743341533 Gwei
Emitted Events:
213 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000172f108e7404839ed286b4c8a8dce40288069849, 0x0000000000000000000000005cbd15d48ac85035f57736dffd3f279f923d267d, 000000000000000000000000000000000000000000000000000001af0d2b568b )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x172f108E...288069849 |
2.906712986273213684 Eth
Nonce: 4814
|
2.906274860265935011 Eth
Nonce: 4815
| 0.000438126007278673 | ||
0x3073f7aA...4751a3073 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.035786560223850952 Eth | 9.035899722223850952 Eth | 0.000113162 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

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