From d83e44cf6b5a432bd281b86133e64b37779886eb Mon Sep 17 00:00:00 2001 From: Justin Schuldt Date: Fri, 9 Sep 2022 12:30:22 -0500 Subject: [PATCH] proto - BatchVAA gossip and publicrpc (#1563) --- node/pkg/publicrpc/publicrpcserver.go | 5 +++++ proto/gossip/v1/gossip.proto | 31 +++++++++++++++++++++++++++ proto/publicrpc/v1/publicrpc.proto | 23 +++++++++++++++++++- 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/node/pkg/publicrpc/publicrpcserver.go b/node/pkg/publicrpc/publicrpcserver.go index bca6fc388..e44876ddb 100644 --- a/node/pkg/publicrpc/publicrpcserver.go +++ b/node/pkg/publicrpc/publicrpcserver.go @@ -98,6 +98,11 @@ func (s *PublicrpcServer) GetSignedVAA(ctx context.Context, req *publicrpcv1.Get }, nil } +func (s *PublicrpcServer) GetSignedBatchVAA(ctx context.Context, req *publicrpcv1.GetSignedBatchVAARequest) (*publicrpcv1.GetSignedBatchVAAResponse, error) { + // TEMP - noop implementaion to satisfy inclusion requirement + return nil, status.Error(codes.Unimplemented, "not yet implemented") +} + func (s *PublicrpcServer) GetCurrentGuardianSet(ctx context.Context, req *publicrpcv1.GetCurrentGuardianSetRequest) (*publicrpcv1.GetCurrentGuardianSetResponse, error) { gs := s.gst.Get() if gs == nil { diff --git a/proto/gossip/v1/gossip.proto b/proto/gossip/v1/gossip.proto index 33a160dfe..6a281198e 100644 --- a/proto/gossip/v1/gossip.proto +++ b/proto/gossip/v1/gossip.proto @@ -10,6 +10,8 @@ message GossipMessage { SignedHeartbeat signed_heartbeat = 3; SignedVAAWithQuorum signed_vaa_with_quorum = 4; SignedObservationRequest signed_observation_request = 5; + SignedBatchObservation signed_batch_observation = 6; + SignedBatchVAAWithQuorum signed_batch_vaa_with_quorum = 7; } } @@ -114,3 +116,32 @@ message ObservationRequest { uint32 chain_id = 1; bytes tx_hash = 2; } + +// A SignedBatchObservation is a signed statement by a given guardian node +// that they observed a series of messages originating from a transaction. +// +// BatcheObervations are emitted when all the Observations from a tx reach quorum. +// +// The event is uniquely identified by its hash (made from hashing all the +// individual Observation hashes). +// +// Messages without valid signature are dropped unceremoniously. +message SignedBatchObservation { + // Guardian pubkey as truncated eth address. + bytes addr = 1; + // The observation batch's deterministic, unique hash. + bytes hash = 2; + // ECSDA signature of the hash using the node's guardian key. + bytes signature = 3; + // Transaction hash this observation was made from. + bytes tx_hash = 4; + // Chain ID for this observation. + uint32 chain_id = 5; + // Batch ID - emitterChain/transactionID + string batch_id = 6; +} + + +message SignedBatchVAAWithQuorum { + bytes batch_vaa = 1; +} diff --git a/proto/publicrpc/v1/publicrpc.proto b/proto/publicrpc/v1/publicrpc.proto index fd4a6ba58..58cde3630 100644 --- a/proto/publicrpc/v1/publicrpc.proto +++ b/proto/publicrpc/v1/publicrpc.proto @@ -50,6 +50,13 @@ message MessageID { uint64 sequence = 3; } +message BatchID { + // Emitter chain ID. + ChainID emitter_chain = 1; + // Hex-encoded (without leading 0x) transaction identifier. + string tx_id = 2; +} + // PublicRPCService service exposes endpoints to be consumed externally; GUIs, historical record keeping, etc. service PublicRPCService { // GetLastHeartbeats returns the last heartbeat received for each guardian node in the @@ -67,6 +74,12 @@ service PublicRPCService { }; } + rpc GetSignedBatchVAA (GetSignedBatchVAARequest) returns (GetSignedBatchVAAResponse) { + option (google.api.http) = { + get: "/v1/signed_batch_vaa/{batch_id.emitter_chain}/{batch_id.tx_id}" + }; + } + rpc GetCurrentGuardianSet (GetCurrentGuardianSetRequest) returns (GetCurrentGuardianSetResponse) { option (google.api.http) = { get: "/v1/guardianset/current" @@ -95,7 +108,7 @@ service PublicRPCService { option (google.api.http) = { get: "/v1/governor/token_list" }; - } + } } @@ -107,6 +120,14 @@ message GetSignedVAAResponse { bytes vaa_bytes = 1; } +message GetSignedBatchVAARequest { + BatchID batch_id = 1; +} + +message GetSignedBatchVAAResponse { + bytes batch_vaa_bytes = 1; +} + message GetLastHeartbeatsRequest { }