From f8cc5d22c8251b5026d2d059275335439164cf24 Mon Sep 17 00:00:00 2001 From: Bufo Date: Wed, 20 Nov 2024 12:28:01 +0100 Subject: [PATCH] chore: add field for pay to route --- lnd_methods/offchain/pay_via_routes.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lnd_methods/offchain/pay_via_routes.d.ts b/lnd_methods/offchain/pay_via_routes.d.ts index 1e217d88..5e1889ae 100644 --- a/lnd_methods/offchain/pay_via_routes.d.ts +++ b/lnd_methods/offchain/pay_via_routes.d.ts @@ -46,10 +46,14 @@ export type PayViaRoutesArgs = AuthenticatedLightningArgs<{ }[]; /** Total Millitokens To Pay */ mtokens: string; + /** Payment Identifier Hex */ + payment?: string; /** Expiration Block Height */ timeout: number; /** Total Tokens To Pay */ tokens: number; + /** Total Millitokens */ + total_mtokens?: string; }[]; }>;