Transaction Hash:
Block:
22401463 at May-03-2025 06:27:47 AM +UTC
Transaction Fee:
0.00001688872634724 ETH
$0.05
Gas Used:
46,199 Gas / 0.36556476 Gwei
Emitted Events:
240 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x1c7b64ac83227e3d5007b434d264f654e528eca7, _spender=0x86355F02...Ca7730fFF, _value=11068214000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1c7b64ac...4e528eCA7 |
0.004772411182011874 Eth
Nonce: 59
|
0.004755522455664634 Eth
Nonce: 60
| 0.00001688872634724 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 112.342280768288721827 Eth | 112.342280808821645472 Eth | 0.000000040532923645 | |
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x86355F02119bdBC28ED6A4D5E0cA327Ca7730fFF, amount=11068214000000000000 ) => ( 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);}