| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- from abc import (
- ABC,
- abstractmethod,
- )
- from typing import (
- Any,
- Dict,
- Optional,
- Union,
- )
- from eth_keyfile.keyfile import (
- KDFType,
- )
- from eth_typing import (
- HexStr,
- )
- from eth_utils.curried import (
- combomethod,
- )
- from eth_account.datastructures import (
- SignedMessage,
- SignedTransaction,
- )
- from eth_account.messages import (
- SignableMessage,
- )
- from eth_account.typed_transactions.set_code_transaction import (
- SignedAuthorization,
- )
- from eth_account.types import (
- Blobs,
- PrivateKeyType,
- TransactionDictType,
- )
- class AccountLocalActions(ABC):
- @classmethod
- @abstractmethod
- def encrypt(
- self,
- private_key: PrivateKeyType,
- password: str,
- kdf: Optional[KDFType] = None,
- iterations: Optional[int] = None,
- ) -> Dict[str, Any]:
- pass
- @combomethod
- @abstractmethod
- def unsafe_sign_hash(
- self,
- message_hash: Union[HexStr, bytes, int],
- private_key: PrivateKeyType,
- ) -> SignedMessage:
- pass
- @combomethod
- @abstractmethod
- def sign_message(
- self,
- signable_message: SignableMessage,
- private_key: PrivateKeyType,
- ) -> SignedMessage:
- pass
- @combomethod
- @abstractmethod
- def sign_transaction(
- self,
- transaction_dict: TransactionDictType,
- private_key: PrivateKeyType,
- blobs: Optional[Blobs] = None,
- ) -> SignedTransaction:
- pass
- @combomethod
- @abstractmethod
- def sign_typed_data(
- self,
- private_key: PrivateKeyType,
- domain_data: Optional[Dict[str, Any]] = None,
- message_types: Optional[Dict[str, Any]] = None,
- message_data: Optional[Dict[str, Any]] = None,
- full_message: Optional[Dict[str, Any]] = None,
- ) -> SignedMessage:
- pass
- @combomethod
- @abstractmethod
- def sign_authorization(
- self,
- private_key: PrivateKeyType,
- authorization: Dict[str, Any],
- ) -> SignedAuthorization:
- pass
|