import { Wallet } from '../interfaces'; export async function showConfirmationDialog(wallet: Wallet, message: string): Promise { return (await wallet.send({ method: 'confirm', params: [message], })) as boolean; }