-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(adr-035): eots manager signing requests (#184)
extends eots manager to store signing requests [Addreses](https://github.com/babylonlabs-io/pm/blob/main/adr/adr-035-slashing-protection.md#eots-manager-protection)
- Loading branch information
Showing
11 changed files
with
446 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
syntax = "proto3"; | ||
|
||
package proto; | ||
|
||
option go_package = "github.com/babylonlabs-io/finality-provider/eotsmanager/proto"; | ||
|
||
// SigningRecord represents a record of a signing operation. | ||
message SigningRecord { | ||
bytes block_hash = 1; // The hash of the block. | ||
bytes public_key = 2; // The public key used for signing. | ||
bytes signature = 3; // The signature of the block. | ||
int64 timestamp = 4; // The timestamp of the signing operation, in Unix seconds. | ||
} |
Oops, something went wrong.