14.05.2026 rip

This commit is contained in:
2026-05-14 22:51:11 +03:00
parent c05fa1eaa5
commit 7038542f14

View File

@@ -198,6 +198,6 @@ export async function createWallet(): Promise<void> {
} }
export async function revealMnemonic(): Promise<string> { export async function revealMnemonic(): Promise<string> {
const res = await walletPost<{ success: boolean; data: { mnemonic: string } }>('/api/wallets/mnemonic/reveal', {}) const res = await walletPost<{ success: boolean; data: { mnemonic: string } }>('/api/wallets/mnemonic/reveal', { confirm: 'I_UNDERSTAND_SEED_IS_SECRET' })
return res.data.mnemonic return res.data.mnemonic
} }