ETH Price: $1,872.33 (-1.90%)

Transaction Decoder

Block:
16000047 at Nov-18-2022 11:01:11 PM +UTC
Transaction Fee:
0.000852228754007218 ETH $1.60
Gas Used:
66,323 Gas / 12.849671366 Gwei

Emitted Events:

185 AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000320c20475f522e2812a8376ed78f06b4c1a9fba8, 0x000000000000000000000000dec17365c2e8096a5c6acb5322a82665e3040258, 0000000000000000000000000000000000000000000000a2bd1e76b8eaa80000 )

Account State Difference:

  Address   Before After State Difference Code
0x320C2047...4C1a9Fba8
0.630529782030229887 Eth
Nonce: 346
0.629677553276222669 Eth
Nonce: 347
0.000852228754007218
0x4Fabb145...A623C7C53
(builder0x69)
1.917217807405904902 Eth1.917317291905904902 Eth0.0000994845

Execution Trace

AdminUpgradeabilityProxy.a9059cbb( )
  • BUSDImplementation.transfer( _to=0xDeC17365c2e8096A5C6acb5322a82665E3040258, _value=3002000000000000000000 ) => ( 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: BUSDImplementation
    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