mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 00:27:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			601 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			601 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package kava.pricefeed.v1beta1;
 | 
						|
 | 
						|
import "gogoproto/gogo.proto";
 | 
						|
import "kava/pricefeed/v1beta1/store.proto";
 | 
						|
 | 
						|
option go_package = "github.com/kava-labs/kava/x/pricefeed/types";
 | 
						|
option (gogoproto.equal_all) = true;
 | 
						|
option (gogoproto.verbose_equal_all) = true;
 | 
						|
 | 
						|
// GenesisState defines the pricefeed module's genesis state.
 | 
						|
message GenesisState {
 | 
						|
  // params defines all the parameters of the module.
 | 
						|
  Params params = 1 [(gogoproto.nullable) = false];
 | 
						|
 | 
						|
  repeated PostedPrice posted_prices = 2 [
 | 
						|
    (gogoproto.castrepeated) = "PostedPrices",
 | 
						|
    (gogoproto.nullable) = false
 | 
						|
  ];
 | 
						|
}
 |