mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-03-22 12:20:07 +08:00
14 lines
235 B
Protocol Buffer
14 lines
235 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package record.pb;
|
|
|
|
import "crypto/pb/crypto.proto";
|
|
|
|
message SignedEnvelope {
|
|
crypto.pb.PublicKey publicKey = 1;
|
|
bytes payloadType = 2;
|
|
bytes payload = 3;
|
|
uint64 seq = 4;
|
|
bytes signature = 5;
|
|
}
|