chore: rename exported file to keystore.json

This commit is contained in:
Danish Arora 2025-07-17 14:00:32 +05:30
parent 30eefaddc5
commit 7622d02fe9
No known key found for this signature in database
GPG Key ID: 1C6EF37CDAE1426E

View File

@ -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);