Transaction Hash:
Block:
22444026 at May-09-2025 06:05:59 AM +UTC
Transaction Fee:
0.0000343833836249 ETH
$0.09
Gas Used:
24,215 Gas / 1.41992086 Gwei
Emitted Events:
644 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x8c6c8c306fbcea9330e9dd6c18b8659bdf2445a4, _spender=0x55A8a39b...599461E18, _value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.510885469565254278 Eth | 8.510897577065254278 Eth | 0.0000121075 | |
0x8c6c8C30...bDF2445A4 |
0.072768465671385519 Eth
Nonce: 2225
|
0.072734082287760619 Eth
Nonce: 2226
| 0.0000343833836249 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x55A8a39bc9694714E2874c1ce77aa1E599461E18, 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);}