Transaction Hash:
Block:
22436218 at May-08-2025 03:40:47 AM +UTC
Transaction Fee:
0.000073460974014248 ETH
$0.18
Gas Used:
46,223 Gas / 1.589273176 Gwei
Emitted Events:
156 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xc933b5015d79e22341ac39cbacf4af65cb9e96fb, _spender=0xCf5540fF...7b0772559, _value=250164466573912153619 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 65.615993664117296808 Eth | 65.616014411443553041 Eth | 0.000020747326256233 | |
0x99D8a9C4...Dff1e17F3 | |||||
0xC933b501...5Cb9E96Fb |
0.03078812150430031 Eth
Nonce: 8
|
0.030714660530286062 Eth
Nonce: 9
| 0.000073460974014248 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xCf5540fFFCdC3d510B18bFcA6d2b9987b0772559, amount=250164466573912153619 ) => ( 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);}