Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,23 @@ The `Arbitrage` contract is the core of the FlashArbAI project. It implements th
- `_amountOut`: Minimum amount of output tokens expected.
- `_fee`: Pool fee for the swap.

### Events
```solidity
event TokensSwapped(
address indexed tokenIn,
address indexed tokenOut,
uint256 amountIn,
uint256 amountOut
);

event ArbitrageExecuted(
address indexed tokenA,
address indexed tokenB,
uint256 profit,
uint256 gasUsed
);
```

## Setup Instructions

### Prerequisites
Expand Down
Loading