Transaction Hash:
Block:
19969500 at May-28-2024 04:16:35 PM +UTC
Transaction Fee:
0.000922753724666256 ETH
$2.40
Gas Used:
46,424 Gas / 19.876652694 Gwei
Emitted Events:
372 |
OXR.Approval( owner=[Sender] 0x4a2c0fcc62e09d2b69948671e9a6ed2822e7d15f, spender=0x00000000...43aC78BA3, value=9000000000000000000000000000000000000000000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.78595101072446669 Eth | 3.78595105714846669 Eth | 0.000000046424 | ||
0x4a2c0fCc...822e7D15F |
0.041316194252987353 Eth
Nonce: 33
|
0.040393440528321097 Eth
Nonce: 34
| 0.000922753724666256 | ||
0x56C50cFd...F45b2D583 |
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);