Transaction Hash:
Block:
21550207 at Jan-04-2025 09:26:11 AM +UTC
Transaction Fee:
0.0003836844925209 ETH
$1.46
Gas Used:
46,545 Gas / 8.24330202 Gwei
Emitted Events:
14 |
Sand.Approval( owner=[Sender] 0x11291894c2a58a682d035c391efbc1c4b5fa8b30, spender=0x24B4eAE9...745Ce22c0, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0BACa42f...7ed0f891E
Miner
| 1,662.584430483112719893 Eth | 1,662.584523573112719893 Eth | 0.00009309 | ||
0x11291894...4b5fa8b30 |
0.000896764302390592 Eth
Nonce: 5
|
0.000513079809869692 Eth
Nonce: 6
| 0.0003836844925209 | ||
0x3845badA...D3903a5d0 |
Execution Trace
Sand.approve( spender=0x24B4eAE904632c53ee231e3bd6C4444745Ce22c0, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=True )
approve[ERC20BaseToken (ln:278)]
_approveFor[ERC20BaseToken (ln:282)]
Approval[ERC20BaseToken (ln:330)]
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 {