ETH Price: $3,006.42 (+7.90%)

Transaction Decoder

Block:
12695295 at Jun-24-2021 06:32:16 AM +UTC
Transaction Fee:
0.00082164 ETH $2.47
Gas Used:
34,235 Gas / 24 Gwei

Emitted Events:

50 AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000e35b2d930f0e70331ecff71307199d3d560535bb, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 00000000000000000000000000000000000000000000017b5dde8a9545a00000 )

Account State Difference:

  Address   Before After State Difference Code
0x4Fabb145...A623C7C53
0xE35b2d93...d560535bB
(Binance Dep: 0xE35b2d930F0e70331ecff71307199d3d560535bB)
0.023 Eth
Nonce: 0
0.02217836 Eth
Nonce: 1
0.00082164
(Ethermine)
694.903595211297381645 Eth694.904416851297381645 Eth0.00082164

Execution Trace

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