update dependencies

This commit is contained in:
Alex Bosworth 2024-12-22 12:10:09 -08:00
parent df785cf22b
commit 6c105bceee
No known key found for this signature in database
GPG key ID: E80D2F3F311FD87E
6 changed files with 1234 additions and 1193 deletions

View file

@ -1,5 +1,9 @@
# Versions
## 19.4.5
- Add support for LND 0.18.4
## 19.4.4
- `fund`: Explicitly disallow funding of txs with fractional fee rates

View file

@ -7,7 +7,7 @@ Commands for working with LND balances.
Supported LND versions:
- v0.18.0-beta to v0.18.3-beta
- v0.18.0-beta to v0.18.4-beta
- v0.17.0-beta to v0.17.5-beta
- v0.16.0-beta to v0.16.4-beta
- v0.15.2-beta to v0.15.5-beta

View file

@ -11,7 +11,7 @@ const {describeRoutingFailure} = require('./../display');
const {now} = Date;
const minutesAsMs = minutes => 1000 * 60 * minutes;
const pathTimeoutMs = 1000 * 60 * 5;
const pathTimeoutMs = 1000 * 60 * 90;
const tokensAsMillitokens = tok => (BigInt(tok) * BigInt(1e3)).toString();
/** Execute a probe

View file

@ -26,7 +26,7 @@ const defaultMaxPaths = 5;
const effectiveFeeRate = (n, m) => Number(BigInt(1e6) * BigInt(n) / BigInt(m));
const flatten = arr => [].concat(...arr);
const {isArray} = Array;
const pathTimeoutMs = 1000 * 60 * 5;
const pathTimeoutMs = 1000 * 60 * 90;
const singlePath = 1;
const uniq = arr => Array.from(new Set(arr));
const unsupported = 501;

2391
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -21,34 +21,34 @@
"asyncjs-util": "1.2.12",
"bech32": "2.0.0",
"bip66": "2.0.0",
"bitcoinjs-lib": "6.1.6",
"bitcoinjs-lib": "6.1.7",
"bolt01": "2.0.0",
"bolt03": "1.3.2",
"bolt07": "1.9.4",
"cbor": "10.0.2",
"cbor": "10.0.3",
"colorette": "2.0.20",
"crypto-js": "4.2.0",
"csv-parse": "5.5.6",
"csv-parse": "5.6.0",
"ecpair": "2.1.0",
"goldengate": "14.0.9",
"grammy": "1.31.0",
"goldengate": "14.0.10",
"grammy": "1.33.0",
"hot-formula-parser": "4.0.0",
"import-lazy": "4.0.0",
"ini": "5.0.0",
"inquirer": "12.0.1",
"ln-accounting": "8.0.5",
"ln-service": "57.22.2",
"inquirer": "12.3.0",
"ln-accounting": "8.0.6",
"ln-service": "57.22.3",
"ln-sync": "6.4.0",
"ln-telegram": "6.1.10",
"minimist": "1.2.8",
"moment": "2.30.1",
"paid-services": "6.2.0",
"probing": "5.0.3",
"paid-services": "6.2.1",
"probing": "5.0.4",
"psbt": "3.0.0",
"qrcode-terminal": "0.12.0",
"sanitize-filename": "1.6.3",
"socks-proxy-agent": "8.0.4",
"table": "6.8.2",
"socks-proxy-agent": "8.0.5",
"table": "6.9.0",
"tabtab": "3.0.2",
"tiny-secp256k1": "2.2.3",
"window-size": "1.1.1"
@ -83,5 +83,5 @@
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
"test": "npx nyc@17.0.0 node --experimental-test-coverage --test 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"
},
"version": "19.4.4"
"version": "19.4.5"
}