2020-12-27 00:10:02 +00:00
|
|
|
## chantools sweeptimelockmanual
|
|
|
|
|
|
|
|
Sweep the force-closed state of a single channel manually if only a channel backup file is available
|
|
|
|
|
2020-12-27 00:40:51 +00:00
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
Sweep the locally force closed state of a single channel
|
|
|
|
manually if only a channel backup file is available. This can only be used if a
|
|
|
|
channel is force closed from the local node but then that node's state is lost
|
|
|
|
and only the channel.backup file is available.
|
|
|
|
|
|
|
|
To get the value for --remoterevbasepoint you must use the dumpbackup command,
|
|
|
|
then look up the value for RemoteChanCfg -> RevocationBasePoint -> PubKey.
|
|
|
|
|
|
|
|
To get the value for --timelockaddr you must look up the channel's funding
|
|
|
|
output on chain, then follow it to the force close output. The time locked
|
|
|
|
address is always the one that's longer (because it's P2WSH and not P2PKH).
|
|
|
|
|
2020-12-27 00:10:02 +00:00
|
|
|
```
|
|
|
|
chantools sweeptimelockmanual [flags]
|
|
|
|
```
|
|
|
|
|
2020-12-27 00:40:51 +00:00
|
|
|
### Examples
|
|
|
|
|
|
|
|
```
|
2021-05-02 15:40:13 +00:00
|
|
|
chantools sweeptimelockmanual \
|
2020-12-27 00:40:51 +00:00
|
|
|
--sweepaddr bc1q..... \
|
|
|
|
--timelockaddr bc1q............ \
|
|
|
|
--remoterevbasepoint 03xxxxxxx \
|
|
|
|
--feerate 10 \
|
|
|
|
--publish
|
|
|
|
```
|
|
|
|
|
2020-12-27 00:10:02 +00:00
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
|
|
|
--apiurl string API URL to use (must be esplora compatible) (default "https://blockstream.info/api")
|
|
|
|
--bip39 read a classic BIP39 seed and passphrase from the terminal instead of asking for lnd seed format or providing the --rootkey flag
|
2021-05-01 20:10:09 +00:00
|
|
|
--feerate uint16 fee rate to use for the sweep transaction in sat/vByte (default 30)
|
2020-12-27 00:10:02 +00:00
|
|
|
--fromchanneldb string channel input is in the format of an lnd channel.db file
|
|
|
|
--fromsummary string channel input is in the format of chantool's channel summary; specify '-' to read from stdin
|
|
|
|
-h, --help help for sweeptimelockmanual
|
|
|
|
--listchannels string channel input is in the format of lncli's listchannels format; specify '-' to read from stdin
|
|
|
|
--maxcsvlimit uint16 maximum CSV limit to use (default 2016)
|
2022-09-11 17:21:18 +00:00
|
|
|
--maxnumchanstotal uint16 maximum number of keys to try, set to maximum number of channels the local node potentially has or had (default 500)
|
|
|
|
--maxnumchanupdates uint maximum number of channel updates to try, set to maximum number of times the channel was used (default 500)
|
2020-12-27 00:10:02 +00:00
|
|
|
--pendingchannels string channel input is in the format of lncli's pendingchannels format; specify '-' to read from stdin
|
|
|
|
--publish publish sweep TX to the chain API instead of just printing the TX
|
|
|
|
--remoterevbasepoint string remote node's revocation base point, can be found in a channel.backup file
|
|
|
|
--rootkey string BIP32 HD root key of the wallet to use for deriving keys; leave empty to prompt for lnd 24 word aezeed
|
|
|
|
--sweepaddr string address to sweep the funds to
|
|
|
|
--timelockaddr string address of the time locked commitment output where the funds are stuck in
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options inherited from parent commands
|
|
|
|
|
|
|
|
```
|
|
|
|
-r, --regtest Indicates if regtest parameters should be used
|
|
|
|
-t, --testnet Indicates if testnet parameters should be used
|
|
|
|
```
|
|
|
|
|
|
|
|
### SEE ALSO
|
|
|
|
|
|
|
|
* [chantools](chantools.md) - Chantools helps recover funds from lightning channels
|
|
|
|
|