Source code for terra_sdk.client.lcd.api.auth

from typing import Union

from terra_sdk.core import AccAddress
from terra_sdk.core.auth import Account, LazyGradedVestingAccount

from ._base import BaseAsyncAPI, sync_bind

__all__ = ["AsyncAuthAPI", "AuthAPI"]


class AsyncAuthAPI(BaseAsyncAPI):
    async def account_info(
        self, address: AccAddress
    ) -> Union[Account, LazyGradedVestingAccount]:
        """Fetches the account information.

        Args:
            address (AccAddress): account address

        Returns:
            Union[BaseAccount, LazyGradedVestingAccount]: account information
        """
        result = await self._c._get(f"/cosmos/auth/v1beta1/accounts/{address}")
        return Account.from_data(result["account"])


[docs]class AuthAPI(AsyncAuthAPI):
[docs] @sync_bind(AsyncAuthAPI.account_info) def account_info( self, address: AccAddress ) -> Union[Account, LazyGradedVestingAccount]: pass
account_info.__doc__ = AsyncAuthAPI.account_info.__doc__