Transaction Hash:
Block:
21547456 at Jan-04-2025 12:12:11 AM +UTC
Transaction Fee:
0.00052579516391364 ETH
$1.65
Gas Used:
46,545 Gas / 11.296490792 Gwei
Emitted Events:
225 |
Sand.Approval( owner=[Sender] 0x39b1f905a89b82f76a30ab353b572ed818c29214, spender=0x24B4eAE9...745Ce22c0, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3845badA...D3903a5d0 | |||||
0x39B1F905...818c29214 |
0.000822322488190845 Eth
Nonce: 3
|
0.000296527324277205 Eth
Nonce: 4
| 0.00052579516391364 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.646198359209687429 Eth | 5.646291449209687429 Eth | 0.00009309 |
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 {