ETH Price: $4,575.47 (-3.04%)

Transaction Decoder

Block:
22432252 at May-07-2025 02:08:47 PM +UTC
Transaction Fee:
0.00005293967645688 ETH $0.24
Gas Used:
24,215 Gas / 2.186234832 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x27CA5281...8Ce19d4d6
0.644304541011561478 Eth
Nonce: 3199
0.644251601335104598 Eth
Nonce: 3200
0.00005293967645688
(Titan Builder)
9.512426541532111284 Eth9.512438649032111284 Eth0.0000121075
0x99D8a9C4...Dff1e17F3

Execution Trace

MagicInternetMoneyV1.approve( spender=0xF5BCE5077908a1b7370B9ae04AdC565EBd643966, amount=0 ) => ( 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