ETH Price: $4,279.45 (+1.64%)

Transaction Decoder

Block:
22595671 at May-30-2025 12:52:59 PM +UTC
Transaction Fee:
0.000130866660384805 ETH $0.56
Gas Used:
24,215 Gas / 5.404363427 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.714140384414146369 Eth11.714163872964170584 Eth0.000023488550024215
0x98E073b5...8C3BBD7e0
0.359927391131945473 Eth
Nonce: 5767
0.359796524471560668 Eth
Nonce: 5768
0.000130866660384805
0x99D8a9C4...Dff1e17F3

Execution Trace

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