Transaction Hash:
Block:
13750007 at Dec-06-2021 03:55:06 AM +UTC
Transaction Fee:
0.004299727172253398 ETH
$10.91
Gas Used:
46,499 Gas / 92.469239602 Gwei
Emitted Events:
144 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, _spender=0xd9e1cE17...a9C378B9F, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 9,406.56803912065447684 Eth | 9,406.56810886915447684 Eth | 0.0000697485 | |
0x99D8a9C4...Dff1e17F3 | |||||
0xDfBd4048...B7E09ab6e |
0.197644787136967021 Eth
Nonce: 81
|
0.193345059964713623 Eth
Nonce: 82
| 0.004299727172253398 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F, 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);}