16 lines
357 B
Python
16 lines
357 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"],
|
|
)
|
|
|
|
CRYPTOPUNKS_CLASSIFIER_SPECS = [CRYPTO_PUNKS_SPEC]
|