Transaction Hash:
Block:
21637360 at Jan-16-2025 01:31:35 PM +UTC
Transaction Fee:
0.001074972107197305 ETH
$1.97
Gas Used:
46,565 Gas / 23.085409797 Gwei
Emitted Events:
11 |
ZKGPT.Approval( owner=[Sender] 0x94a3ef01a25208919170be50daf19f89b82e582a, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x733Fd1B5...751C167C7 | |||||
0x94A3Ef01...9B82e582a |
0.027177554701171788 Eth
Nonce: 33
|
0.026102582593974483 Eth
Nonce: 34
| 0.001074972107197305 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 12.392127854394654206 Eth | 12.392593504394654206 Eth | 0.00046565 |
Execution Trace
ZKGPT.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:188)]
_msgSender[ERC20 (ln:189)]
_approve[ERC20 (ln:190)]
Approval[ERC20 (ln:317)]
1234567891011121314151617181920212223242526pragma solidity 0.8.25;// SPDX-License-Identifier: MIT/**ZKGPT - The AI-powered Web3 search engine designed for ultimate privacy and securityDapp: https://zkgpt.ioWebsite: https://info.zkgpt.ioTwitter: https://x.com/zkgptioTelegram: https://t.me/zkgptioKYC: https://assuredefi.com/projects/zkgptDocs: https://docs.zkgpt.io/*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/**