mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
15 lines
307 B
Protocol Buffer
15 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package libp2p.peer.pb.record;
|
|
|
|
import "libp2p/peer/pb/crypto.proto";
|
|
|
|
option go_package = "github.com/libp2p/go-libp2p/core/record/pb";
|
|
|
|
message Envelope {
|
|
libp2p.peer.pb.crypto.PublicKey public_key = 1;
|
|
bytes payload_type = 2;
|
|
bytes payload = 3;
|
|
bytes signature = 5;
|
|
}
|