ETH Price: $2,736.37 (+6.89%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.510885469565254278 Eth8.510897577065254278 Eth0.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 )
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