13 lines
232 B
Python
13 lines
232 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class PunkBidAcceptance(BaseModel):
|
|
block_number: int
|
|
transaction_hash: str
|
|
trace_address: List[int]
|
|
from_address: str
|
|
punk_index: int
|
|
min_price: int
|