- 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.
10 lines
No EOL
251 B
Vue
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> |