reporter: add mTLS support for remote signer connection - #35
Merged
Conversation
krasi-georgiev
approved these changes
Jun 5, 2026
0xSpuddy
reviewed
Jun 9, 2026
added 2 commits
June 13, 2026 20:48
Contributor
|
@krasi-georgiev we just need to resolve merge conflicts on this one. |
…pcClient field + kb log, keep mTLS remote-signer)
0xSpuddy
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Extends the remote signer integration (introduced in #) to support
mutual TLS (mTLS) when dialing the bridge-remote-signer gRPC service.
Changes
New CLI flags (
cmd/main.go)--remote-signer-ca-cert--remote-signer-client-cert--remote-signer-client-keymTLS dial logic (
reporter/client/remote_signer_keyring.go)newKeyringFromRemoteSignernow accepts the three cert paths. When allthree are provided it loads credentials via
bridgetls.NewClientCredentials(TLS 1.3, fromgithub.qkg1.top/tellor-io/bridge-remote-signer/api/tls) and dials withmTLS. When any are empty it falls back to an insecure connection (for
local/test use only).
Wiring (
reporter/client/client.go)Reads the three new viper flags and passes them to
newKeyringFromRemoteSigner.Usage