balanceofsatoshis 12.4.0 → 12.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Versions
2
2
 
3
+ ## 12.4.1
4
+
5
+ - Add support for LND 0.14.3-beta
6
+ - `telegram`: Disallow non connect user id queries for /mempool and /version
7
+
3
8
  ## 12.4.0
4
9
 
5
10
  - `chart-fees-paid`: Allow using aliases when specifying --in and --out peers
package/README.md CHANGED
@@ -6,7 +6,7 @@ Commands for working with LND balances.
6
6
 
7
7
  Supported LND versions:
8
8
 
9
- - v0.11.0-beta to v0.14.2-beta
9
+ - v0.11.0-beta to v0.14.3-beta
10
10
 
11
11
  ## Install
12
12
 
package/package.json CHANGED
@@ -36,9 +36,9 @@
36
36
  "ini": "3.0.0",
37
37
  "inquirer": "8.2.2",
38
38
  "ln-accounting": "5.0.6",
39
- "ln-service": "53.12.0",
39
+ "ln-service": "53.13.0",
40
40
  "ln-sync": "3.12.0",
41
- "ln-telegram": "3.21.1",
41
+ "ln-telegram": "3.21.2",
42
42
  "moment": "2.29.3",
43
43
  "paid-services": "3.15.1",
44
44
  "probing": "2.0.5",
@@ -55,7 +55,7 @@
55
55
  "devDependencies": {
56
56
  "@alexbosworth/tap": "15.0.11",
57
57
  "invoices": "2.0.6",
58
- "ln-docker-daemons": "2.2.8",
58
+ "ln-docker-daemons": "2.2.9",
59
59
  "mock-lnd": "1.4.1",
60
60
  "tiny-secp256k1": "2.2.1"
61
61
  },
@@ -84,5 +84,5 @@
84
84
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
85
85
  "test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
86
86
  },
87
- "version": "12.4.0"
87
+ "version": "12.4.1"
88
88
  }
@@ -302,6 +302,8 @@ module.exports = (args, cbk) => {
302
302
  args.bot.command('mempool', async ctx => {
303
303
  try {
304
304
  return await handleMempoolCommand({
305
+ from: ctx.message.from.id,
306
+ id: connectedId,
305
307
  reply: n => ctx.reply(n, markdown),
306
308
  request: args.request,
307
309
  });
@@ -409,6 +411,8 @@ module.exports = (args, cbk) => {
409
411
  await handleVersionCommand({
410
412
  named,
411
413
  version,
414
+ from: ctx.message.from.id,
415
+ id: connectedId,
412
416
  request: args.request,
413
417
  reply: n => ctx.reply(n, markdown),
414
418
  });