ETH Price: $3,376.76 (+9.12%)

Transaction Decoder

Block:
12575547 at Jun-05-2021 04:36:20 PM +UTC
Transaction Fee:
0.000697485 ETH $2.36
Gas Used:
46,499 Gas / 15 Gwei

Emitted Events:

271 MagicInternetMoneyV1.Approval( _owner=[Sender] 0x581de43b0273915f61d015e394d2c6af1f9ce8e6, _spender=0x5a6A4D54...904BdF41B, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x581dE43B...F1F9ce8E6
0.053977908507316441 Eth
Nonce: 305
0.053280423507316441 Eth
Nonce: 306
0.000697485
0x99D8a9C4...Dff1e17F3
(Babel Pool)
18,544.699444847431666716 Eth18,544.700142332431666716 Eth0.000697485

Execution Trace

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