Transaction Hash:
Block:
22356503 at Apr-26-2025 11:28:59 PM +UTC
Transaction Fee:
0.000018760809392722 ETH
$0.07
Gas Used:
46,139 Gas / 0.406614998 Gwei
Emitted Events:
452 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xfae3387217f8396aa129900efbf2f2b020862585, _spender=0x00000000...00933C96D, _value=1295069744218499112 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.388237493159257035 Eth | 17.388240457311465892 Eth | 0.000002964152208857 | |
0x99D8a9C4...Dff1e17F3 | |||||
0xFae33872...020862585 |
0.000129236124133675 Eth
Nonce: 134
|
0.000110475314740953 Eth
Nonce: 135
| 0.000018760809392722 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x0000000000bbF5c5Fd284e657F01Bd000933C96D, amount=1295069744218499112 ) => ( 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);}