ETH Price: $2,606.20 (+2.10%)

Transaction Decoder

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 Code
3.78595101072446669 Eth3.78595105714846669 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
Website: https://www.0xrouterai.io/
X: https://x.com/0xrouterai
Docs: https://docs.0xrouterai.io/
Telegram: https://t.me/xRouterAi
Medium: https://medium.com/@xrouterai
*/
// SPDX-License-Identifier: MIT
pragma 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/2691
return msg.data;
}
}
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX