Transaction Hash:
Block:
20554951 at Aug-18-2024 10:35:47 AM +UTC
Transaction Fee:
0.000048638472736368 ETH
$0.14
Gas Used:
26,374 Gas / 1.844182632 Gwei
Emitted Events:
753 |
Keys.Approval( owner=[Sender] 0x26923dcd959cdaa229f6a2ff502598557d1d1710, spender=0xC465CC50...42A8e1873, amount=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x16f354DF...0b5162521 | |||||
0x26923DCD...57d1D1710 |
0.048774255668772666 Eth
Nonce: 76
|
0.048725617196036298 Eth
Nonce: 77
| 0.000048638472736368 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.847752984538474021 Eth | 19.847765775928474021 Eth | 0.00001279139 |
Execution Trace
Keys.approve( spender=0xC465CC50B7D5A29b9308968f870a4B242A8e1873, amountOrId=0 ) => ( True )
approve[ERC404 (ln:520)]
Unauthorized[ERC404 (ln:527)]
Approval[ERC404 (ln:530)]
Approval[ERC404 (ln:533)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {return a < b ? a : b;}/*** @dev Returns the average of two numbers. The result is rounded towards