Transaction Hash:
Block:
21826689 at Feb-11-2025 11:53:47 PM +UTC
Transaction Fee:
0.000040681511391462 ETH
$0.11
Gas Used:
46,286 Gas / 0.878916117 Gwei
Emitted Events:
44 |
SGToken.Approval( owner=[Sender] 0x7c01e9fdfa424448e4dcb419fad0c4ca11e7968c, spender=0xDef1C0de...027b25EfF, value=3673000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x77777A6C...0F660eC94
Miner
| (MEV Builder: 0x777...C94) | 1.111190158360502032 Eth | 1.111194786960502032 Eth | 0.0000046286 | |
0x7C01e9Fd...a11e7968c |
0.00115216405956146 Eth
Nonce: 26
|
0.001111482548169998 Eth
Nonce: 27
| 0.000040681511391462 | ||
0xc4199fB6...42f1c3992 |
Execution Trace
SGToken.approve( spender=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, amount=3673000000000000000000 ) => ( True )
approve[ERC20 (ln:446)]
_approve[ERC20 (ln:447)]
Approval[ERC20 (ln:588)]
_msgSender[ERC20 (ln:447)]
1234567891011121314151617181920212223242526pragma solidity ^0.6.10;// SPDX-License-Identifier: MIT/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with GSN meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/contract Context {// Empty internal constructor, to prevent people from mistakenly deploying// an instance of this contract, which should be used via inheritance.constructor () internal { }function _msgSender() internal view virtual returns (address payable) {return msg.sender;}