mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-03 23:37:27 +00:00 
			
		
		
		
	* sync all third party proto definitions * update cosmos swagger for new imported third party protos
		
			
				
	
	
		
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package cosmos.base.kv.v1beta1;
 | 
						|
 | 
						|
import "gogoproto/gogo.proto";
 | 
						|
 | 
						|
option go_package = "github.com/cosmos/cosmos-sdk/types/kv";
 | 
						|
 | 
						|
// Pairs defines a repeated slice of Pair objects.
 | 
						|
message Pairs {
 | 
						|
  repeated Pair pairs = 1 [(gogoproto.nullable) = false];
 | 
						|
}
 | 
						|
 | 
						|
// Pair defines a key/value bytes tuple.
 | 
						|
message Pair {
 | 
						|
  bytes key   = 1;
 | 
						|
  bytes value = 2;
 | 
						|
}
 |