mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-10-31 21:18:59 +00:00 
			
		
		
		
	 75dec0d79c
			
		
	
	
		75dec0d79c
		
			
		
	
	
	
	
		
			
			* sync all third party proto definitions * update cosmos swagger for new imported third party protos
		
			
				
	
	
		
			31 lines
		
	
	
		
			684 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			684 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| package tendermint.p2p;
 | |
| 
 | |
| option go_package = "github.com/tendermint/tendermint/proto/tendermint/p2p";
 | |
| 
 | |
| import "gogoproto/gogo.proto";
 | |
| import "tendermint/crypto/keys.proto";
 | |
| 
 | |
| message PacketPing {}
 | |
| 
 | |
| message PacketPong {}
 | |
| 
 | |
| message PacketMsg {
 | |
|   int32 channel_id = 1 [(gogoproto.customname) = "ChannelID"];
 | |
|   bool  eof        = 2 [(gogoproto.customname) = "EOF"];
 | |
|   bytes data       = 3;
 | |
| }
 | |
| 
 | |
| message Packet {
 | |
|   oneof sum {
 | |
|     PacketPing packet_ping = 1;
 | |
|     PacketPong packet_pong = 2;
 | |
|     PacketMsg  packet_msg  = 3;
 | |
|   }
 | |
| }
 | |
| 
 | |
| message AuthSigMessage {
 | |
|   tendermint.crypto.PublicKey pub_key = 1 [(gogoproto.nullable) = false];
 | |
|   bytes                       sig     = 2;
 | |
| }
 |