Source code for credmark.cmf.types.token_erc721
from .contract import Contract
[docs]class NonFungibleToken(Contract):
"""
Non-fungible token.
`This class is not yet implemented`
"""
def __init__(self, **data):
super().__init__(**data)
raise NotImplementedError()
@property
def ledger(self) -> None:
return None