Transaction Hash:
Block:
22443971 at May-09-2025 05:54:47 AM +UTC
Transaction Fee:
0.00003636818876514 ETH
$0.09
Gas Used:
24,215 Gas / 1.501886796 Gwei
Emitted Events:
362 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x8c6c8c306fbcea9330e9dd6c18b8659bdf2445a4, _spender=0x6b7a8789...BE7E71522, _value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8c6c8C30...bDF2445A4 |
0.073976236442165434 Eth
Nonce: 2193
|
0.073939868253400294 Eth
Nonce: 2194
| 0.00003636818876514 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.23779100216736052 Eth | 14.237803156834814635 Eth | 0.000012154667454115 | |
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x6b7a87899490EcE95443e979cA9485CBE7E71522, 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);}