Transaction Hash:
Block:
19971111 at May-28-2024 09:40:35 PM +UTC
Transaction Fee:
0.000269728233303056 ETH
$0.76
Gas Used:
26,524 Gas / 10.169214044 Gwei
Emitted Events:
320 |
OXR.Approval( owner=[Sender] 0x4a2c0fcc62e09d2b69948671e9a6ed2822e7d15f, spender=0x00000000...43aC78BA3, value=9000000000000000000000000000000000000000000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.431628541392882879 Eth | 3.431628567916882879 Eth | 0.000000026524 | ||
0x4a2c0fCc...822e7D15F |
0.003103029135247051 Eth
Nonce: 55
|
0.002833300901943995 Eth
Nonce: 56
| 0.000269728233303056 |
Execution Trace
OXR.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=9000000000000000000000000000000000000000000000000000000000000000 ) => ( True )
approve[ERC20 (ln:283)]
_approve[ERC20 (ln:284)]
Approval[ERC20 (ln:438)]
_msgSender[ERC20 (ln:284)]
1234567891011121314151617181920212223242526/*Website: https://www.0xrouterai.io/X: https://x.com/0xrouteraiDocs: https://docs.0xrouterai.io/Telegram: https://t.me/xRouterAiMedium: https://medium.com/@xrouterai*/// SPDX-License-Identifier: MITpragma solidity 0.8.9;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 IUniswapV2Pair {event Approval(address indexed owner, address indexed spender, uint value);event Transfer(address indexed from, address indexed to, uint value);