diff --git a/python/tests/base_api/__init__.py b/python/tests/base_api/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/python/tests/base_api/test_operation_get_impacted_accounts.py b/python/tests/base_api/test_operation_get_impacted_accounts.py
new file mode 100644
index 0000000000000000000000000000000000000000..f4bfe176278cea1fce90a8693abd61692c3b8988
--- /dev/null
+++ b/python/tests/base_api/test_operation_get_impacted_accounts.py
@@ -0,0 +1,55 @@
+from __future__ import annotations
+
+import json
+from typing import TYPE_CHECKING, Final
+
+import pytest
+
+from wax import create_wax_foundation
+from wax.proto import authority_pb2, operation_pb2, recover_account_pb2
+
+if TYPE_CHECKING:
+    from wax._private.models.operations import Operation
+
+
+AUTHORITY_1: Final[authority_pb2.authority] = authority_pb2.authority(
+    weight_threshold=1,
+    account_auths={"account": 1, "account1": 2},
+    key_auths={"STM76EQNV2RTA6yF9TnBvGSV71mW7eW36MM7XQp24JxdoArTfKA76": 1},
+)
+AUTHORITY_2: Final[authority_pb2.authority] = authority_pb2.authority(
+    weight_threshold=1,
+    account_auths={"account1": 1, "account2": 2},
+    key_auths={"STM76EQNV2RTA6yF9TnBvGSV71mW7eW36MM7XQp24JxdoArTfKA76": 1},
+)
+RECOVER_ACCOUNT: Final[recover_account_pb2.recover_account] = recover_account_pb2.recover_account(
+    account_to_recover="account", new_owner_authority=AUTHORITY_1, recent_owner_authority=AUTHORITY_2, extensions=[]
+)
+
+PROTO_OPERATION: Final[operation_pb2.operation] = operation_pb2.operation(recover_account=RECOVER_ACCOUNT)
+API_OPERATION_DICT: Final[dict] = {
+    "type": "claim_reward_balance_operation",
+    "value": {
+        "account": "account",
+        "reward_hive": {"amount": "0", "precision": 3, "nai": "@@000000021"},
+        "reward_hbd": {"amount": "0", "precision": 3, "nai": "@@000000013"},
+        "reward_vests": {"amount": "1", "precision": 6, "nai": "@@000000037"},
+    },
+}
+API_OPERATION_JSON: Final[str] = json.dumps(API_OPERATION_DICT)
+
+EXPECTED_IMPACTED_ACCOUNT: Final[str] = "account"
+EXPECTED_AMOUNT_OF_IMPACTED_ACCOUNTS: Final[int] = 1
+
+
+@pytest.mark.parametrize("operation", [PROTO_OPERATION, API_OPERATION_DICT, API_OPERATION_JSON])
+def test_operation_get_impacted_accounts(operation: Operation) -> None:
+    # ARRANGE
+    wax = create_wax_foundation()
+
+    # ACT
+    result = wax.get_operation_impacted_accounts(operation)
+
+    # ASSERT
+    assert len(result) == EXPECTED_AMOUNT_OF_IMPACTED_ACCOUNTS
+    assert result[0] == EXPECTED_IMPACTED_ACCOUNT