13 lines
303 B
Python
13 lines
303 B
Python
from mev_inspect.schemas.traces import (
|
|
Protocol,
|
|
)
|
|
|
|
from mev_inspect.schemas.classifiers import (
|
|
ClassifierSpec,
|
|
)
|
|
|
|
CRYPTO_PUNKS_SPEC = ClassifierSpec(
|
|
abi_name='cryptopunks',
|
|
protocol=Protocol.cryptopunks,
|
|
valid_contract_addresses=["0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB"]
|
|
) |