Transaction Hash:
Block:
22360091 at Apr-27-2025 11:27:47 AM +UTC
Transaction Fee:
0.0000184748 ETH
$0.07
Gas Used:
46,187 Gas / 0.4 Gwei
Emitted Events:
234 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x7d544cfbf4fc6f158297e7186b66d621a29be0fe, _spender=0xE5169F89...E7F97718B, _value=2252970000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 23.811397407596911415 Eth | 23.811399242384261945 Eth | 0.00000183478735053 | |
0x7D544cFB...1A29be0fe |
0.026723153878628557 Eth
Nonce: 257
|
0.026704679078628557 Eth
Nonce: 258
| 0.0000184748 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0xE5169F892000fC3BEd5660f62C67FAEE7F97718B, amount=2252970000000000000 ) => ( 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);}