Transaction Hash:
Block:
22499641 at May-17-2025 01:59:23 AM +UTC
Transaction Fee:
0.000061628439753207 ETH
$0.16
Gas Used:
46,499 Gas / 1.325371293 Gwei
Emitted Events:
316 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xc1aff2cc78445da6bce04e0ee1f14c822b0cb4a7, _spender=0x45312ea0...8c4C8cd4e, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.321014946172135808 Eth | 13.321019084583135808 Eth | 0.000004138411 | |
0x99D8a9C4...Dff1e17F3 | |||||
0xC1AFF2Cc...22b0Cb4a7 |
0.048317310827144039 Eth
Nonce: 75
|
0.048255682387390832 Eth
Nonce: 76
| 0.000061628439753207 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x45312ea0eFf7E09C83CBE249fa1d7598c4C8cd4e, 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);}