Transaction Hash:
Block:
22388683 at May-01-2025 11:23:47 AM +UTC
Transaction Fee:
0.000028661065854981 ETH
$0.08
Gas Used:
46,199 Gas / 0.620382819 Gwei
Emitted Events:
519 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x8483be3ab6a41880e57eed1ea8d63710257ee7db, _spender=0x86355F02...Ca7730fFF, _value=11278466000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 69.466275965282370776 Eth | 69.466276011481370776 Eth | 0.000000046199 | |
0x8483bE3a...0257eE7dB |
0.002429306295581187 Eth
Nonce: 70
|
0.002400645229726206 Eth
Nonce: 71
| 0.000028661065854981 | ||
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x86355F02119bdBC28ED6A4D5E0cA327Ca7730fFF, amount=11278466000000000000 ) => ( 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);}