Transaction Hash:
Block:
22595673 at May-30-2025 12:53:23 PM +UTC
Transaction Fee:
0.00012862712809464 ETH
$0.36
Gas Used:
24,215 Gas / 5.311878096 Gwei
Emitted Events:
479 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x98e073b579fd483eac8f10d5bd0b32c8c3bbd7e0, _spender=0xF5BCE507...EBd643966, _value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.747361385160899489 Eth | 11.747384873710899489 Eth | 0.00002348855 | |
0x98E073b5...8C3BBD7e0 |
0.359796524471560668 Eth
Nonce: 5768
|
0.359667897343466028 Eth
Nonce: 5769
| 0.00012862712809464 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xF5BCE5077908a1b7370B9ae04AdC565EBd643966, amount=0 ) => ( True )
approve[ERC20 (ln:231)]
Approval[ERC20 (ln:233)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIXED// File @boringcrypto/boring-solidity/contracts/libraries/BoringMath.sol@v1.2.2// License-Identifier: MITpragma solidity 0.6.12;/// @notice A library for performing overflow-/underflow-safe math,/// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math).library BoringMath {function add(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a + b) >= b, "BoringMath: Add Overflow");}function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a - b) <= a, "BoringMath: Underflow");}function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {require(b == 0 || (c = a * b) / b == a, "BoringMath: Mul Overflow");}function to128(uint256 a) internal pure returns (uint128 c) {require(a <= uint128(-1), "BoringMath: uint128 Overflow");c = uint128(a);}