ETH Price: $3,539.62 (+5.98%)

Transaction Decoder

Block:
22699881 at Jun-14-2025 02:42:47 AM +UTC
Transaction Fee:
0.000102192 ETH $0.36
Gas Used:
51,096 Gas / 2 Gwei

Emitted Events:

114 AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000006fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 0000000000000000000000000000000000000000000000002a67349a69defc00 )
115 AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000006fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, 0x00000000000000000000000038699d04656ff537ef8671b6b595402ebdbdf6f4, 0000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.013680958 Eth
Nonce: 123753
0.013578766 Eth
Nonce: 123754
0.000102192
0x45804880...E6EcbAf78
(Titan Builder)
10.64835572555518444 Eth10.648433767326068224 Eth0.000078041770883784

Execution Trace

AdminUpgradeabilityProxy.a9059cbb( )
  • PAXGImplementation.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=3055468710000000000 ) => ( True )
    File 1 of 2: AdminUpgradeabilityProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // File: contracts/zeppelin/Proxy.sol
    pragma 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`.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: PAXGImplementation
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // File: contracts/zeppelin/SafeMath.sol
    pragma solidity 0.4.24;
    /**
    * @title SafeMath
    * @dev Math operations with safety checks that throw on error
    */
    library SafeMath {
    /**
    * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX