2021-08-13 12:44:51 -04:00

17 lines
301 B
Python

from typing import List
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