diff --git a/python/wax/interfaces.py b/python/wax/interfaces.py index c8e5fd2fd6c63221c6ad7e90b57b48cbb75824eb..62cbb98ff07e9762553e0d38e885a26a8d49282e 100644 --- a/python/wax/interfaces.py +++ b/python/wax/interfaces.py @@ -675,6 +675,10 @@ class IHiveChainInterface(IWaxBaseInterface, Generic[ApiCollectionT]): response = await extended_chain.api.my_custom_api.custom_endpoint() # With full intellisense support """ + @abstractmethod + def teardown(self) -> None: + """Call when work with API communication is over.""" + @abstractmethod async def create_transaction(self, expiration: TTimestamp | None = None) -> IOnlineTransaction: """