Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix types for pay commands #185

Merged
merged 2 commits into from
Sep 6, 2024
Merged
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
2 changes: 2 additions & 0 deletions lnd_methods/offchain/pay_via_payment_request.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export type PayViaPaymentRequestResult = {
}[];
/** Payment Hash Hex */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Paid */
mtokens: string;
paths: {
Expand Down
4 changes: 4 additions & 0 deletions lnd_methods/offchain/subscribe_to_pay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ export type SubscribeToPayConfirmedEvent = {
}[];
/** Payment Hash Hex String> */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Paid String> */
mtokens: string;
paths: {
Expand Down Expand Up @@ -193,6 +195,8 @@ export type SubscribeToPayPayingEvent = {
destination: string;
/** Payment Hash Hex String> */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Pending String> */
mtokens: string;
paths: {
Expand Down
Loading