ETH Price: $3,816.05 (-0.34%)

Transaction Decoder

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 Code
1,662.584430483112719893 Eth1,662.584523573112719893 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX