mev-inspect-py/mev_inspect/schemas/punk_accept_bid.py
2021-11-15 21:08:07 -05:00

13 lines
230 B
Python

from typing import List
from pydantic import BaseModel
class Punk_Accept_Bid(BaseModel):
block_number: int
transaction_hash: str
trace_address: List[int]
from_address: str
punk_index: int
min_price: int