Transaction Hash:
Block:
22473245 at May-13-2025 08:54:11 AM +UTC
Transaction Fee:
0.000090698990612188 ETH
$0.23
Gas Used:
46,151 Gas / 1.965265988 Gwei
Emitted Events:
483 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xa80172bfcab0eb8e4db8d44f90a35b18463b8607, _spender=0x00000000...00933C96D, _value=61330288724897680328 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x99D8a9C4...Dff1e17F3 | |||||
0xa80172bF...8463b8607 |
0.009972284527942055 Eth
Nonce: 1135
|
0.009881585537329867 Eth
Nonce: 1136
| 0.000090698990612188 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 168.448730905129714538 Eth | 168.448753980629714538 Eth | 0.0000230755 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x0000000000bbF5c5Fd284e657F01Bd000933C96D, amount=61330288724897680328 ) => ( 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);}