Transaction Hash:
Block:
22022941 at Mar-11-2025 10:10:23 AM +UTC
Transaction Fee:
0.000051362 ETH
$0.15
Gas Used:
51,362 Gas / 1 Gwei
Emitted Events:
248 |
TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000003a507043314ef13a83afffbaf15d89055f64666, 0x000000000000000000000000f1df43a3053cd18e477233b59a25fc483c2cbe0f, 00000000000000000000000000000000000000000000000000000000ef7976e2 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x03A50704...055F64666 |
0.007666013272667341 Eth
Nonce: 261
|
0.007614651272667341 Eth
Nonce: 262
| 0.000051362 | ||
0x3073f7aA...4751a3073 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 78.860472206712053047 Eth | 78.860482705737786973 Eth | 0.000010499025733926 |
Execution Trace
TransparentUpgradeableProxy.095ea7b3( )

-
MOVEToken.approve( spender=0xf1dF43A3053cd18E477233B59a25fC483C2cBe0f, value=4017714914 ) => ( 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`.