Transaction Hash:
Block:
19523256 at Mar-27-2024 04:15:47 AM +UTC
Transaction Fee:
0.001038425813127936 ETH
$3.13
Gas Used:
46,864 Gas / 22.158283824 Gwei
Emitted Events:
373 |
SuperGrok.Approval( owner=[Sender] 0xf8a189da251aa4f664bef833f44afb9bdd5cde1f, spender=0x00000000...43aC78BA3, value=26198629349833766000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 163.604760384285485824 Eth | 163.60476042974375328 Eth | 0.000000045458267456 | |
0xEbcD1Cc5...0998034C7 | |||||
0xF8a189da...BdD5Cde1f |
0.211153222065491304 Eth
Nonce: 364
|
0.210114796252363368 Eth
Nonce: 365
| 0.001038425813127936 |
Execution Trace
SuperGrok.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=26198629349833766000000 ) => ( 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);