Compare commits

..

No commits in common. "f0403a2bbe5156d159a20e8c14491b16036fad86" and "051cb69f5eb531742221ab4b49ec860c8d402a57" have entirely different histories.

4 changed files with 3 additions and 18 deletions

5
.gitignore vendored
View File

@ -53,7 +53,4 @@ public/*-development.js
docker-compose.*.yml
*.sql
!/prisma/migrations/*/*.sql
!/docker/db/seed.sql
# nostr wallet connect
scripts/nwc-keys.json
!/docker/db/seed.sql

View File

@ -107,7 +107,7 @@ export default function CLN ({ ssrData }) {
/>
<AutowithdrawSettings />
<WalletButtonBar
status={!!wallet} onDelete={async () => {
enabled={!!wallet} onDelete={async () => {
try {
await removeWallet({ variables: { id: wallet?.id } })
toaster.success('saved settings')

View File

@ -76,7 +76,7 @@ export default function LightningAddress ({ ssrData }) {
/>
<AutowithdrawSettings />
<WalletButtonBar
status={!!wallet} onDelete={async () => {
enabled={!!wallet} onDelete={async () => {
try {
await removeWallet({ variables: { id: wallet?.id } })
toaster.success('saved settings')

View File

@ -1,12 +0,0 @@
#!/usr/bin/env bash
# https://github.com/benthecarman/nostr-wallet-connect-lnd
LND_HOST="${STACKER_LND_HOST:-localhost}"
LND_PORT="${STACKER_LND_GRPC_PORT:-10010}"
RUST_LOG=info nostr-wallet-connect-lnd \
--relay wss://relay.damus.io \
--lnd-host $LND_HOST --lnd-port $LND_PORT \
--macaroon-file docker/lnd/stacker/regtest/admin.macaroon --cert-file docker/lnd/stacker/tls.cert \
--keys-file scripts/nwc-keys.json