mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 10:37:26 +00:00 
			
		
		
		
	* sync all third party proto definitions * update cosmos swagger for new imported third party protos
		
			
				
	
	
		
			16 lines
		
	
	
		
			491 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			491 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package cosmos.crisis.v1beta1;
 | 
						|
 | 
						|
option go_package = "github.com/cosmos/cosmos-sdk/x/crisis/types";
 | 
						|
 | 
						|
import "gogoproto/gogo.proto";
 | 
						|
import "cosmos/base/v1beta1/coin.proto";
 | 
						|
 | 
						|
// GenesisState defines the crisis module's genesis state.
 | 
						|
message GenesisState {
 | 
						|
  // constant_fee is the fee used to verify the invariant in the crisis
 | 
						|
  // module.
 | 
						|
  cosmos.base.v1beta1.Coin constant_fee = 3
 | 
						|
      [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"constant_fee\""];
 | 
						|
}
 |