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

Add remote signing binary #9293

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
de5b1c1
lnd+lncfg: add outbound remote signer to config
ViktorTigerstrom May 14, 2024
759b817
lncfg: correct `DefaultRemoteSignerRPCTimeout` docs
ViktorTigerstrom May 20, 2024
33b8286
lnd: add new `remotesigner` macaroon entity
ViktorTigerstrom Aug 23, 2024
0ab64ff
walletrpc: add `SignCoordinatorStreams` RPC
ViktorTigerstrom May 14, 2024
7643663
rpcwallet: add `RemoteSigner` interface
ViktorTigerstrom May 14, 2024
80b0ad3
rpcwallet: add InboundRemoteSigner implementation
ViktorTigerstrom May 14, 2024
c375590
rpcwallet: add `RemoteSignerBuilder`
ViktorTigerstrom May 14, 2024
22173bb
rpcwallet: use `RemoteSigner` in RPCKeyRing
ViktorTigerstrom May 14, 2024
27cb7eb
lnd+rpcwallet: use `RemoteSigner` for health check
ViktorTigerstrom May 14, 2024
96569ea
rpcwallet: add `RemoteSignerClient` struct
ViktorTigerstrom May 14, 2024
e469852
f - rpcwallet: use GoroutineManager in remote signer signer client
ViktorTigerstrom Oct 31, 2024
66d22b3
rpcwallet: Add `RemoteSignerClientBuilder`
ViktorTigerstrom Sep 1, 2024
748c28a
lnd: add RemoteSignerClient instance on startup
ViktorTigerstrom May 14, 2024
16fdc25
lncfg: enable signerrole `signer-outbound`
ViktorTigerstrom May 14, 2024
bc1a52b
rpcwallet: add `SignCoordinator` struct
ViktorTigerstrom May 14, 2024
6257910
rpcwallet: add OutboundRemoteSigner implementation
ViktorTigerstrom May 14, 2024
d252d69
lnrpc: add AllowRemoteSigner WalletState proto
ViktorTigerstrom May 14, 2024
300047b
rpcperms: allow some RPCs before rpcActive state
ViktorTigerstrom May 14, 2024
3173439
rpcperms: fix SetServerActive function docs typo
ViktorTigerstrom May 14, 2024
73ee337
multi: enable RpcServer before dependencies exist
ViktorTigerstrom May 14, 2024
71f512c
multi: add `RemoteSigner` to walletrpc config
ViktorTigerstrom May 14, 2024
2213b95
walletrpc: implement `SignCoordinatorStreams` RPC
ViktorTigerstrom May 14, 2024
3f1bd7c
multi: add RemoteSigner before other dependencies
ViktorTigerstrom May 28, 2024
6694892
multi: add `ReadySignal` to `WalletController`
ViktorTigerstrom May 14, 2024
0221e2d
lnd: await remote signer connection on startup
ViktorTigerstrom May 28, 2024
5d51427
multi: enable signerrole `watchonly-outbound`
ViktorTigerstrom May 14, 2024
8d4233c
docs: add outbound signer to remote signing docs
ViktorTigerstrom May 13, 2024
1ce108a
docs: update release notes
ViktorTigerstrom Oct 31, 2024
ebe7025
lntest: separate creation/start of watch-only node
ViktorTigerstrom May 14, 2024
c9fcf12
itest: add outbound remote signer itest
ViktorTigerstrom May 14, 2024
bfdd795
itest: add testOutboundRSMacaroonEnforcement itest
ViktorTigerstrom Aug 28, 2024
5d6e40b
itest: wrap deriveCustomScopeAccounts at 80 chars
ViktorTigerstrom May 17, 2024
fd933d6
lncfg: Add `signer-inbound` `signerrole`
ViktorTigerstrom Nov 21, 2024
a563368
multi: Block non-whitelisted RPCs as remote signer
ViktorTigerstrom Nov 21, 2024
55d16b7
docs: recommend setting signer-inbound signerrole
ViktorTigerstrom Nov 21, 2024
c7784e4
multi: Add `lndsigner` binary
ViktorTigerstrom Nov 21, 2024
570b34f
lnd+lncfg: Add `SignerConfig`
ViktorTigerstrom Nov 21, 2024
2b03e06
lnd: load `SignerConfig` into `lndsigner`
ViktorTigerstrom Nov 21, 2024
76e4caf
f - lnd: Use interface for config loading instead
ViktorTigerstrom Nov 20, 2024
37e2ffc
make+scripts: add `lndsigner` to release script
ViktorTigerstrom Nov 21, 2024
bc0c0dc
docs: add `lndsigner` info to remote signing docs
ViktorTigerstrom Nov 21, 2024
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
Prev Previous commit
Next Next commit
multi: add RemoteSigner before other dependencies
This commit populates the `RemoteSigner` reference in the `WalletKit`
config before other dependencies are added. To ensure that an outbound
remote signer can connect before other dependencies are created, and
since we use this reference in the walletrpc `SignCoordinatorStreams`
RPC, we must populate this dependency prior to other dependencies during
the lnd startup process.
  • Loading branch information
ViktorTigerstrom committed Nov 21, 2024
commit 3f1bd7c06074d9eb97978d3c8221e0a8b8d9924e
Loading