webapp/src/modules/wallet/components/WalletTransactions.vue
padreug f75aae6be6 Add wallet module with receive and send functionality
- Introduced a new wallet module that includes components for sending and receiving Bitcoin payments.
- Implemented WalletService to manage payment links and transactions, including methods for creating LNURL pay links and sending payments.
- Added dialogs for receiving and sending payments, enhancing user interaction with the wallet.
- Updated app configuration to enable the wallet module and integrated it into the main application flow.

These changes provide users with a comprehensive wallet experience, allowing for seamless Bitcoin transactions.
2025-09-14 23:08:01 +02:00

10 lines
No EOL
251 B
Vue

<script setup lang="ts">
// This component is exported but not currently used
// It could be used as a standalone transaction list component if needed
</script>
<template>
<div>
<!-- Placeholder component for future use -->
</div>
</template>