Transaction Hash:
Block:
12574541 at Jun-05-2021 12:50:39 PM +UTC
Transaction Fee:
0.00092998 ETH
$3.48
Gas Used:
46,499 Gas / 20 Gwei
Emitted Events:
149 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x13d45b450c86fc1beac9d0cb7d3cdf135f22a1e5, _spender=0xA79828DF...aECDD3359, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x13D45b45...35f22a1e5 |
0.013619594 Eth
Nonce: 2
|
0.012689614 Eth
Nonce: 3
| 0.00092998 | ||
0x99D8a9C4...Dff1e17F3 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,465.352691525303631086 Eth | 1,465.353621505303631086 Eth | 0.00092998 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xA79828DF1850E8a3A3064576f380D90aECDD3359, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:231)]
Approval[ERC20 (ln:233)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIXED// File @boringcrypto/boring-solidity/contracts/libraries/BoringMath.sol@v1.2.2// License-Identifier: MITpragma 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);}