Transaction Hash:
Block:
22432661 at May-07-2025 03:33:35 PM +UTC
Transaction Fee:
0.000083800823053387 ETH
$0.21
Gas Used:
46,223 Gas / 1.812968069 Gwei
Emitted Events:
576 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x0573349c0d6a5ceee9255050ad04f6aa5855607b, _spender=0x11111112...0f8842A65, _value=20673605885660000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0573349C...A5855607b |
0.004406652140339838 Eth
Nonce: 1070
|
0.004322851317286451 Eth
Nonce: 1071
| 0.000083800823053387 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.498262037416574232 Eth | 5.498264348566574232 Eth | 0.00000231115 | |
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x111111125421cA6dc452d289314280a0f8842A65, amount=20673605885660000000000 ) => ( 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);}