@@ -211,19 +211,19 @@ model Vault {
211
211
createdAt DateTime @default (now () ) @map (" created_at " )
212
212
updatedAt DateTime @default (now () ) @updatedAt @map (" updated_at " )
213
213
214
- walletSendNWC WalletSendNWC ?
215
- walletSendLNbits WalletSendLNbits ?
216
- walletSendPhoenixd WalletSendPhoenixd ?
217
- walletSendBlinkApiKey WalletSendBlink ? @relation (" blinkApiKeySend " )
218
- walletSendBlinkCurrency WalletSendBlink ? @relation (" blinkCurrencySend " )
219
- walletSendLNCPairingPhrase WalletSendLNC ? @relation (" lncPairingPhrase " )
220
- walletSendLNCLocalKey WalletSendLNC ? @relation (" lncLocalKey " )
221
- walletSendLNCRemoteKey WalletSendLNC ? @relation (" lncRemoteKey " )
222
- walletSendLNCServerHost WalletSendLNC ? @relation (" lncServerHost " )
223
- walletSendCLNRestRune WalletSendCLNRest ? @relation (" clnRune " )
224
- walletSendClink WalletSendClink ? @relation (" clinkNdebit " )
225
- walletSendClinkSecretKey WalletSendClink ? @relation (" clinkSecretKey " )
226
- walletSendSparkMnemonic WalletSendSpark ? @relation (" sparkMnemonic " )
214
+ walletSendNWC WalletSendNWC ?
215
+ walletSendLNbits WalletSendLNbits ?
216
+ walletSendPhoenixd WalletSendPhoenixd ?
217
+ walletSendBlinkApiKey WalletSendBlink ? @relation (" blinkApiKeySend " )
218
+ walletSendBlinkCurrency WalletSendBlink ? @relation (" blinkCurrencySend " )
219
+ walletSendLNCPairingPhrase WalletSendLNC ? @relation (" lncPairingPhrase " )
220
+ walletSendLNCLocalKey WalletSendLNC ? @relation (" lncLocalKey " )
221
+ walletSendLNCRemoteKey WalletSendLNC ? @relation (" lncRemoteKey " )
222
+ walletSendLNCServerHost WalletSendLNC ? @relation (" lncServerHost " )
223
+ walletSendCLNRestRune WalletSendCLNRest ? @relation (" clnRune " )
224
+ walletSendClink WalletSendClink ? @relation (" clinkNdebit " )
225
+ walletSendClinkSecretKey WalletSendClink ? @relation (" clinkSecretKey " )
226
+ WalletSendBreezSparkMnemonic WalletSendBreezSpark ? @relation (" breezSparkMnemonic " )
227
227
}
228
228
229
229
model WalletLog {
@@ -1217,7 +1217,7 @@ enum WalletProtocolName {
1217
1217
CLN_REST
1218
1218
LND_GRPC
1219
1219
CLINK
1220
- SPARK
1220
+ BREEZ_SPARK
1221
1221
}
1222
1222
1223
1223
enum WalletSendProtocolName {
@@ -1229,7 +1229,7 @@ enum WalletSendProtocolName {
1229
1229
LNC
1230
1230
CLN_REST
1231
1231
CLINK
1232
- SPARK
1232
+ BREEZ_SPARK
1233
1233
}
1234
1234
1235
1235
enum WalletRecvProtocolName {
@@ -1276,7 +1276,7 @@ enum WalletName {
1276
1276
LN_ADDR
1277
1277
CASH_APP
1278
1278
BLITZ
1279
- SPARK
1279
+ BREEZ
1280
1280
}
1281
1281
1282
1282
model WalletTemplate {
@@ -1327,15 +1327,15 @@ model WalletProtocol {
1327
1327
invoiceForward InvoiceForward []
1328
1328
logs WalletLog []
1329
1329
1330
- walletSendNWC WalletSendNWC ?
1331
- walletSendLNbits WalletSendLNbits ?
1332
- walletSendPhoenixd WalletSendPhoenixd ?
1333
- walletSendBlink WalletSendBlink ?
1334
- walletSendWebLN WalletSendWebLN ?
1335
- walletSendLNC WalletSendLNC ?
1336
- walletSendCLNRest WalletSendCLNRest ?
1337
- walletSendClink WalletSendClink ?
1338
- walletSendSpark WalletSendSpark ?
1330
+ walletSendNWC WalletSendNWC ?
1331
+ walletSendLNbits WalletSendLNbits ?
1332
+ walletSendPhoenixd WalletSendPhoenixd ?
1333
+ walletSendBlink WalletSendBlink ?
1334
+ walletSendWebLN WalletSendWebLN ?
1335
+ walletSendLNC WalletSendLNC ?
1336
+ walletSendCLNRest WalletSendCLNRest ?
1337
+ walletSendClink WalletSendClink ?
1338
+ walletSendBreezSpark WalletSendBreezSpark ?
1339
1339
1340
1340
walletRecvNWC WalletRecvNWC ?
1341
1341
walletRecvLNbits WalletRecvLNbits ?
@@ -1440,14 +1440,15 @@ model WalletSendClink {
1440
1440
secretKeyVaultId Int @unique
1441
1441
secretKey Vault ? @relation (" clinkSecretKey " , fields : [secretKeyVaultId ] , references : [id ] )
1442
1442
}
1443
- model WalletSendSpark {
1443
+
1444
+ model WalletSendBreezSpark {
1444
1445
id Int @id @default (autoincrement () )
1445
1446
createdAt DateTime @default (now () ) @map (" created_at " )
1446
1447
updatedAt DateTime @default (now () ) @updatedAt @map (" updated_at " )
1447
1448
protocolId Int @unique
1448
1449
protocol WalletProtocol @relation (fields : [protocolId ] , references : [id ] , onDelete : Cascade )
1449
1450
mnemonicVaultId Int @unique
1450
- mnemonic Vault ? @relation (" sparkMnemonic " , fields : [mnemonicVaultId ] , references : [id ] )
1451
+ mnemonic Vault ? @relation (" breezSparkMnemonic " , fields : [mnemonicVaultId ] , references : [id ] )
1451
1452
}
1452
1453
1453
1454
model WalletRecvNWC {
0 commit comments