Transaction Hash:
Block:
22473521 at May-13-2025 09:49:47 AM +UTC
Transaction Fee:
0.000151480556304525 ETH
$0.38
Gas Used:
46,175 Gas / 3.280575123 Gwei
Emitted Events:
355 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0xff325af9d13baf1ec655cad7a92663632439163d, _spender=0xE5169F89...E7F97718B, _value=300000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.74224036884322249 Eth | 12.742283596408056665 Eth | 0.000043227564834175 | |
0x99D8a9C4...Dff1e17F3 | |||||
0xFF325aF9...32439163d |
0.009145323016534336 Eth
Nonce: 86
|
0.008993842460229811 Eth
Nonce: 87
| 0.000151480556304525 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xE5169F892000fC3BEd5660f62C67FAEE7F97718B, amount=300000000000000000 ) => ( 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);}