Transaction Hash:
Block:
19522840 at Mar-27-2024 02:50:35 AM +UTC
Transaction Fee:
0.000942973220177408 ETH
$3.50
Gas Used:
46,864 Gas / 20.121483872 Gwei
Emitted Events:
379 |
SuperGrok.Approval( owner=[Sender] 0x4c224ab49e27ab2e3bfc48d2b3595b7357230432, spender=0x00000000...43aC78BA3, value=350563726111919992993002 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4c224AB4...357230432 |
0.320467283044953335 Eth
Nonce: 44
|
0.319524309824775927 Eth
Nonce: 45
| 0.000942973220177408 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.100217145034732371 Eth | 0.100219216827546915 Eth | 0.000002071792814544 | |
0xEbcD1Cc5...0998034C7 |
Execution Trace
SuperGrok.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=350563726111919992993002 ) => ( True )
approve[SuperGrok (ln:202)]
_approve[SuperGrok (ln:203)]
Approval[SuperGrok (ln:217)]
_msgSender[SuperGrok (ln:203)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT/*https://x.com/cb_doge/status/1772745126952976434?s=20https://x.com/cb_doge/status/1772756999823831229?s=20https://x.com/elonmusk/status/1772724958801649711?s=20It's official, the long-awaited Grok update that's going live at the end of this week will be called SUPER GROKhttps://t.me/supergrokETHhttps://twitter.com/SuperGrokETHhttps://supergroketh.com/*/pragma solidity 0.8.20;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}interface IERC20 {function totalSupply() external view returns (uint256);function balanceOf(address account) external view returns (uint256);function transfer(address recipient, uint256 amount) external returns (bool);