-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathtypes.ts
More file actions
1022 lines (895 loc) · 23.3 KB
/
types.ts
File metadata and controls
1022 lines (895 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import type {
CreateSwapParams,
GetAccountInformationResponse,
} from "@getalby/sdk";
import { PaymentRequestObject } from "bolt11-signet";
import { Runtime } from "webextension-polyfill";
import { ACCOUNT_CURRENCIES, CURRENCIES } from "~/common/constants";
import connectors from "~/extension/background-script/connectors";
import {
ConnectorTransaction,
SendPaymentResponse,
WebLNNode,
} from "~/extension/background-script/connectors/connector.interface";
import { Event } from "./extension/providers/nostr/types";
export type ConnectorType = keyof typeof connectors;
export type BitcoinNetworkType = "bitcoin" | "testnet" | "regtest";
export type LiquidNetworkType = "liquid" | "testnet" | "regtest";
export interface Account {
id: string;
connector: ConnectorType;
config: string;
name: string;
nostrPrivateKey?: string | null;
mnemonic?: string | null;
hasImportedNostrKey?: boolean;
hasSeenInfoBanner?: boolean;
bitcoinNetwork?: BitcoinNetworkType;
isMnemonicBackupDone?: boolean;
useMnemonicForLnurlAuth?: boolean;
avatarUrl?: string;
}
export interface Accounts {
[id: string]: Account;
}
export interface NodeInfo {
node: WebLNNode;
}
export interface AccountInfo {
alias: string;
balance: number;
id: string;
name: string;
connectorType: ConnectorType;
currency: ACCOUNT_CURRENCIES;
avatarUrl?: string;
lightningAddress?: string;
nodeRequired?: boolean;
}
export type GetAccountInformationResponses = GetAccountInformationResponse & {
node_required: boolean;
using_fee_credits: boolean;
node_type?: string;
node_connection_error_count?: number;
shared_node: boolean;
custodial: boolean;
};
export interface MetaData {
title?: string;
description?: string;
icon?: string;
image?: string;
keywords?: string[];
language?: string;
type?: string;
url?: string;
provider?: string;
[x: string]: string | string[] | undefined;
}
export interface OriginData {
location: string;
domain: string;
host: string;
pathname: string;
name: string;
description: string;
icon: string;
metaData: MetaData;
external: boolean;
}
export interface PaymentNotificationData {
accountId: Account["id"];
paymentRequestDetails?: PaymentRequestObject | undefined;
response: SendPaymentResponse | { error: string };
origin?: OriginData;
details: {
destination?: string | undefined;
description?: string | undefined;
};
}
export interface AuthResponseObject {
reason?: string;
status: string;
}
export interface AuthNotificationData {
authResponse: AuthResponseObject;
origin?: OriginData; // only set if triggered via Prompt
lnurlDetails: LNURLAuthServiceResponse;
}
export interface OriginDataInternal {
internal: boolean;
}
export interface Battery extends OriginData {
method: string;
address: string;
customKey?: string;
customValue?: string;
suggested?: string;
name: string;
icon: string;
}
export type BatteryMetaTagRecipient = Pick<
Battery,
"address" | "customKey" | "customValue" | "method"
>;
export type LnurlAuthResponse = {
success: boolean;
status: string;
reason?: string;
authResponseData: unknown;
};
/**
* @deprecated Use MessageDefault instead
*/
export interface Message {
action?: string;
application?: string;
args: Record<string, unknown>;
origin: OriginData | OriginDataInternal;
prompt?: boolean;
}
export interface Sender extends Runtime.MessageSender {
tlsChannelId?: string;
// only Chrome 80+
origin?: string;
// the below are not necessary
documentId?: string;
documentLifecycle?: string;
nativeApplication?: string;
}
// new message type, please use this
export interface MessageDefault {
origin: OriginData | OriginDataInternal;
application?: string;
prompt?: boolean;
}
export interface MessageDefaultPublic extends MessageDefault {
origin: OriginData;
}
export type NavigationState = {
origin?: OriginData; // only defoned if coming via "Prompt", can be empty if a LNURL-action is being used via "Send" within the "PopUp"
args?: {
lnurlDetails: LNURLDetails;
amountEditable?: boolean;
memoEditable?: boolean;
invoiceAttributes?: RequestInvoiceArgs;
paymentRequest?: string;
destination?: string;
amount?: string;
customRecords?: Record<string, string>;
bitcoinAddress?: string;
connector?: string;
name?: string;
config?: unknown;
message?: string;
event?: Event;
sigHash?: string;
// nostr
encrypt: {
recipientNpub: string;
message: string;
};
nip44Encrypt: {
recipientNpub: string;
message: string;
};
psbt?: string;
requestPermission: {
method: string;
description: string;
};
// liquid
pset?: string;
};
isPrompt?: true; // only passed via Prompt.tsx
action: string;
};
export interface MessageGenericRequest extends MessageDefault {
action: "request";
origin: OriginData;
args: {
method: string;
params: Record<string, unknown>;
};
}
export interface MessagePaymentAll extends MessageDefault {
action: "getPayments";
args?: {
limit?: number;
};
}
export interface MessagePaymentListByAccount extends MessageDefault {
action: "getPaymentsByAccount";
args: {
accountId: Account["id"];
limit?: number;
};
}
export interface MessageAccountGet extends MessageDefault {
args?: { id?: Account["id"] };
action: "getAccount";
}
export interface MessageAccountRemove extends MessageDefault {
args?: { id: Account["id"] };
action: "removeAccount";
}
export interface MessageAccountAdd extends MessageDefault {
args: Omit<Account, "id">;
action: "addAccount";
}
export interface MessageAccountEdit extends MessageDefault {
args: {
id: Account["id"];
name?: Account["name"];
bitcoinNetwork?: BitcoinNetworkType;
useMnemonicForLnurlAuth?: boolean;
isMnemonicBackupDone?: boolean;
hasSeenInfoBanner?: boolean;
};
action: "editAccount";
}
export interface MessageAccountDecryptedDetails extends MessageDefault {
args: {
id: Account["id"];
name: Account["name"];
};
action: "accountDecryptedDetails";
}
export interface MessageAccountInfo extends MessageDefault {
action: "accountInfo";
}
export interface MessageAccountAll extends MessageDefault {
action: "getAccounts";
}
export interface MessagePermissionAdd extends MessageDefault {
args: {
host: Permission["host"];
method: Permission["method"];
enabled: Permission["enabled"];
blocked: Permission["blocked"];
};
action: "addPermission";
}
export interface MessagePermissionDelete extends MessageDefault {
args: {
host: Permission["host"];
method: Permission["method"];
accountId: Account["id"];
};
action: "deletePermission";
}
export interface MessagePermissionsList extends MessageDefault {
args: {
id: Allowance["id"];
accountId: Account["id"];
};
action: "listPermissions";
}
export interface MessagePermissionsDelete extends MessageDefault {
args: {
ids: Permission["id"][];
accountId: Account["id"];
};
action: "deletePermissions";
}
export interface MessageBlocklistAdd extends MessageDefault {
args: {
host: string;
name: string;
imageURL: string;
};
action: "addBlocklist";
}
export interface MessageBlocklistDelete extends MessageDefault {
args: {
host: string;
};
action: "deleteBlocklist";
}
export interface MessageBlocklistGet extends MessageDefault {
args: {
host: string;
};
action: "getBlocklist";
}
export interface MessageBlocklistList extends MessageDefault {
action: "listBlocklist";
}
export interface MessageSetIcon extends MessageDefault {
action: "setIcon";
args: {
icon: string;
};
}
export interface MessageAccountLock extends MessageDefault {
action: "lock";
}
export interface MessageAccountUnlock extends MessageDefault {
args: { password: string | number };
action: "unlock";
}
export interface MessageAccountSelect extends MessageDefault {
args: { id: Account["id"] };
action: "selectAccount";
}
export interface MessageAllowanceAdd extends MessageDefault {
args: {
name: Allowance["name"];
host: Allowance["host"];
imageURL: Allowance["imageURL"];
totalBudget: Allowance["totalBudget"];
};
action: "addAllowance";
}
export interface MessageAllowanceList extends MessageDefault {
action: "listAllowances";
}
export interface MessageGetTransactions extends Omit<MessageDefault, "args"> {
args: { limit?: number };
action: "getTransactions";
}
export interface MessageAllowanceEnable extends MessageDefault {
origin: OriginData;
args: {
host: Allowance["host"];
};
action:
| "public/webln/enable"
| "public/nostr/enable"
| "public/liquid/enable"
| "public/alby/enable";
}
export interface MessageAllowanceDelete extends MessageDefault {
args: {
id: Allowance["id"];
};
action: "deleteAllowance";
}
export interface MessageAllowanceUpdate extends MessageDefault {
args: {
enabled?: Allowance["enabled"];
id: Allowance["id"];
lnurlAuth?: Allowance["lnurlAuth"];
totalBudget?: Allowance["totalBudget"];
};
action: "updateAllowance";
}
export interface MessageAllowanceGet extends MessageDefault {
args: { host: Allowance["host"] };
action: "getAllowance";
}
export interface MessageAllowanceGetById extends MessageDefault {
args: { id: Allowance["id"] };
action: "getAllowanceById";
}
export interface MessageWebLnLnurl extends MessageDefault {
args: { lnurlEncoded: string };
public: boolean;
action: "webln/lnurl";
}
export interface MessageGetInfo extends MessageDefault {
action: "getInfo";
}
export interface MessageMakeInvoice extends MessageDefault {
args: { memo?: string; defaultMemo?: string; amount?: string };
action: "makeInvoice";
}
export interface MessageReset extends MessageDefault {
action: "reset";
}
export interface MessageStatus extends MessageDefault {
action: "status";
}
export interface MessageSetPassword extends MessageDefault {
args: { password: string };
action: "setPassword";
}
export interface MessageAccountValidate extends MessageDefault {
args: {
connector: ConnectorType;
config: Record<string, string>;
name: string;
};
action: "validateAccount";
}
export type ValidateAccountResponse = {
valid: boolean;
info: { data: WebLNNode };
oAuthToken?: OAuthToken;
error?: unknown;
};
export interface MessageConnectPeer extends MessageDefault {
args: { pubkey: string; host: string };
action: "connectPeer";
}
export interface MessageLnurlAuth {
args: {
origin?: OriginData; // only set if triggered via Prompt
lnurlDetails: {
tag: "login";
k1: string;
url: string;
domain: string;
};
};
action: "lnurlAuth";
}
export interface MessageSendPayment extends MessageDefault {
args: {
paymentRequest: string;
};
action: "sendPayment";
}
export interface MessageSettingsSet extends MessageDefault {
args: { setting: Partial<SettingsStorage> };
action: "setSetting";
}
export interface MessageCurrencyRateGet extends MessageDefault {
action: "getCurrencyRate";
}
export interface MessageGetLiquidAddress extends MessageDefault {
action: "getLiquidAddress";
}
export interface MessageNostrPublicKeyGetOrPrompt extends MessageDefault {
action: "getPublicKeyOrPrompt";
}
export interface MessageNostrPublicKeyGet extends MessageDefault {
args: {
id: Account["id"];
};
action: "getPublicKey";
}
export interface MessageNostrPrivateKeyGet extends MessageDefault {
args?: {
id?: Account["id"];
};
action: "getPrivateKey";
}
export interface MessageNostrPrivateKeyGenerate extends MessageDefault {
args?: {
id?: Account["id"];
};
action: "generatePrivateKey";
}
export interface MessageNostrPrivateKeySet extends MessageDefault {
args: {
id?: Account["id"];
privateKey: string;
};
action: "setPrivateKey";
}
export interface MessageNostrPrivateKeyRemove extends MessageDefault {
args: {
id?: Account["id"];
};
action: "removePrivateKey";
}
export interface MessageMnemonicSet extends MessageDefault {
args: {
id?: Account["id"];
mnemonic: string;
};
action: "setMnemonic";
}
export interface MessageMnemonicGet extends MessageDefault {
args?: {
id?: Account["id"];
};
action: "getMnemonic";
}
export interface MessageMnemonicGenerate extends MessageDefault {
action: "generateMnemonic";
}
export interface MessageSignEvent extends MessageDefault {
args: {
event: Event;
};
action: "signEvent";
}
export interface MessageSignSchnorr extends MessageDefault {
args: {
sigHash?: string;
message?: string;
};
action: "signSchnorr";
}
export interface MessageEncryptGet extends MessageDefault {
args: {
peer: string;
plaintext: string;
};
action: "encrypt";
}
export interface MessageDecryptGet extends MessageDefault {
args: {
peer: string;
ciphertext: string;
};
action: "decrypt";
}
export interface MessageNip44EncryptGet extends MessageDefault {
args: {
peer: string;
plaintext: string;
};
action: "encrypt";
}
export interface MessageNip44DecryptGet extends MessageDefault {
args: {
peer: string;
ciphertext: string;
};
action: "decrypt";
}
export interface MessageSignPsbt extends MessageDefault {
args: {
psbt: string;
};
action: "signPsbt";
}
export interface MessageGetPsbtPreview extends MessageDefault {
args: {
psbt: string;
};
action: "getPsbtPreview";
}
export interface MessageBalanceGet extends MessageDefault {
action: "getBalance";
}
export interface MessageGetAddress extends MessageDefault {
// eslint-disable-next-line @typescript-eslint/ban-types
args: {};
action: "getAddress";
}
export interface MessageGetSwapInfo extends MessageDefault {
// eslint-disable-next-line @typescript-eslint/ban-types
args: {};
action: "getSwapInfo";
}
export interface MessageCreateSwap extends MessageDefault {
args: CreateSwapParams;
action: "getSwapInfo";
}
// Liquid
export interface MessageSignPsetWithPrompt extends MessageDefault {
args: {
pset: string;
};
action: "signPsetWithPrompt";
}
export interface MessageSignPset extends MessageDefault {
args: {
pset: string;
};
action: "signPset";
}
export interface MessageGetPSetPreview extends MessageDefault {
args: {
pset: string;
};
action: "getPsetPreview";
}
export interface MessageFetchAssetRegistry extends MessageDefault {
args: {
psetPreview: PsetPreview;
};
action: "fetchAssetRegistry";
}
export interface LNURLChannelServiceResponse {
uri: string; // Remote node address of form node_key@ip_address:port_number
callback: string; // a second-level URL which would initiate an OpenChannel message from target LN node
k1: string; // random or non-random string to identify the user's LN WALLET when using the callback URL
tag: "channelRequest"; // type of LNURL
domain: string;
}
export interface LNURLPayServiceResponse {
callback: string; // The URL from LN SERVICE which will accept the pay request parameters
maxSendable: number; // Max amount LN SERVICE is willing to receive
minSendable: number; // Min amount LN SERVICE is willing to receive, can not be less than 1 or more than `maxSendable`
domain: string;
metadata: string; // Metadata json which must be presented as raw string here, this is required to pass signature verification at a later step
tag: "payRequest"; // Type of LNURL
payerData?: {
name: { mandatory: boolean };
pubkey: { mandatory: boolean };
identifier: { mandatory: boolean };
email: { mandatory: boolean };
auth: { mandatory: boolean; k1: string };
};
commentAllowed?: number;
url: string;
}
export interface LNURLAuthServiceResponse {
tag: "login"; // Type of LNURL
k1: string; // (hex encoded 32 bytes of challenge) which is going to be signed by user's linkingPrivKey.
action?: string; // optional action enum which can be one of four strings: register | login | link | auth.
domain: string;
url: string;
}
export interface LNURLWithdrawServiceResponse {
tag: "withdrawRequest"; // type of LNURL
callback: string; // The URL which LN SERVICE would accept a withdrawal Lightning invoice as query parameter
k1: string; // Random or non-random string to identify the user's LN WALLET when using the callback URL
defaultDescription: string; // A default withdrawal invoice description
balanceCheck?: string;
payLink?: string;
minWithdrawable: number; // Min amount (in millisatoshis) the user can withdraw from LN SERVICE, or 0
maxWithdrawable: number; // Max amount (in millisatoshis) the user can withdraw from LN SERVICE, or equal to minWithdrawable if the user has no choice over the amounts
domain: string;
url: string;
}
export interface LNURLChannelServiceResponse {
uri: string; // Remote node address of form node_key@ip_address:port_number
callback: string; // a second-level URL which would initiate an OpenChannel message from target LN node
k1: string; // random or non-random string to identify the user's LN WALLET when using the callback URL
tag: "channelRequest"; // type of LNURL
url: string;
}
export interface LNURLError {
status: "ERROR";
reason: string;
}
export type LNURLDetails =
| LNURLChannelServiceResponse
| LNURLPayServiceResponse
| LNURLAuthServiceResponse
| LNURLWithdrawServiceResponse;
export interface LNURLPaymentSuccessAction {
tag: string;
description?: string;
message?: string;
url?: string;
}
export interface LNURLPaymentInfo {
pr: string;
successAction?: LNURLPaymentSuccessAction;
}
export interface RequestInvoiceArgs {
amount?: string | number;
defaultAmount?: string | number;
minimumAmount?: string | number;
maximumAmount?: string | number;
defaultMemo?: string;
memo?: string;
}
export type Transaction = {
timestamp: number;
amount?: string;
boostagram?: Invoice["boostagram"];
createdAt?: string;
currency?: string;
timeAgo: string;
paymentHash?: string;
description?: string;
host?: string;
id: string;
location?: string;
name?: string;
preimage: string;
title: string | React.ReactNode;
totalAmount: Allowance["payments"][number]["totalAmount"];
displayAmount?: [number, ACCOUNT_CURRENCIES];
totalAmountFiat?: string;
totalFees?: Allowance["payments"][number]["totalFees"];
type?: "sent" | "received";
value?: string;
publisherLink?: string; // either the invoice URL if on PublisherSingleView, or the internal link to Publisher
state?: "settled" | "pending" | "failed";
metadata?: ConnectorTransaction["metadata"];
};
export interface DbPayment {
accountId: string;
allowanceId: string;
createdAt: string;
description: string;
destination: string;
host?: string;
id?: number;
location?: string;
name?: string;
paymentHash: string;
paymentRequest: string;
preimage: string;
totalAmount: number | string;
totalFees: number;
}
export interface Payment extends Omit<DbPayment, "id"> {
id: number;
}
export enum NostrPermissionPreset {
TRUST_FULLY = "trust_fully",
REASONABLE = "reasonable",
PARANOID = "paranoid",
}
export enum PermissionOption {
ASK_EVERYTIME = "ask_everytime",
DONT_ASK_CURRENT = "dont_ask_current",
DONT_ASK_ANY = "dont_ask_any",
}
export enum PermissionMethodBitcoin {
BITCOIN_GETADDRESS = "bitcoin/getAddress",
}
export enum PermissionMethodLiquid {
LIQUID_GETADDRESS = "liquid/getAddress",
}
export enum PermissionMethodNostr {
NOSTR_SIGNMESSAGE = "nostr/signMessage",
NOSTR_SIGNSCHNORR = "nostr/signSchnorr",
NOSTR_GETPUBLICKEY = "nostr/getPublicKey",
NOSTR_DECRYPT = "nostr/decrypt",
NOSTR_ENCRYPT = "nostr/encrypt",
}
export interface DbPermission {
id?: number;
createdAt: string;
accountId: string;
allowanceId: number;
host: string;
method: string | PermissionMethodNostr;
enabled: boolean;
blocked: boolean;
}
export interface Permission extends Omit<DbPermission, "id"> {
id: number;
}
export interface PaymentResponse
extends Pick<Payment, "destination" | "preimage" | "paymentHash"> {
route: {
total_time_lock: number;
total_fees: string;
total_amt: string;
hops: {
chan_id: string;
chan_capacity: string;
amt_to_forward: string;
fee: string;
expiry: number;
amt_to_forward_msat: string;
fee_msat: string;
pub_key: string;
tlv_payload: true;
mpp_record: {
payment_addr: string;
total_amt_msat: string;
};
amp_record: null;
custom_records: unknown;
};
total_fees_msat: string;
total_amt_msat: string;
};
}
export interface DbBlocklist {
id?: number;
host: string;
name: string;
imageURL: string;
isBlocked: boolean;
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface Blocklist extends DbBlocklist {}
export interface DbAllowance {
createdAt: string;
enabledFor?: string[];
enabled: boolean;
host: string;
id?: number;
imageURL: string;
lastPaymentAt: number;
lnurlAuth: boolean;
name: string;
remainingBudget: number;
tag: string;
totalBudget: number;
}
export interface Allowance extends Omit<DbAllowance, "id"> {
id: number;
payments: Payment[];
paymentsAmount: number;
paymentsCount: number;
percentage: number;
usedBudget: number;
}
export interface SettingsStorage {
browserNotifications: boolean;
websiteEnhancements: boolean;
userName: string;
userEmail: string;
locale: string;
theme: string;
showFiat: boolean;
currency: CURRENCIES;
exchange: SupportedExchanges;
nostrEnabled: boolean;
}
export interface Badge {
label: "budget" | "auth" | "imported";
className: string;
}
export interface Publisher
extends Pick<
Allowance,
| "host"
| "imageURL"
| "name"
| "payments"
| "paymentsAmount"
| "paymentsCount"
| "percentage"
| "totalBudget"
| "usedBudget"
> {
id: number;
title?: string;
badges?: Badge[];
}
export type SupportedExchanges = "alby" | "coindesk" | "yadio";
export interface Invoice {
id: string;
memo?: string;
type: "received" | "sent";
settled: boolean;
settleDate: number | null;
creationDate: number;
totalAmount: number;
totalAmountFiat?: string;
displayAmount?: [number, ACCOUNT_CURRENCIES];
preimage: string;
paymentHash?: string;
custom_records?: ConnectorTransaction["custom_records"];
boostagram?: {
app_name: string;
name: string;
podcast: string;
url: string;
episode?: string;
itemID?: string;
ts?: string;
message?: string;
sender_id: string;
sender_name: string;
time: string;
action: "boost";
value_msat_total: number;
};
}
export type BrowserType = "chrome" | "firefox";
export interface DeferredPromise {
promise: Promise<unknown>;
resolve?: () => void;
reject?: () => void;
}
export type Theme = "dark" | "light";
export type OAuthToken = {
access_token: string;
refresh_token: string;
expires_at: number;
};
export type BitcoinAddress = {
publicKey: string;
derivationPath: string;
index: number;
address: string;
};
export type LiquidAddress = {
amount: number;
address: string;
asset: string;
};