Transaction Hash:
Block:
22365470 at Apr-28-2025 05:27:35 AM +UTC
Transaction Fee:
0.000016639186468053 ETH
$0.05
Gas Used:
46,199 Gas / 0.360163347 Gwei
Emitted Events:
613 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x6b0dc93ea3df8f77ad7e90cbbd14d49fc3ec8a78, _spender=0x85CD07Ea...40BbB5E71, _value=10772737000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6b0DC93E...fc3eC8a78 |
0.001755743110163284 Eth
Nonce: 82
|
0.001739103923695231 Eth
Nonce: 83
| 0.000016639186468053 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.054074705056072805 Eth | 6.054074731134622922 Eth | 0.000000026078550117 | |
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x85CD07Ea01423b1E937929B44E4Ad8c40BbB5E71, amount=10772737000000000000 ) => ( 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);}