Transaction Hash:
Block:
12561866 at Jun-03-2021 01:40:17 PM +UTC
Transaction Fee:
0.001720463 ETH
$5.12
Gas Used:
46,499 Gas / 37 Gwei
Emitted Events:
217 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xb7638f0040f116668201fb822446c1857035a9a2, _spender=0xF5BCE507...EBd643966, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2f731c3e...6303DF52A
Miner
| 1,438.351499241172940213 Eth | 1,438.353219704172940213 Eth | 0.001720463 | ||
0x99D8a9C4...Dff1e17F3 | |||||
0xB7638F00...57035A9a2 |
0.058930939676583069 Eth
Nonce: 26
|
0.057210476676583069 Eth
Nonce: 27
| 0.001720463 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xF5BCE5077908a1b7370B9ae04AdC565EBd643966, 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);}