mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 15:37:27 +00:00 
			
		
		
		
	* sync all third party proto definitions * update cosmos swagger for new imported third party protos
		
			
				
	
	
		
			21 lines
		
	
	
		
			402 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			402 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package tendermint.p2p;
 | 
						|
 | 
						|
option go_package = "github.com/tendermint/tendermint/proto/tendermint/p2p";
 | 
						|
 | 
						|
import "tendermint/p2p/types.proto";
 | 
						|
import "gogoproto/gogo.proto";
 | 
						|
 | 
						|
message PexRequest {}
 | 
						|
 | 
						|
message PexAddrs {
 | 
						|
  repeated NetAddress addrs = 1 [(gogoproto.nullable) = false];
 | 
						|
}
 | 
						|
 | 
						|
message Message {
 | 
						|
  oneof sum {
 | 
						|
    PexRequest pex_request = 1;
 | 
						|
    PexAddrs   pex_addrs   = 2;
 | 
						|
  }
 | 
						|
}
 |