Transaction Decoder
Transaction Hash:
Block:
19522827 at Mar-27-2024 02:47:59 AM +UTC
Transaction Fee:
0.000951590581917072 ETH
$3.52
Gas Used:
46,864 Gas / 20.305364073 Gwei
Emitted Events:
136 |
SuperGrok.Approval( owner=[Sender] 0xdf380c0bf474861ed61a41305e7953ce5cada99c, spender=0x00000000...43aC78BA3, value=50157227277047793825613 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x256AC542...c72A8e5cE
Miner
| 102.57557657458334771 Eth | 102.575578844610882254 Eth | 0.000002270027534544 | ||
0xdf380C0B...e5CaDa99C |
3.485910288137361339 Eth
Nonce: 2
|
3.484958697555444267 Eth
Nonce: 3
| 0.000951590581917072 | ||
0xEbcD1Cc5...0998034C7 |
Execution Trace
SuperGrok.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=50157227277047793825613 ) => ( 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);