UNPKG

@web3auth/no-modal

Version:
35 lines (32 loc) 914 B
import { ref } from 'vue'; import { useWalletServicesPlugin } from './useWalletServicesPlugin.js'; import { WalletServicesPluginError } from '../../base/plugin/errors.js'; import { log } from '../../base/loglevel.js'; const useFunding = () => { const { plugin, ready } = useWalletServicesPlugin(); const loading = ref(false); const error = ref(null); const showFunding = async showFundingParams => { loading.value = true; error.value = null; try { if (!plugin) throw WalletServicesPluginError.notInitialized(); if (!ready) throw WalletServicesPluginError.walletPluginNotConnected(); await plugin.value.showFunding(showFundingParams); } catch (err) { log.error("Error showing funding", err); error.value = err; } finally { loading.value = false; } }; return { loading, error, showFunding }; }; export { useFunding };