Transaction Hash:
Block:
22665768 at Jun-09-2025 08:16:35 AM +UTC
Transaction Fee:
0.000069018823974795 ETH
$0.30
Gas Used:
46,499 Gas / 1.484307705 Gwei
Emitted Events:
318 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x56fb82cdf1eba7d9d75a1c0961c49ab654b818c2, _spender=0xC92E8bdf...16BFE0110, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.895399977268389128 Eth | 5.895423226768389128 Eth | 0.0000232495 | |
0x56fb82cd...654B818c2 |
0.089242142901281217 Eth
Nonce: 324
|
0.089173124077306422 Eth
Nonce: 325
| 0.000069018823974795 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xC92E8bdf79f0507f65a392b0ab4667716BFE0110, 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);}