2021-08-27 13:20:50 -04:00

17 lines
313 B
Python

from typing import List
from pydantic import BaseModel
from .classified_traces 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