Source code for helium_py.api.challenges

"""Challenges client for Helium Blockchain API."""

from typing import Generator, Optional

from .api import API
from .decorators import limit_api, time_filterable_api


[docs]class Challenges(API): """Challenges client class for Helium Blockchain API. https://docs.helium.com/api/blockchain/challenges """ base_path = 'challenges'
[docs] @limit_api @time_filterable_api def all(self, params: Optional[dict]) -> Generator[dict, None, None]: """Yield all challenge_receipts transactions.""" return self.client.fetch_all(params=params)