ETH Price: $2,967.05 (-2.43%)

Transaction Decoder

Block:
22604237 at May-31-2025 05:36:59 PM +UTC
Transaction Fee:
0.000104296463656722 ETH $0.31
Gas Used:
46,639 Gas / 2.236249998 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x9281537a...7c03AdbF9
0.006485094746274562 Eth
Nonce: 22
0.00638079828261784 Eth
Nonce: 23
0.000104296463656722
(beaverbuild)
18.185930164037580618 Eth18.185939096890786544 Eth0.000008932853205926
0x99D8a9C4...Dff1e17F3

Execution Trace

MagicInternetMoneyV1.transfer( to=0x409CC9E70e547770B53Ce2318D1636606466906B, amount=12882899580134723916 ) => ( 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