Transaction Hash:
Block:
21543567 at Jan-03-2025 11:10:11 AM +UTC
Transaction Fee:
0.000272478249959388 ETH
$0.85
Gas Used:
29,436 Gas / 9.256633033 Gwei
Emitted Events:
191 |
Sand.Transfer( from=[Sender] 0x31e2b9c7a53bb2b3c719dc2681817a900c6ed32e, to=0xA5D872dd359241E66259D8922620884B8437df04, value=249990000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x31e2b9C7...00c6eD32e |
0.23170602899145473 Eth
Nonce: 278
|
0.231433550741495342 Eth
Nonce: 279
| 0.000272478249959388 | ||
0x3845badA...D3903a5d0 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.44279572658513016 Eth | 15.44285459858513016 Eth | 0.000058872 |
Execution Trace
Sand.transfer( to=0xA5D872dd359241E66259D8922620884B8437df04, amount=249990000000000000000000 ) => ( 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 {