From 1506078a66954d188476d465e82ae943993f6f23 Mon Sep 17 00:00:00 2001 From: DaevMithran Date: Wed, 11 Dec 2024 23:46:26 +0530 Subject: [PATCH] Move did:cheqd wallet injection to plugins --- acapy_agent/wallet/did_method.py | 8 -------- acapy_agent/wallet/routes.py | 2 -- 2 files changed, 10 deletions(-) diff --git a/acapy_agent/wallet/did_method.py b/acapy_agent/wallet/did_method.py index 1587f012c7..2acf670837 100644 --- a/acapy_agent/wallet/did_method.py +++ b/acapy_agent/wallet/did_method.py @@ -97,13 +97,6 @@ def holder_defined_did(self) -> HolderDefinedDid: holder_defined_did=HolderDefinedDid.NO, ) -CHEQD = DIDMethod( - name="cheqd", - key_types=[ED25519], - rotation=True, - holder_defined_did=HolderDefinedDid.ALLOWED, -) - class DIDMethods: """DID Method class specifying DID methods with supported key types.""" @@ -117,7 +110,6 @@ def __init__(self) -> None: PEER2.method_name: PEER2, PEER4.method_name: PEER4, TDW.method_name: TDW, - CHEQD.method_name: CHEQD, } def registered(self, method: str) -> bool: diff --git a/acapy_agent/wallet/routes.py b/acapy_agent/wallet/routes.py index afe6632902..bf2fe88d17 100644 --- a/acapy_agent/wallet/routes.py +++ b/acapy_agent/wallet/routes.py @@ -78,7 +78,6 @@ DIDMethod, DIDMethods, HolderDefinedDid, - CHEQD, TDW, ) from .did_posture import DIDPosture @@ -326,7 +325,6 @@ class DIDListQueryStringSchema(OpenAPISchema): KEY.method_name, SOV.method_name, TDW.method_name, - CHEQD.method_name, PEER2.method_name, PEER4.method_name, ]