Transaction Hash:
Block:
22605797 at May-31-2025 10:50:59 PM +UTC
Transaction Fee:
0.000059653091486625 ETH
$0.28
Gas Used:
39,481 Gas / 1.510931625 Gwei
Emitted Events:
605 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, 0x000000000000000000000000a5f7cbb8181ac1d75d9d17f2815d9dde2f45fd89, 000000000000000000000000000000000000000000000000000006a26017551c )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3073f7aA...4751a3073 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.726625478300572438 Eth | 7.726659736060764002 Eth | 0.000034257760191564 | |
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
14.127005626626357681 Eth
Nonce: 23979
|
14.126945973534871056 Eth
Nonce: 23980
| 0.000059653091486625 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

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