Transaction Hash:
Block:
22428851 at May-07-2025 02:33:59 AM +UTC
Transaction Fee:
0.000012887851255008 ETH
$0.04
Gas Used:
43,788 Gas / 0.294323816 Gwei
Emitted Events:
342 |
AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000003431c6b96d56184790358255dd7cc7055e0c5118, 0x0000000000000000000000003a09c40f8f7b93c8c7e09a5422e56dfe7c7d2794, 00000000000000000000000000000000000000000000000000000000045acea0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3431C6B9...55e0C5118 |
0.0000766803972 Eth
Nonce: 0
|
0.000063792545944992 Eth
Nonce: 1
| 0.000012887851255008 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.854102086405199124 Eth | 13.854102268521155068 Eth | 0.000000182115955944 | |
0x6c3ea903...A0e23A0e8 |
Execution Trace
AdminUpgradeabilityProxy.a9059cbb( )

-
PYUSD.transfer( to=0x3a09C40f8f7B93c8C7e09A5422e56DFe7c7d2794, value=73060000 ) => ( True )
transfer[PaxosTokenV2 (ln:6083)]
_transfer[PaxosTokenV2 (ln:6084)]
_isAddrFrozen[PaxosTokenV2 (ln:6361)]
_isAddrFrozen[PaxosTokenV2 (ln:6361)]
AddressFrozen[PaxosTokenV2 (ln:6361)]
InsufficientFunds[PaxosTokenV2 (ln:6362)]
Transfer[PaxosTokenV2 (ln:6365)]
File 1 of 2: AdminUpgradeabilityProxy
File 2 of 2: PYUSD
12345678910111213141516// File: contracts/zeppelin/Proxy.solpragma solidity ^0.4.24;/*** @title Proxy* @dev Implements delegation of calls to other contracts, with proper* forwarding of return values and bubbling of failures.* It defines a fallback function that delegates all calls to the address* returned by the abstract _implementation() internal function.*/contract Proxy {/*** @dev Fallback function.* Implemented entirely in `_fallback`.*/
File 2 of 2: PYUSD
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControlDefaultAdminRules.sol)pragma solidity ^0.8.0;import "./AccessControlUpgradeable.sol";import "./IAccessControlDefaultAdminRulesUpgradeable.sol";import "../utils/math/SafeCastUpgradeable.sol";import "../interfaces/IERC5313Upgradeable.sol";import "../proxy/utils/Initializable.sol";/*** @dev Extension of {AccessControl} that allows specifying special rules to manage* the `DEFAULT_ADMIN_ROLE` holder, which is a sensitive role with special permissions* over other roles that may potentially have privileged rights in the system.** If a specific role doesn't have an admin role assigned, the holder of the* `DEFAULT_ADMIN_ROLE` will have the ability to grant it and revoke it.*