Add remote signer keyring to reporter client via --remote-signer-addr flag - #33
Merged
Merged
Conversation
0xSpuddy
self-requested a review
June 3, 2026 12:53
diorwave
force-pushed
the
feat/remote-signer-keyring
branch
from
June 4, 2026 07:07
ad45763 to
3bd876e
Compare
krasi-georgiev
suggested changes
Jun 8, 2026
0xSpuddy
approved these changes
Jun 25, 2026
| cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" | ||
| sdk "github.com/cosmos/cosmos-sdk/types" | ||
| "github.com/cosmos/cosmos-sdk/types/tx/signing" | ||
| signerv1 "github.com/tellor-io/bridge-remote-signer/api/gen/signer/v1" |
Contributor
There was a problem hiding this comment.
please address lint check (golangci-lint run)
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.
Adds support for signing reporter transactions via a remote signer (bridge-remote-signer),
so the reporter node no longer needs a local file keyring or password.
Changes
--remote-signer-addrflag gRPC address of the remote signer (e.g.localhost:9191); when set, the local keyring is bypassed entirelyreporter/client/remote_signer_keyring.goimplementskeyring.Keyringbacked by the remote signer:Sign()hashes the message with sha256 and calls theSignRawRPC;Key()returns the public key fetched viaGetPublicKeyRPCreporter/client/client.goon startup, if--remote-signer-addris set, dials the remote signer and usesGetAddressRPC to discover the account address; otherwise falls back to the existing local keyring path unchangedDependencies
Requires
github.com/tellor-io/bridge-remote-signer/api(the lightweight gRPC-only submodule, no cosmos-sdk dependency). Thereplacedirective ingo.modmust be updated to a released tag once the bridge-remote-signer PR is merged.