ETH Price: $2,971.85 (-2.26%)

Transaction Decoder

Block:
12561682 at Jun-03-2021 12:57:48 PM +UTC
Transaction Fee:
0.001301972 ETH $3.87
Gas Used:
46,499 Gas / 28 Gwei

Emitted Events:

189 MagicInternetMoneyV1.Approval( _owner=[Sender] 0x3c1cb7d4c0ce0dc72edc7ea06acc866e62a8f1d8, _spender=0xdDA7E340...A6C7a8709, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Hiveon Pool)
3,976.820517839990052595 Eth3,976.821819811990052595 Eth0.001301972
0x3c1Cb7D4...e62a8f1d8
0.150046607959033449 Eth
Nonce: 328
0.148744635959033449 Eth
Nonce: 329
0.001301972
0x99D8a9C4...Dff1e17F3

Execution Trace

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