Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x4Fabb145...A623C7C53 | |||||
0xE35b2d93...d560535bB | (Binance Dep: 0xE35b2d930F0e70331ecff71307199d3d560535bB) |
0.023 Eth
Nonce: 0
|
0.02217836 Eth
Nonce: 1
| 0.00082164 | |
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 694.903595211297381645 Eth | 694.904416851297381645 Eth | 0.00082164 |
Execution Trace
AdminUpgradeabilityProxy.a9059cbb( )

-
BUSDImplementation.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=6998080000000000000000 ) => ( True )
File 1 of 2: AdminUpgradeabilityProxy
File 2 of 2: BUSDImplementation
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: BUSDImplementation
12345678910111213141516// File: contracts/zeppelin/SafeMath.solpragma 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;