ETH Price: $2,941.18 (-0.42%)

Transaction Decoder

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 Code
0x1c7b64ac...4e528eCA7
0.004772411182011874 Eth
Nonce: 59
0.004755522455664634 Eth
Nonce: 60
0.00001688872634724
(Titan Builder)
112.342280768288721827 Eth112.342280808821645472 Eth0.000000040532923645
0x99D8a9C4...Dff1e17F3

Execution Trace

MagicInternetMoneyV1.approve( spender=0x86355F02119bdBC28ED6A4D5E0cA327Ca7730fFF, amount=11068214000000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIXED
// File @boringcrypto/boring-solidity/contracts/libraries/BoringMath.sol@v1.2.2
// License-Identifier: MIT
pragma 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX