Transaction Hash:
Block:
22463641 at May-12-2025 12:26:47 AM +UTC
Transaction Fee:
0.000062440465682539 ETH
$0.30
Gas Used:
46,151 Gas / 1.352960189 Gwei
Emitted Events:
645 |
MagicInternetMoneyV1.Approval( _owner=[Sender] 0x877b88f840a5e9ced79dfadf426fa0059a0bedff, _spender=0x00000000...072C22734, _value=49754445623871290775 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x877B88F8...59A0bEDFF |
0.000719082626975857 Eth
Nonce: 1206
|
0.000656642161293318 Eth
Nonce: 1207
| 0.000062440465682539 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.452871927543128561 Eth | 15.452876542643128561 Eth | 0.0000046151 | |
0x99D8a9C4...Dff1e17F3 |
Execution Trace
MagicInternetMoneyV1.approve( spender=0x0000000000001fF3684f28c67538d4D072C22734, amount=49754445623871290775 ) => ( 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);}