ETH Price: $3,546.47 (+3.63%)

Transaction Decoder

Block:
21538738 at Jan-02-2025 06:59:47 PM +UTC
Transaction Fee:
0.00025307147108166 ETH $0.90
Gas Used:
26,369 Gas / 9.59731014 Gwei

Emitted Events:

935 Sand.Approval( owner=[Sender] 0x085df10c51219c174905ec12b7251d6317c63d0f, spender=0x11111112...73A960582, value=851716208159441300000 )

Account State Difference:

  Address   Before After State Difference Code
0x085Df10C...317c63D0F
0.006167725252895525 Eth
Nonce: 82
0.005914653781813865 Eth
Nonce: 83
0.00025307147108166
(Titan Builder)
14.957184826015891227 Eth14.957187462915891227 Eth0.0000026369

Execution Trace

Sand.approve( spender=0x1111111254EEB25477B68fb85Ed929f73A960582, amount=851716208159441300000 ) => ( 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