Transaction Hash:
Block:
22522871 at May-20-2025 08:13:35 AM +UTC
Transaction Fee:
0.000088508476352972 ETH
$0.22
Gas Used:
46,499 Gas / 1.903449028 Gwei
Emitted Events:
255 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x708840dcd0c9801e07944ac5b267321a1c575be9, _spender=0x881D4023...dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.437672604214000004 Eth | 7.437719103214046503 Eth | 0.000046499000046499 | |
0x708840DC...a1c575BE9 |
0.00074874076216136 Eth
Nonce: 1
|
0.000660232285808388 Eth
Nonce: 2
| 0.000088508476352972 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, 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);}