From 7622d02fe935c31bc85f27ab0cb0d37d10a39185 Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Thu, 17 Jul 2025 14:00:32 +0530 Subject: [PATCH] chore: rename exported file to keystore.json --- src/contexts/keystore/KeystoreContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/keystore/KeystoreContext.tsx b/src/contexts/keystore/KeystoreContext.tsx index 418cd61..497fe29 100644 --- a/src/contexts/keystore/KeystoreContext.tsx +++ b/src/contexts/keystore/KeystoreContext.tsx @@ -172,7 +172,7 @@ export function KeystoreProvider({ children }: { children: ReactNode }) { } // If password is verified, export the entire keystore - const filename = 'waku-rln-keystore.json'; + const filename = 'keystore.json'; const blob = new Blob([keystore.toString()], { type: 'application/json' }); const url = URL.createObjectURL(blob);