18 lines
336 B
Python
18 lines
336 B
Python
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from .swaps import Swap
|
|
|
|
|
|
class Arbitrage(BaseModel):
|
|
swaps: List[Swap]
|
|
block_number: int
|
|
transaction_hash: str
|
|
account_address: str
|
|
profit_token_address: str
|
|
start_amount: int
|
|
end_amount: int
|
|
profit_amount: int
|
|
error: Optional[str]
|