Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ TWITTER_POSTER_API_KEY_SECRET=
TWITTER_POSTER_ACCESS_TOKEN=
TWITTER_POSTER_ACCESS_TOKEN_SECRET=

# Breez SDK
NEXT_PUBLIC_BREEZ_SDK_API_KEY=

########################################
# SNDEV STUFF WE PRESET #
# which you can override in .env.local #
Expand Down
11 changes: 11 additions & 0 deletions api/typeDefs/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ const typeDefs = gql`
noffer: String!
): WalletRecvClink!

upsertWalletSendBreezSpark(
${shared},
mnemonic: VaultEntryInput!
): WalletSendBreezSpark!

# tests
testWalletRecvNWC(
url: String!
Expand Down Expand Up @@ -235,6 +240,7 @@ const typeDefs = gql`
| WalletSendLNC
| WalletSendCLNRest
| WalletSendClink
| WalletSendBreezSpark
| WalletRecvNWC
| WalletRecvLNbits
| WalletRecvPhoenixd
Expand Down Expand Up @@ -309,6 +315,11 @@ const typeDefs = gql`
secretKey: VaultEntry!
}

type WalletSendBreezSpark {
id: ID!
mnemonic: VaultEntry!
}

type WalletRecvNWC {
id: ID!
url: String!
Expand Down
Loading