-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathconnector.interface.ts
More file actions
160 lines (139 loc) · 3.32 KB
/
Copy pathconnector.interface.ts
File metadata and controls
160 lines (139 loc) · 3.32 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
import type {
CreateSwapParams,
CreateSwapResponse,
Nip47TransactionMetadata,
SwapInfoResponse,
} from "@getalby/sdk";
import { ACCOUNT_CURRENCIES } from "~/common/constants";
import { OAuthToken } from "~/types";
export interface WebLNNode {
alias: string;
pubkey?: string;
color?: string;
}
interface Route {
total_amt: number;
total_fees: number;
}
export interface ConnectorTransaction {
custom_records?: {
"696969"?: string;
"7629169"?: string;
"5482373484"?: string;
} & Record<string, string>;
id: string;
memo?: string;
preimage: string;
payment_hash?: string;
settled: boolean;
/**
* Settle date in UNIX milliseconds
*/
settleDate: number | null;
creationDate: number;
totalAmount: number;
displayAmount?: [number, ACCOUNT_CURRENCIES];
type: "received" | "sent";
state?: "settled" | "pending" | "failed";
metadata?: Nip47TransactionMetadata;
}
export interface MakeInvoiceArgs {
amount: string | number;
memo: string;
}
export type MakeInvoiceResponse = {
data: {
paymentRequest: string;
rHash: string;
};
};
export type GetInfoResponse<T extends WebLNNode = WebLNNode> = {
data: T;
};
export type GetBalanceResponse = {
data: {
balance: number;
currency?: ACCOUNT_CURRENCIES;
};
};
export type GetTransactionsResponse = {
data: {
transactions: ConnectorTransaction[];
};
};
export type GetPaymentsResponse = {
data: {
payments: ConnectorTransaction[];
};
};
export type SendPaymentResponse = {
data: {
preimage: string;
paymentHash: string;
route: Route;
};
};
export type SendPaymentAsyncResponse = {
data: {};
};
export interface SendPaymentArgs {
paymentRequest: string;
}
export interface KeysendArgs {
pubkey: string;
amount: number;
customRecords: Record<string, string>;
}
export interface CheckPaymentArgs {
paymentHash: string;
}
export type CheckPaymentResponse = {
data: {
paid: boolean;
preimage?: string;
};
};
export interface SignMessageArgs {
message: string;
key_loc: {
key_family: number;
key_index: number;
};
}
export interface SignMessageResponse {
data: {
message: string;
signature: string;
};
}
export interface ConnectPeerResponse {
data: boolean;
}
export interface ConnectPeerArgs {
pubkey: string;
host: string;
}
export default interface Connector {
init(): Promise<void>;
unload(): Promise<void>;
getInfo(): Promise<GetInfoResponse>;
getBalance(): Promise<GetBalanceResponse>;
getTransactions(): Promise<GetTransactionsResponse>;
makeInvoice(args: MakeInvoiceArgs): Promise<MakeInvoiceResponse>;
sendPayment(args: SendPaymentArgs): Promise<SendPaymentResponse>;
keysend(args: KeysendArgs): Promise<SendPaymentResponse>;
checkPayment(args: CheckPaymentArgs): Promise<CheckPaymentResponse>;
signMessage(args: SignMessageArgs): Promise<SignMessageResponse>;
connectPeer(args: ConnectPeerArgs): Promise<ConnectPeerResponse>;
supportedMethods?: string[];
requestMethod?(
method: string,
args: Record<string, unknown>
): Promise<{ data: unknown }>;
getOAuthToken?(): OAuthToken | undefined;
getSwapInfo?(): Promise<SwapInfoResponse>;
createSwap?(params: CreateSwapParams): Promise<CreateSwapResponse>;
}
export function flattenRequestMethods(methods: string[]) {
return methods.map((method) => `request.${method}`);
}