Contents:
SDK:
Examples:
from abc import ABC, abstractmethod [docs] class IChainNotifier(ABC): [docs] @abstractmethod def send_notification(self, message: str) -> None: """Send a notification message based on chain execution results.""" pass