github.com/Finschia/finschia-sdk@v0.48.1/x/foundation/keys.go (about)

     1  package foundation
     2  
     3  const (
     4  	// ModuleName is the module name constant used in many places
     5  	ModuleName = "foundation"
     6  
     7  	// StoreKey defines the primary module store key
     8  	StoreKey = ModuleName
     9  
    10  	// RouterKey defines the module's message routing key
    11  	RouterKey = ModuleName
    12  
    13  	TreasuryName = "treasury"
    14  )
    15  
    16  // params
    17  const (
    18  	ParamKeyFoundationTax = "FoundationTax"
    19  )