ETH Price: $3,139.32 (+5.43%)

Transaction Decoder

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 Code
0x3845badA...D3903a5d0
0x39B1F905...818c29214
0.000822322488190845 Eth
Nonce: 3
0.000296527324277205 Eth
Nonce: 4
0.00052579516391364
(Titan Builder)
5.646198359209687429 Eth5.646291449209687429 Eth0.00009309

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