Transaction Hash:
Block:
21547622 at Jan-04-2025 12:45:35 AM +UTC
Transaction Fee:
0.000313836700581792 ETH
$1.19
Gas Used:
29,448 Gas / 10.657318004 Gwei
Emitted Events:
156 |
Sand.Transfer( from=[Sender] 0x5d550635f87e21337462b582dff589f552e609ae, to=0x729cdc27fe86a32Fce22121dcb34b2679Dd2F917, value=6174166100000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3845badA...D3903a5d0 | |||||
0x5D550635...552e609AE | (Upbit Dep: 0x5D550635f87E21337462b582dfF589f552e609AE) |
9.361262365880594134 Eth
Nonce: 11638
|
9.360948529180012342 Eth
Nonce: 11639
| 0.000313836700581792 | |
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.17224307328408778 Eth | 17.17230196928408778 Eth | 0.000058896 |
Execution Trace
Sand.transfer( to=0x729cdc27fe86a32Fce22121dcb34b2679Dd2F917, amount=6174166100000000000000 ) => ( success=True )
transfer[ERC20BaseToken (ln:232)]
_transfer[ERC20BaseToken (ln:236)]
Transfer[ERC20BaseToken (ln:338)]
1234567891011121314151617181920212223242526pragma solidity ^0.5.2;contract Admin {address internal _admin;event AdminChanged(address oldAdmin, address newAdmin);/// @notice gives the current administrator of this contract./// @return the current administrator of this contract.function getAdmin() external view returns (address) {return _admin;}/// @notice change the administrator to be `newAdmin`./// @param newAdmin address of the new administrator.function changeAdmin(address newAdmin) external {require(msg.sender == _admin, "only admin can change admin");emit AdminChanged(_admin, newAdmin);_admin = newAdmin;}}pragma solidity ^0.5.2;import "./Admin.sol";contract SuperOperators is Admin {mapping(address => bool) internal _superOperators;event SuperOperator(address superOperator, bool enabled);/// @notice Enable or disable the ability of `superOperator` to transfer tokens of all (superOperator rights)./// @param superOperator address that will be given/removed superOperator right./// @param enabled set whether the superOperator is enabled or disabled.function setSuperOperator(address superOperator, bool enabled) external {